@copyright Copyright (C) 2015. All Rights Reserved @license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html A sermon distributor that links to Dropbox. /----------------------------------------------------------------------------------------------------------------------------------*/ // No direct access to this file defined('_JEXEC') or die('Restricted access'); use Joomla\CMS\Factory; use Joomla\CMS\MVC\Controller\BaseController; use Joomla\CMS\Session\Session; use Joomla\Utilities\ArrayHelper; /** * Sermondistributor Ajax Base Controller */ class SermondistributorControllerAjax extends BaseController { public function __construct($config) { parent::__construct($config); // make sure all json stuff are set Factory::getDocument()->setMimeEncoding( 'application/json' ); // get the application $app = Factory::getApplication(); $app->setHeader('Content-Disposition','attachment;filename="getajax.json"'); $app->setHeader('Access-Control-Allow-Origin', '*'); // load the tasks $this->registerTask('isNew', 'ajax'); $this->registerTask('isRead', 'ajax'); $this->registerTask('getBuildTable', 'ajax'); $this->registerTask('getSourceStatus', 'ajax'); $this->registerTask('getCronPath', 'ajax'); $this->registerTask('updateLocalListingExternal', 'ajax'); } public function ajax() { // get the user for later use $user = Factory::getUser(); // get the input values $jinput = Factory::getApplication()->input; // check if we should return raw $returnRaw = $jinput->get('raw', false, 'BOOLEAN'); // return to a callback function $callback = $jinput->get('callback', null, 'CMD'); // Check Token! $token = Session::getFormToken(); $call_token = $jinput->get('token', 0, 'ALNUM'); if($jinput->get($token, 0, 'ALNUM') || $token === $call_token) { // get the task $task = $this->getTask(); switch($task) { case 'isNew': try { $noticeValue = $jinput->get('notice', NULL, 'STRING'); if($noticeValue && $user->id != 0) { $ajaxModule = $this->getModel('ajax'); if ($ajaxModule) { $result = $ajaxModule->isNew($noticeValue); } else { $result = false; } } else { $result = false; } if($callback) { echo $callback . "(".json_encode($result).");"; } elseif($returnRaw) { echo json_encode($result); } else { echo "(".json_encode($result).");"; } } catch(\Exception $e) { if($callback) { echo $callback."(".json_encode($e).");"; } elseif($returnRaw) { echo json_encode($e); } else { echo "(".json_encode($e).");"; } } break; case 'isRead': try { $noticeValue = $jinput->get('notice', NULL, 'STRING'); if($noticeValue && $user->id != 0) { $ajaxModule = $this->getModel('ajax'); if ($ajaxModule) { $result = $ajaxModule->isRead($noticeValue); } else { $result = false; } } else { $result = false; } if($callback) { echo $callback . "(".json_encode($result).");"; } elseif($returnRaw) { echo json_encode($result); } else { echo "(".json_encode($result).");"; } } catch(\Exception $e) { if($callback) { echo $callback."(".json_encode($e).");"; } elseif($returnRaw) { echo json_encode($e); } else { echo "(".json_encode($e).");"; } } break; case 'getBuildTable': try { $idNameValue = $jinput->get('idName', NULL, 'WORD'); $ojectValue = $jinput->get('oject', NULL, 'STRING'); if($idNameValue && $user->id != 0 && $ojectValue) { $ajaxModule = $this->getModel('ajax'); if ($ajaxModule) { $result = $ajaxModule->getBuildTable($idNameValue, $ojectValue); } else { $result = false; } } else { $result = false; } if($callback) { echo $callback . "(".json_encode($result).");"; } elseif($returnRaw) { echo json_encode($result); } else { echo "(".json_encode($result).");"; } } catch(\Exception $e) { if($callback) { echo $callback."(".json_encode($e).");"; } elseif($returnRaw) { echo json_encode($e); } else { echo "(".json_encode($e).");"; } } break; case 'getSourceStatus': try { $idValue = $jinput->get('id', NULL, 'INT'); if($idValue && $user->id != 0) { $ajaxModule = $this->getModel('ajax'); if ($ajaxModule) { $result = $ajaxModule->getSourceStatus($idValue); } else { $result = false; } } else { $result = false; } if($callback) { echo $callback . "(".json_encode($result).");"; } elseif($returnRaw) { echo json_encode($result); } else { echo "(".json_encode($result).");"; } } catch(\Exception $e) { if($callback) { echo $callback."(".json_encode($e).");"; } elseif($returnRaw) { echo json_encode($e); } else { echo "(".json_encode($e).");"; } } break; case 'getCronPath': try { $getTypeValue = $jinput->get('getType', NULL, 'WORD'); if($getTypeValue && $user->id != 0) { $ajaxModule = $this->getModel('ajax'); if ($ajaxModule) { $result = $ajaxModule->getCronPath($getTypeValue); } else { $result = false; } } else { $result = false; } if($callback) { echo $callback . "(".json_encode($result).");"; } elseif($returnRaw) { echo json_encode($result); } else { echo "(".json_encode($result).");"; } } catch(\Exception $e) { if($callback) { echo $callback."(".json_encode($e).");"; } elseif($returnRaw) { echo json_encode($e); } else { echo "(".json_encode($e).");"; } } break; case 'updateLocalListingExternal': try { $idValue = $jinput->get('id', NULL, 'INT'); $targetValue = $jinput->get('target', NULL, 'INT'); $typeValue = $jinput->get('type', NULL, 'INT'); $sleutelValue = $jinput->get('sleutel', NULL, 'CMD'); if($idValue && $user->id != 0 && $targetValue && $typeValue && $sleutelValue) { $ajaxModule = $this->getModel('ajax'); if ($ajaxModule) { $result = $ajaxModule->updateLocalListingExternal($idValue, $targetValue, $typeValue, $sleutelValue); } else { $result = false; } } else { $result = false; } if($callback) { echo $callback . "(".json_encode($result).");"; } elseif($returnRaw) { echo json_encode($result); } else { echo "(".json_encode($result).");"; } } catch(\Exception $e) { if($callback) { echo $callback."(".json_encode($e).");"; } elseif($returnRaw) { echo json_encode($e); } else { echo "(".json_encode($e).");"; } } break; } } else { // return to a callback function if($callback) { echo $callback."(".json_encode(false).");"; } elseif($returnRaw) { echo json_encode(false); } else { echo "(".json_encode(false).");"; } } } }