<?php
/**
* @package DPCalendar
* @copyright Copyright (C) 2014 Digital Peak GmbH. <https://www.digital-peak.com>
* @license https://www.gnu.org/licenses/gpl-3.0.html GNU/GPL
*/
namespace DigitalPeak\Component\DPCalendar\Administrator\Model;
\defined('_JEXEC') or die();
use DigitalPeak\Component\DPCalendar\Administrator\Helper\DPCalendarHelper;
use Joomla\CMS\Application\SiteApplication;
use Joomla\CMS\Component\ComponentHelper;
use Joomla\CMS\Factory;
use Joomla\CMS\MVC\Factory\MVCFactoryInterface;
use Joomla\CMS\MVC\Model\ListModel;
use Joomla\Registry\Registry;
use Joomla\Utilities\ArrayHelper;
class ExtcalendarsModel extends ListModel
{
public function __construct($config = [], ?MVCFactoryInterface $factory = null)
{
if (empty($config['filter_fields'])) {
$config['filter_fields'] = [
'id',
'a.id',
'title',
'a.title',
'alias',
'a.alias',
'state',
'a.state',
'created',
'a.created',
'created_by',
'a.created_by',
'ordering',
'a.ordering',
'language',
'a.language',
'publish_up',
'a.publish_up',
'publish_down',
'a.publish_down'
];
}
parent::__construct($config, $factory);
}
protected function populateState($ordering = null, $direction = null)
{
$app = Factory::getApplication();
// Load the filter state.
$search = $this->getUserStateFromRequest($this->context . '.filter.search', 'filter_search');
$this->setState('filter.search', $search);
$published = $this->getUserStateFromRequest($this->context . '.filter.state', 'filter_state', '', 'string');
$this->setState('filter.state', $published);
$language = $this->getUserStateFromRequest($this->context . '.filter.language', 'filter_language', '');
$this->setState('filter.language', $language);
$plugin = $app->getInput()->get('dpplugin', '');
$this->setState('filter.plugin', $plugin);
$this->setState('params', $app instanceof SiteApplication ? $app->getParams() : ComponentHelper::getParams('com_dpcalendar'));
// List state information.
parent::populateState('a.ordering', 'asc');
}
protected function getStoreId($id = '')
{
// Compile the store id.
$id .= ':' . $this->getState('filter.search');
$id .= ':' . $this->getState('filter.state');
$id .= ':' . $this->getState('filter.language');
return parent::getStoreId($id);
}
protected function _getList($query, $limitstart = 0, $limit = 0)
{
$calendars = parent::_getList($query, $limitstart, $limit);
if (!$calendars) {
return $calendars;
}
/** @var \stdClass $calendar */
foreach ($calendars as $calendar) {
$calendar->params = new Registry($calendar->params);
if ($pw = $calendar->params->get('password')) {
$calendar->params->set('password', DPCalendarHelper::deobfuscate($pw));
}
}
return $calendars;
}
protected function getListQuery()
{
// Create a new query object.
$db = $this->getDatabase();
$query = $db->getQuery(true);
$user = $this->getCurrentUser();
// Select the required fields from the table.
$query->select($this->getState('list.select', 'a.*'));
$query->from('#__dpcalendar_extcalendars AS a');
// Join over the asset groups.
$query->select('ag.title AS access_level');
$query->join('LEFT', '#__viewlevels AS ag ON ag.id = a.access');
// Join over the language
$query->select('l.title AS language_title');
$query->join('LEFT', '#__languages AS l ON l.lang_code = a.language');
// Filter by published state
$published = $this->getState('filter.state');
if (is_numeric($published)) {
$query->where('a.state = ' . (int)$published);
} elseif ($published === '') {
$query->where('(a.state IN (0, 1))');
}
// Filter by search in title
$search = $this->getState('filter.search');
if (!empty($search)) {
if (stripos((string)$search, 'ids:') === 0) {
$ids = explode(',', substr((string)$search, 4));
$ids = ArrayHelper::toInteger($ids);
$query->where('a.id in (' . implode(',', $ids) . ')');
} elseif (stripos((string)$search, 'id:') === 0) {
$query->where('a.id = ' . (int)substr((string)$search, 3));
} else {
$search = $db->quote('%' . $db->escape($search, true) . '%');
$query->where('(a.title LIKE ' . $search . ' OR a.alias LIKE ' . $search . ')');
}
}
if (!$user->authorise('core.admin', 'com_dpcalendar')) {
$query->where('a.access IN (' . implode(',', $user->getAuthorisedViewLevels()) . ')');
}
// Filter on the plugin.
if ($plugin = $this->getState('filter.plugin')) {
$query->where('a.plugin = ' . $db->quote($plugin));
}
// Filter on the language.
if ($language = $this->getState('filter.language')) {
$query->where('a.language = ' . $db->quote($language));
}
// Add the list ordering clause.
$orderCol = $this->state->get('list.ordering');
$orderDirn = $this->state->get('list.direction');
if (!empty($orderCol)) {
$query->order($db->escape($orderCol . ' ' . $orderDirn));
}
// Echo nl2br(str_replace('#__', 'a_', $query));die;
return $query;
}
}