@copyright Copyright (C) 2020 Vast Development Method. All rights reserved. @license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html Portal for mobile health clinics /-----------------------------------------------------------------------------------------------------------------------------*/ // No direct access to this file defined('_JEXEC') or die('Restricted access'); use Joomla\CMS\Factory; use Joomla\CMS\Language\Text; use Joomla\CMS\MVC\Model\ItemModel; use Joomla\CMS\Plugin\PluginHelper; use Joomla\CMS\Router\Route; use Joomla\CMS\Uri\Uri; use Joomla\Utilities\ArrayHelper; use Joomla\CMS\Helper\TagsHelper; /** * Ehealthportal Patient_queue Item Model */ class EhealthportalModelPatient_queue extends ItemModel { /** * Model context string. * * @var string */ protected $_context = 'com_ehealthportal.patient_queue'; /** * Model user data. * * @var strings */ protected $user; protected $userId; protected $guest; protected $groups; protected $levels; protected $app; protected $input; protected $uikitComp; /** * @var object item */ protected $item; /** * Method to auto-populate the model state. * * Note. Calling getState in this method will result in recursion. * * @since 1.6 * * @return void */ protected function populateState() { $this->app = Factory::getApplication(); $this->input = $this->app->input; // Get the item main id $id = $this->input->getInt('id', null); $this->setState('patient_queue.id', $id); // Load the parameters. parent::populateState(); } /** * Method to get article data. * * @param integer $pk The id of the article. * * @return mixed Menu item data object on success, false on failure. */ public function getItem($pk = null) { $this->user = Factory::getUser(); // check if this user has permission to access item if (!$this->user->authorise('patient_queue.access', 'com_ehealthportal')) { $app = Factory::getApplication(); $app->enqueueMessage(Text::_('Not authorised!'), 'error'); // redirect away if not a correct to cPanel/default view $app->redirect('index.php?option=com_ehealthportal'); return false; } $this->userId = $this->user->get('id'); $this->guest = $this->user->get('guest'); $this->groups = $this->user->get('groups'); $this->authorisedGroups = $this->user->getAuthorisedGroups(); $this->levels = $this->user->getAuthorisedViewLevels(); $this->initSet = true; $pk = (!empty($pk)) ? $pk : (int) $this->getState('patient_queue.id'); if ($this->_item === null) { $this->_item = []; } if (!isset($this->_item[$pk])) { try { // Get a db connection. $db = Factory::getDbo(); // Create a new query object. $query = $db->getQuery(true); // Get from #__users as a $query->select($db->quoteName( array('a.id','a.name','a.username','a.email','a.password','a.block','a.sendEmail','a.registerDate','a.lastvisitDate','a.activation','a.params','a.lastResetTime','a.resetCount','a.otpKey','a.otep','a.requireReset'), array('id','name','username','email','password','block','sendEmail','registerDate','lastvisitDate','activation','params','lastResetTime','resetCount','otpKey','otep','requireReset'))); $query->from($db->quoteName('#__users', 'a')); // Reset the query using our newly populated query object. $db->setQuery($query); // Load the results as a stdClass object. $data = $db->loadObject(); if (empty($data)) { $app = Factory::getApplication(); // If no data is found redirect to default page and show warning. $app->enqueueMessage(Text::_('COM_EHEALTHPORTAL_NOT_FOUND_OR_ACCESS_DENIED'), 'warning'); $app->redirect('index.php?option=com_ehealthportal'); return false; } // set data object to item. $this->_item[$pk] = $data; } catch (Exception $e) { if ($e->getCode() == 404) { // Need to go thru the error handler to allow Redirect to work. JError::raiseError(404, $e->getMessage()); } else { $this->setError($e); $this->_item[$pk] = false; } } } return $this->_item[$pk]; } }