From d9947b622a7a26703c3567bd22616dadfd1291a0 Mon Sep 17 00:00:00 2001 From: Naomi Aro Date: Mon, 6 Feb 2012 18:46:53 +0100 Subject: [PATCH 1/7] CC-3174 : showbuilder fixing times in CcPlaylistContents --- airtime_mvc/application/models/Playlist.php | 38 +-- .../models/airtime/CcPlaylistcontents.php | 216 +++++++++++++++++- .../views/scripts/playlist/index.phtml | 4 +- .../views/scripts/playlist/set-fade.phtml | 4 +- airtime_mvc/public/js/airtime/library/spl.js | 2 +- 5 files changed, 239 insertions(+), 25 deletions(-) diff --git a/airtime_mvc/application/models/Playlist.php b/airtime_mvc/application/models/Playlist.php index a56bca59e..6ff7c4e37 100644 --- a/airtime_mvc/application/models/Playlist.php +++ b/airtime_mvc/application/models/Playlist.php @@ -32,8 +32,8 @@ class Application_Model_Playlist { "cliplength" => "", "cuein" => "00:00:00", "cueout" => "00:00:00", - "fadein" => "00:00:00", - "fadeout" => "00:00:00", + "fadein" => "0.0", + "fadeout" => "0.0", ); //using propel's phpNames. @@ -50,7 +50,7 @@ class Application_Model_Playlist { if (isset($id)) { $this->pl = CcPlaylistQuery::create()->findPK($id); - if (is_null($this->pl)){ + if (is_null($this->pl)) { throw new PlaylistNotFoundException(); } } @@ -63,9 +63,9 @@ class Application_Model_Playlist { $defaultFade = Application_Model_Preference::GetDefaultFade(); if ($defaultFade !== "") { //fade is in format SS.uuuuuu - $fade = DateTime::createFromFormat("s.u", $defaultFade, new DateTimeZone("UTC")); - $this->plItem["fadein"] = $fade->format("H:i:s.u"); - $this->plItem["fadeout"] = $fade->format("H:i:s.u"); + + $this->plItem["fadein"] = $defaultFade; + $this->plItem["fadeout"] = $defaultFade; } $this->con = isset($con) ? $con : Propel::getConnection(CcPlaylistPeer::DATABASE_NAME); @@ -145,15 +145,14 @@ class Application_Model_Playlist { $files[$i] = $row->toArray(BasePeer::TYPE_FIELDNAME, true, true); // display only upto 1 decimal place by calling secondsToPlaylistTime $clipSec = Application_Model_Playlist::playlistTimeToSeconds($files[$i]['cliplength']); - $files[$i]['cliplength'] = Application_Model_Playlist::secondsToPlaylistTime($clipSec); + //$files[$i]['cliplength'] = Application_Model_Playlist::secondsToPlaylistTime($clipSec); $offset += $clipSec; $files[$i]['offset'] = Application_Model_Playlist::secondsToPlaylistTime($offset); - #For issue CC-2065 - update fade in and out values between playlst elements - #modified from the db default format of 00:00:00 to the more practical - #00.000000 format which is for only seconds. - $files[$i]['fadein'] = $this->normalizeFade($files[$i]['fadein']); - $files[$i]['fadeout'] = $this->normalizeFade($files[$i]['fadeout']); + //Propel has been modified to only return SS.uuuuuu, might want this normalize + //feature to instead strip useless zeroes. + //$files[$i]['fadein'] = $this->normalizeFade($files[$i]['fadein']); + //$files[$i]['fadeout'] = $this->normalizeFade($files[$i]['fadeout']); $i++; } @@ -429,11 +428,9 @@ class Application_Model_Playlist { ->filterByDbPosition($pos) ->findOne(); - #For issue CC-2065, fade in and out values are for the Playlist itself and must be - #modified from the db default format of 00:00:00 to the more practical - #00.000000 format which is for only seconds. - $fadeIn = $this->normalizeFade($row->getDbFadein()); - $fadeOut = $this->normalizeFade($row->getDbFadeout()); + #Propel returns values in form 00.000000 format which is for only seconds. + $fadeIn = $row->getDbFadein(); + $fadeOut = $row->getDbFadeout(); return array($fadeIn, $fadeOut); } @@ -489,7 +486,12 @@ class Application_Model_Playlist { $row->setDbFadeout($fadeOut); } - $row->save(); + try { + $row->save(); + } + catch (Exception $e) { + Logging::log($e->getMessage()); + } return array("fadeIn"=>$fadeIn, "fadeOut"=>$fadeOut); } diff --git a/airtime_mvc/application/models/airtime/CcPlaylistcontents.php b/airtime_mvc/application/models/airtime/CcPlaylistcontents.php index d71f66595..dc0f21c20 100644 --- a/airtime_mvc/application/models/airtime/CcPlaylistcontents.php +++ b/airtime_mvc/application/models/airtime/CcPlaylistcontents.php @@ -1,7 +1,5 @@ fadein === null) { + return null; + } + + try { + $dt = new DateTime($this->fadein); + } catch (Exception $x) { + throw new PropelException("Internally stored date/time/timestamp value could not be converted to DateTime: " . var_export($this->fadein, true), $x); + } + + return $dt->format("s.u"); + } + + /** + * Get the [optionally formatted] temporal [fadein] column value. + * + * @return mixed Formatted date/time value as string or DateTime object (if format is NULL), NULL if column is NULL + * @throws PropelException - if unable to parse/validate the date/time value. + */ + public function getDbFadeout() + { + if ($this->fadeout === null) { + return null; + } + + try { + $dt = new DateTime($this->fadeout); + } catch (Exception $x) { + throw new PropelException("Internally stored date/time/timestamp value could not be converted to DateTime: " . var_export($this->fadein, true), $x); + } + + return $dt->format("s.u"); + } + + /** + * Just changing the default format to return subseconds + * + * @return mixed Formatted date/time value as string or DateTime object (if format is NULL), NULL if column is NULL + * @throws PropelException - if unable to parse/validate the date/time value. + */ + public function getDbCuein($format = 'H:i:s.u') + { + return parent::getDbCuein($format); + } + + /** + * Just changing the default format to return subseconds + * + * @return mixed Formatted date/time value as string or DateTime object (if format is NULL), NULL if column is NULL + * @throws PropelException - if unable to parse/validate the date/time value. + */ + public function getDbCueout($format = 'H:i:s.u') + { + return parent::getDbCueout($format); + } + + /** + * Just changing the default format to return subseconds + * + * @return mixed Formatted date/time value as string or DateTime object (if format is NULL), NULL if column is NULL + * @throws PropelException - if unable to parse/validate the date/time value. + */ + public function getDbCliplength($format = 'H:i:s.u') + { + return parent::getDbCliplength($format); + } + + /** + * + * @param String in format SS.uuuuuu, Datetime, or DateTime accepted string. + * + * @return CcPlaylistcontents The current object (for fluent API support) + */ + public function setDbFadein($v) + { + if ($v instanceof DateTime) { + $dt = $v; + } + else if (preg_match('/^[0-5][0-9](\.\d{1,6})?$/', $v)) { + $dt = DateTime::createFromFormat("s.u", $v); + } + else { + try { + $dt = new DateTime($v); + } catch (Exception $x) { + throw new PropelException('Error parsing date/time value: ' . var_export($v, true), $x); + } + } + + $this->fadein = ($dt ? $dt->format('H:i:s.u') : null); + $this->modifiedColumns[] = CcPlaylistcontentsPeer::FADEIN; + + return $this; + } // setDbFadein() + + /** + * + * @param String in format SS.uuuuuu, Datetime, or DateTime accepted string. + * + * @return CcPlaylistcontents The current object (for fluent API support) + */ + public function setDbFadeout($v) + { + if ($v instanceof DateTime) { + $dt = $v; + } + else if (preg_match('/^[0-5][0-9](\.\d{1,6})?$/', $v)) { + $dt = DateTime::createFromFormat("s.u", $v); + } + else { + try { + $dt = new DateTime($v); + } catch (Exception $x) { + throw new PropelException('Error parsing date/time value: ' . var_export($v, true), $x); + } + } + + $this->fadeout = ($dt ? $dt->format('H:i:s.u') : null); + $this->modifiedColumns[] = CcPlaylistcontentsPeer::FADEOUT; + + return $this; + } // setDbFadeout() + + /** + * Sets the value of [cuein] column to a normalized version of the date/time value specified. + * + * @param mixed $v string, integer (timestamp), or DateTime value. Empty string will + * be treated as NULL for temporal objects. + * @return CcPlaylistcontents The current object (for fluent API support) + */ + public function setDbCuein($v) + { + if ($v instanceof DateTime) { + $dt = $v; + } + else { + try { + $dt = new DateTime($v); + } + catch (Exception $x) { + throw new PropelException('Error parsing date/time value: ' . var_export($v, true), $x); + } + } + + $this->cuein = $dt->format('H:i:s.u'); + $this->modifiedColumns[] = CcPlaylistcontentsPeer::CUEIN; + + return $this; + } // setDbCuein() + + /** + * Sets the value of [cueout] column to a normalized version of the date/time value specified. + * + * @param mixed $v string, integer (timestamp), or DateTime value. Empty string will + * be treated as NULL for temporal objects. + * @return CcPlaylistcontents The current object (for fluent API support) + */ + public function setDbCueout($v) + { + if ($v instanceof DateTime) { + $dt = $v; + } + else { + try { + $dt = new DateTime($v); + } + catch (Exception $x) { + throw new PropelException('Error parsing date/time value: ' . var_export($v, true), $x); + } + } + + $this->cueout = $dt->format('H:i:s.u'); + $this->modifiedColumns[] = CcPlaylistcontentsPeer::CUEOUT; + + return $this; + } // setDbCueout() + + /** + * Sets the value of [cliplength] column to a normalized version of the date/time value specified. + * + * @param mixed $v string, integer (timestamp), or DateTime value. Empty string will + * be treated as NULL for temporal objects. + * @return CcPlaylistcontents The current object (for fluent API support) + */ + public function setDbCliplength($v) + { + if ($v instanceof DateTime) { + $dt = $v; + } + else { + + try { + + $dt = new DateTime($v); + + } catch (Exception $x) { + throw new PropelException('Error parsing date/time value: ' . var_export($v, true), $x); + } + } + + $this->cliplength = $dt->format('H:i:s.u'); + $this->modifiedColumns[] = CcPlaylistcontentsPeer::CLIPLENGTH; + + return $this; + } // setDbCliplength() + } // CcPlaylistcontents diff --git a/airtime_mvc/application/views/scripts/playlist/index.phtml b/airtime_mvc/application/views/scripts/playlist/index.phtml index e1c14e724..75d1678d1 100644 --- a/airtime_mvc/application/views/scripts/playlist/index.phtml +++ b/airtime_mvc/application/views/scripts/playlist/index.phtml @@ -35,10 +35,10 @@