From 54bb414500c82f28a14a5208873bfb6f208688d0 Mon Sep 17 00:00:00 2001 From: Martin Konecny Date: Mon, 17 Sep 2012 14:32:33 -0400 Subject: [PATCH] CC-4318: Widgets: Weekly show cannot show the schedule -fixed --- .../application/controllers/ApiController.php | 15 +++++++++----- airtime_mvc/application/models/Show.php | 20 ++++++++++++++----- 2 files changed, 25 insertions(+), 10 deletions(-) diff --git a/airtime_mvc/application/controllers/ApiController.php b/airtime_mvc/application/controllers/ApiController.php index 033369802..d95481823 100644 --- a/airtime_mvc/application/controllers/ApiController.php +++ b/airtime_mvc/application/controllers/ApiController.php @@ -5,7 +5,12 @@ class ApiController extends Zend_Controller_Action public function init() { - $this->checkAuth(); + $ignoreAuth = array("live-info", "week-info"); + + $params = $this->getRequest()->getParams(); + if (!in_array($params['action'], $ignoreAuth)) { + $this->checkAuth(); + } /* Initialize action controller here */ $context = $this->_helper->getHelper('contextSwitch'); $context->addActionContext('version' , 'json') @@ -41,7 +46,6 @@ class ApiController extends Zend_Controller_Action public function checkAuth() { global $CC_CONFIG; - $api_key = $this->_getParam('api_key'); if (!in_array($api_key, $CC_CONFIG["apiKey"]) && @@ -298,7 +302,7 @@ class ApiController extends Zend_Controller_Action $result = array(); for ($i=0; $i<7; $i++) { $utcDayEnd = Application_Common_DateHelper::GetDayEndTimestamp($utcDayStart); - $shows = Application_Model_Show::getNextShows($utcDayStart, "0", $utcDayEnd); + $shows = Application_Model_Show::getNextShows($utcDayStart, "ALL", $utcDayEnd); $utcDayStart = $utcDayEnd; Application_Model_Show::convertToLocalTimeZone($shows, @@ -307,9 +311,10 @@ class ApiController extends Zend_Controller_Action $result[$dow[$i]] = $shows; } - $result['AIRTIME_API_VERSION'] = AIRTIME_API_VERSION; //used by caller to determine if the airtime they are running or widgets in use is out of date. + + //used by caller to determine if the airtime they are running or widgets in use is out of date. + $result['AIRTIME_API_VERSION'] = AIRTIME_API_VERSION; header("Content-type: text/javascript"); - Logging::info($result); // If a callback is not given, then just provide the raw JSON. echo isset($_GET['callback']) ? $_GET['callback'].'('.json_encode($result).')' : json_encode($result); } else { diff --git a/airtime_mvc/application/models/Show.php b/airtime_mvc/application/models/Show.php index 7f905b687..9a0eaa452 100644 --- a/airtime_mvc/application/models/Show.php +++ b/airtime_mvc/application/models/Show.php @@ -2060,8 +2060,6 @@ SQL; // been specified if ($timeEnd == "") { $timeEnd = "'$timeStart' + INTERVAL '2 days'"; - } else { - $timeEnd = "'$timeEnd'"; } //TODO, returning starts + ends twice (once with an alias). Unify this after the 2.0 release. --Martin @@ -2083,12 +2081,24 @@ WHERE si.show_id = s.id AND si.starts < :timeEnd::timestamp AND modified_instance != TRUE ORDER BY si.starts -LIMIT :lim SQL; - return Application_Common_Database::prepareAndExecute( $sql, array( + + //PDO won't accept "ALL" as a limit value (complains it is not an + //integer, and so we must completely remove the limit clause if we + //want to show all results - MK + if ($limit != "ALL") { + $sql .= PHP_EOL."LIMIT :lim"; + $params = array( ':timeStart' => $timeStart, ':timeEnd' => $timeEnd, - ':lim' => $limit), 'all'); + ':lim' => $limit); + } else { + $params = array( + ':timeStart' => $timeStart, + ':timeEnd' => $timeEnd); + } + + return Application_Common_Database::prepareAndExecute( $sql, $params, 'all'); } /**