@copyright Copyright (C) 2021. All Rights Reserved. @license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html ____ _____ _____ __ __ __ __ ___ _____ __ __ ____ _____ _ _ ____ _ _ ____ (_ _)( _ )( _ )( \/ )( ) /__\ / __)( _ )( \/ )( _ \( _ )( \( )( ___)( \( )(_ _) .-_)( )(_)( )(_)( ) ( )(__ /(__)\ ( (__ )(_)( ) ( )___/ )(_)( ) ( )__) ) ( )( \____) (_____)(_____)(_/\/\_)(____)(__)(__) \___)(_____)(_/\/\_)(__) (_____)(_)\_)(____)(_)\_) (__) /------------------------------------------------------------------------------------------------------*/ // No direct access to this file defined('_JEXEC') or die('Restricted access'); use Joomla\CMS\MVC\Model\ListModel; use Joomla\Utilities\ArrayHelper; /** * Extensions List Model */ class ExtensiondistributorModelExtensions extends ListModel { public function __construct($config = array()) { if (empty($config['filter_fields'])) { $config['filter_fields'] = array( 'a.id','id', 'a.published','published', 'a.ordering','ordering', 'a.created_by','created_by', 'a.modified_by','modified_by', 'a.type','type', 'a.group','group', 'a.client','client', 'a.name','name', 'a.version_number','version_number', 'a.release_date','release_date' ); } parent::__construct($config); } /** * Method to auto-populate the model state. * * Note. Calling getState in this method will result in recursion. * * @param string $ordering An optional ordering field. * @param string $direction An optional direction (asc|desc). * * @return void * */ protected function populateState($ordering = null, $direction = null) { $app = JFactory::getApplication(); // Adjust the context to support modal layouts. if ($layout = $app->input->get('layout')) { $this->context .= '.' . $layout; } // Check if the form was submitted $formSubmited = $app->input->post->get('form_submited'); $access = $this->getUserStateFromRequest($this->context . '.filter.access', 'filter_access', 0, 'int'); if ($formSubmited) { $access = $app->input->post->get('access'); $this->setState('filter.access', $access); } $published = $this->getUserStateFromRequest($this->context . '.filter.published', 'filter_published', ''); $this->setState('filter.published', $published); $created_by = $this->getUserStateFromRequest($this->context . '.filter.created_by', 'filter_created_by', ''); $this->setState('filter.created_by', $created_by); $created = $this->getUserStateFromRequest($this->context . '.filter.created', 'filter_created'); $this->setState('filter.created', $created); $sorting = $this->getUserStateFromRequest($this->context . '.filter.sorting', 'filter_sorting', 0, 'int'); $this->setState('filter.sorting', $sorting); $search = $this->getUserStateFromRequest($this->context . '.filter.search', 'filter_search'); $this->setState('filter.search', $search); $type = $this->getUserStateFromRequest($this->context . '.filter.type', 'filter_type'); if ($formSubmited) { $type = $app->input->post->get('type'); $this->setState('filter.type', $type); } $group = $this->getUserStateFromRequest($this->context . '.filter.group', 'filter_group'); if ($formSubmited) { $group = $app->input->post->get('group'); $this->setState('filter.group', $group); } $client = $this->getUserStateFromRequest($this->context . '.filter.client', 'filter_client'); if ($formSubmited) { $client = $app->input->post->get('client'); $this->setState('filter.client', $client); } $name = $this->getUserStateFromRequest($this->context . '.filter.name', 'filter_name'); if ($formSubmited) { $name = $app->input->post->get('name'); $this->setState('filter.name', $name); } $version_number = $this->getUserStateFromRequest($this->context . '.filter.version_number', 'filter_version_number'); if ($formSubmited) { $version_number = $app->input->post->get('version_number'); $this->setState('filter.version_number', $version_number); } $release_date = $this->getUserStateFromRequest($this->context . '.filter.release_date', 'filter_release_date'); if ($formSubmited) { $release_date = $app->input->post->get('release_date'); $this->setState('filter.release_date', $release_date); } // List state information. parent::populateState($ordering, $direction); } /** * Method to get an array of data items. * * @return mixed An array of data items on success, false on failure. */ public function getItems() { // Check in items $this->checkInNow(); // load parent items $items = parent::getItems(); // Set values to display correctly. if (ExtensiondistributorHelper::checkArray($items)) { // Get the user object if not set. if (!isset($user) || !ExtensiondistributorHelper::checkObject($user)) { $user = JFactory::getUser(); } foreach ($items as $nr => &$item) { // Add the tags $item->tags = new JHelperTags; $item->tags->getTagIds( $item->id, 'com_extensiondistributor.extension' ); if ($item->tags->tags) { $item->tags = implode(', ', $item->tags->getTagNames( explode(',', $item->tags->tags) ) ); } else { $item->tags = ''; } } } // set selection value to a translatable value if (ExtensiondistributorHelper::checkArray($items)) { foreach ($items as $nr => &$item) { // convert type $item->type = $this->selectionTranslation($item->type, 'type'); // convert client $item->client = $this->selectionTranslation($item->client, 'client'); } } // return items return $items; } /** * Method to convert selection values to translatable string. * * @return translatable string */ public function selectionTranslation($value,$name) { // Array of type language strings if ($name === 'type') { $typeArray = array( 0 => 'COM_EXTENSIONDISTRIBUTOR_EXTENSION_PLEASE_SELECT', 'component' => 'COM_EXTENSIONDISTRIBUTOR_EXTENSION_COMPONENT', 'module' => 'COM_EXTENSIONDISTRIBUTOR_EXTENSION_MODULE', 'plugin' => 'COM_EXTENSIONDISTRIBUTOR_EXTENSION_PLUGIN', 'library' => 'COM_EXTENSIONDISTRIBUTOR_EXTENSION_LIBRARY', 'template' => 'COM_EXTENSIONDISTRIBUTOR_EXTENSION_TEMPLATE', 'language' => 'COM_EXTENSIONDISTRIBUTOR_EXTENSION_LANGUAGE', 'file' => 'COM_EXTENSIONDISTRIBUTOR_EXTENSION_FILE' ); // Now check if value is found in this array if (isset($typeArray[$value]) && ExtensiondistributorHelper::checkString($typeArray[$value])) { return $typeArray[$value]; } } // Array of client language strings if ($name === 'client') { $clientArray = array( 0 => 'COM_EXTENSIONDISTRIBUTOR_EXTENSION_PLEASE_SELECT', 'site' => 'COM_EXTENSIONDISTRIBUTOR_EXTENSION_SITE', 'administrator' => 'COM_EXTENSIONDISTRIBUTOR_EXTENSION_ADMINISTRATOR' ); // Now check if value is found in this array if (isset($clientArray[$value]) && ExtensiondistributorHelper::checkString($clientArray[$value])) { return $clientArray[$value]; } } return $value; } /** * Method to build an SQL query to load the list data. * * @return string An SQL query */ protected function getListQuery() { // Get the user object. $user = JFactory::getUser(); // Create a new query object. $db = JFactory::getDBO(); $query = $db->getQuery(true); // Select some fields $query->select('a.*'); $query->select($db->quoteName('c.title','category_title')); // From the extensiondistributor_item table $query->from($db->quoteName('#__extensiondistributor_extension', 'a')); $query->join('LEFT', $db->quoteName('#__categories', 'c') . ' ON (' . $db->quoteName('a.catid') . ' = ' . $db->quoteName('c.id') . ')'); // Filter by published state $published = $this->getState('filter.published'); if (is_numeric($published)) { $query->where('a.published = ' . (int) $published); } elseif ($published === '') { $query->where('(a.published = 0 OR a.published = 1)'); } // Filter by search. $search = $this->getState('filter.search'); if (!empty($search)) { if (stripos($search, 'id:') === 0) { $query->where('a.id = ' . (int) substr($search, 3)); } else { $search = $db->quote('%' . $db->escape($search) . '%'); $query->where('(a.name LIKE '.$search.' OR a.group LIKE '.$search.' OR a.client LIKE '.$search.' OR a.alias LIKE '.$search.' OR a.catid LIKE '.$search.' OR a.description LIKE '.$search.')'); } } // Filter by Type. $_type = $this->getState('filter.type'); if (is_numeric($_type)) { if (is_float($_type)) { $query->where('a.type = ' . (float) $_type); } else { $query->where('a.type = ' . (int) $_type); } } elseif (ExtensiondistributorHelper::checkString($_type)) { $query->where('a.type = ' . $db->quote($db->escape($_type))); } elseif (ExtensiondistributorHelper::checkArray($_type)) { // Secure the array for the query $_type = array_map( function ($val) use(&$db) { if (is_numeric($val)) { if (is_float($val)) { return (float) $val; } else { return (int) $val; } } elseif (ExtensiondistributorHelper::checkString($val)) { return $db->quote($db->escape($val)); } }, $_type); // Filter by the Type Array. $query->where('a.type IN (' . implode(',', $_type) . ')'); } // Filter by Group. $_group = $this->getState('filter.group'); if (is_numeric($_group)) { if (is_float($_group)) { $query->where('a.group = ' . (float) $_group); } else { $query->where('a.group = ' . (int) $_group); } } elseif (ExtensiondistributorHelper::checkString($_group)) { $query->where('a.group = ' . $db->quote($db->escape($_group))); } // Filter by Client. $_client = $this->getState('filter.client'); if (is_numeric($_client)) { if (is_float($_client)) { $query->where('a.client = ' . (float) $_client); } else { $query->where('a.client = ' . (int) $_client); } } elseif (ExtensiondistributorHelper::checkString($_client)) { $query->where('a.client = ' . $db->quote($db->escape($_client))); } // Filter by a single or group of categories. $baselevel = 1; $categoryId = $this->getState('filter.category_id'); if (is_numeric($categoryId)) { $cat_tbl = JTable::getInstance('Category', 'JTable'); $cat_tbl->load($categoryId); $rgt = $cat_tbl->rgt; $lft = $cat_tbl->lft; $baselevel = (int) $cat_tbl->level; $query->where('c.lft >= ' . (int) $lft) ->where('c.rgt <= ' . (int) $rgt); } elseif (is_array($categoryId)) { $categoryId = ArrayHelper::toInteger($categoryId); $categoryId = implode(',', $categoryId); $query->where('a.catid IN (' . $categoryId . ')'); } // Add the list ordering clause. $orderCol = $this->state->get('list.ordering', 'a.id'); $orderDirn = $this->state->get('list.direction', 'desc'); if ($orderCol != '') { $query->order($db->escape($orderCol . ' ' . $orderDirn)); } return $query; } /** * Method to get a store id based on model configuration state. * * @return string A store id. * */ protected function getStoreId($id = '') { // Compile the store id. $id .= ':' . $this->getState('filter.id'); $id .= ':' . $this->getState('filter.search'); $id .= ':' . $this->getState('filter.published'); $id .= ':' . $this->getState('filter.ordering'); $id .= ':' . $this->getState('filter.created_by'); $id .= ':' . $this->getState('filter.modified_by'); // Check if the value is an array $_type = $this->getState('filter.type'); if (ExtensiondistributorHelper::checkArray($_type)) { $id .= ':' . implode(':', $_type); } // Check if this is only an number or string elseif (is_numeric($_type) || ExtensiondistributorHelper::checkString($_type)) { $id .= ':' . $_type; } $id .= ':' . $this->getState('filter.group'); $id .= ':' . $this->getState('filter.client'); $id .= ':' . $this->getState('filter.name'); $id .= ':' . $this->getState('filter.version_number'); $id .= ':' . $this->getState('filter.release_date'); return parent::getStoreId($id); } /** * Build an SQL query to checkin all items left checked out longer then a set time. * * @return a bool * */ protected function checkInNow() { // Get set check in time $time = JComponentHelper::getParams('com_extensiondistributor')->get('check_in'); if ($time) { // Get a db connection. $db = JFactory::getDbo(); // Reset query. $query = $db->getQuery(true); $query->select('*'); $query->from($db->quoteName('#__extensiondistributor_extension')); // Only select items that are checked out. $query->where($db->quoteName('checked_out') . '!=0'); $db->setQuery($query, 0, 1); $db->execute(); if ($db->getNumRows()) { // Get Yesterdays date. $date = JFactory::getDate()->modify($time)->toSql(); // Reset query. $query = $db->getQuery(true); // Fields to update. $fields = array( $db->quoteName('checked_out_time') . '=\'0000-00-00 00:00:00\'', $db->quoteName('checked_out') . '=0' ); // Conditions for which records should be updated. $conditions = array( $db->quoteName('checked_out') . '!=0', $db->quoteName('checked_out_time') . '<\''.$date.'\'' ); // Check table. $query->update($db->quoteName('#__extensiondistributor_extension'))->set($fields)->where($conditions); $db->setQuery($query); $db->execute(); } } return false; } }