2015-11-30 21:30:54 +00:00
|
|
|
<?php
|
2015-12-23 12:44:56 +00:00
|
|
|
/*--------------------------------------------------------------------------------------------------------| www.vdm.io |------/
|
|
|
|
__ __ _ _____ _ _ __ __ _ _ _
|
|
|
|
\ \ / / | | | __ \ | | | | | \/ | | | | | | |
|
|
|
|
\ \ / /_ _ ___| |_ | | | | _____ _____| | ___ _ __ _ __ ___ ___ _ __ | |_ | \ / | ___| |_| |__ ___ __| |
|
|
|
|
\ \/ / _` / __| __| | | | |/ _ \ \ / / _ \ |/ _ \| '_ \| '_ ` _ \ / _ \ '_ \| __| | |\/| |/ _ \ __| '_ \ / _ \ / _` |
|
|
|
|
\ / (_| \__ \ |_ | |__| | __/\ V / __/ | (_) | |_) | | | | | | __/ | | | |_ | | | | __/ |_| | | | (_) | (_| |
|
|
|
|
\/ \__,_|___/\__| |_____/ \___| \_/ \___|_|\___/| .__/|_| |_| |_|\___|_| |_|\__| |_| |_|\___|\__|_| |_|\___/ \__,_|
|
|
|
|
| |
|
|
|
|
|_|
|
|
|
|
/-------------------------------------------------------------------------------------------------------------------------------/
|
2015-11-30 21:30:54 +00:00
|
|
|
|
2016-03-09 21:41:33 +00:00
|
|
|
@version 1.3.2
|
2016-04-11 17:50:51 +00:00
|
|
|
@build 11th April, 2016
|
2015-11-30 21:30:54 +00:00
|
|
|
@created 22nd October, 2015
|
|
|
|
@package Sermon Distributor
|
|
|
|
@subpackage serieslist.php
|
|
|
|
@author Llewellyn van der Merwe <https://www.vdm.io/>
|
|
|
|
@copyright Copyright (C) 2015. All Rights Reserved
|
2015-12-23 12:44:56 +00:00
|
|
|
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
|
|
|
|
A sermon distributor that links to Dropbox.
|
|
|
|
|
|
|
|
/-----------------------------------------------------------------------------------------------------------------------------*/
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
// No direct access to this file
|
|
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
|
|
|
|
// import the Joomla modellist library
|
|
|
|
jimport('joomla.application.component.modellist');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sermondistributor Model for Serieslist
|
|
|
|
*/
|
|
|
|
class SermondistributorModelSerieslist extends JModelList
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Model user data.
|
|
|
|
*
|
|
|
|
* @var strings
|
|
|
|
*/
|
|
|
|
protected $user;
|
|
|
|
protected $userId;
|
|
|
|
protected $guest;
|
|
|
|
protected $groups;
|
|
|
|
protected $levels;
|
|
|
|
protected $app;
|
|
|
|
protected $input;
|
|
|
|
protected $uikitComp;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to build an SQL query to load the list data.
|
|
|
|
*
|
|
|
|
* @return string An SQL query
|
|
|
|
*/
|
|
|
|
protected function getListQuery()
|
|
|
|
{
|
|
|
|
// Get the current user for authorisation checks
|
|
|
|
$this->user = JFactory::getUser();
|
|
|
|
$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->app = JFactory::getApplication();
|
|
|
|
$this->input = $this->app->input;
|
|
|
|
$this->initSet = true;
|
2016-04-11 17:50:51 +00:00
|
|
|
// [Interpretation 2212] Get a db connection.
|
2015-11-30 21:30:54 +00:00
|
|
|
$db = JFactory::getDbo();
|
|
|
|
|
2016-04-11 17:50:51 +00:00
|
|
|
// [Interpretation 2221] Create a new query object.
|
2015-11-30 21:30:54 +00:00
|
|
|
$query = $db->getQuery(true);
|
|
|
|
|
2016-04-11 17:50:51 +00:00
|
|
|
// [Interpretation 1072] Get from #__sermondistributor_series as a
|
2015-11-30 21:30:54 +00:00
|
|
|
$query->select($db->quoteName(
|
|
|
|
array('a.id','a.asset_id','a.name','a.alias','a.description','a.icon','a.hits','a.ordering'),
|
|
|
|
array('id','asset_id','name','alias','description','icon','hits','ordering')));
|
|
|
|
$query->from($db->quoteName('#__sermondistributor_series', 'a'));
|
|
|
|
$query->where('a.access IN (' . implode(',', $this->levels) . ')');
|
|
|
|
$query->where('a.published = 1');
|
|
|
|
$query->order('a.ordering ASC');
|
|
|
|
|
2016-04-11 17:50:51 +00:00
|
|
|
// [Interpretation 2242] return the query object
|
2015-11-30 21:30:54 +00:00
|
|
|
return $query;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to get an array of data items.
|
|
|
|
*
|
|
|
|
* @return mixed An array of data items on success, false on failure.
|
|
|
|
*/
|
|
|
|
public function getItems()
|
|
|
|
{
|
|
|
|
$user = JFactory::getUser();
|
|
|
|
// check if this user has permission to access items
|
|
|
|
if (!$user->authorise('site.serieslist.access', 'com_sermondistributor'))
|
|
|
|
{
|
|
|
|
JError::raiseWarning(500, JText::_('Not authorised!'));
|
|
|
|
// redirect away if not a correct (TODO for now we go to default view)
|
|
|
|
JFactory::getApplication()->redirect(JRoute::_('index.php?option=com_sermondistributor&view=preachers'));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// load parent items
|
|
|
|
$items = parent::getItems();
|
|
|
|
|
|
|
|
// Get the global params
|
|
|
|
$globalParams = JComponentHelper::getParams('com_sermondistributor', true);
|
|
|
|
|
2016-04-11 17:50:51 +00:00
|
|
|
// [Interpretation 2262] Convert the parameter fields into objects.
|
2015-11-30 21:30:54 +00:00
|
|
|
foreach ($items as $nr => &$item)
|
|
|
|
{
|
2016-04-11 17:50:51 +00:00
|
|
|
// [Interpretation 2265] Always create a slug for sef URL's
|
2015-11-30 21:30:54 +00:00
|
|
|
$item->slug = (isset($item->alias)) ? $item->id.':'.$item->alias : $item->id;
|
2016-04-11 17:50:51 +00:00
|
|
|
// [Interpretation 1289] Make sure the content prepare plugins fire on description.
|
2015-11-30 21:30:54 +00:00
|
|
|
$item->description = JHtml::_('content.prepare',$item->description);
|
2016-04-11 17:50:51 +00:00
|
|
|
// [Interpretation 1291] Checking if description has uikit components that must be loaded.
|
2015-11-30 21:30:54 +00:00
|
|
|
$this->uikitComp = SermondistributorHelper::getUikitComp($item->description,$this->uikitComp);
|
2016-04-11 17:50:51 +00:00
|
|
|
// [Interpretation 1322] set idSeriesSermonB to the $item object.
|
2015-11-30 21:30:54 +00:00
|
|
|
$item->idSeriesSermonB = $this->getIdSeriesSermonBcae_B($item->id);
|
2016-04-11 17:50:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (SermondistributorHelper::checkArray($items))
|
|
|
|
{
|
|
|
|
foreach ($items as $nr => &$item)
|
|
|
|
{
|
|
|
|
if (!$item->idSeriesSermonB)
|
|
|
|
{
|
|
|
|
// remove empty series
|
|
|
|
unset($items[$nr]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
// return items
|
|
|
|
return $items;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to get an array of Sermon Objects.
|
|
|
|
*
|
|
|
|
* @return mixed An array of Sermon Objects on success, false on failure.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public function getIdSeriesSermonBcae_B($id)
|
|
|
|
{
|
2016-04-11 17:50:51 +00:00
|
|
|
// [Interpretation 2014] Get a db connection.
|
2015-11-30 21:30:54 +00:00
|
|
|
$db = JFactory::getDbo();
|
|
|
|
|
2016-04-11 17:50:51 +00:00
|
|
|
// [Interpretation 2016] Create a new query object.
|
2015-11-30 21:30:54 +00:00
|
|
|
$query = $db->getQuery(true);
|
|
|
|
|
2016-04-11 17:50:51 +00:00
|
|
|
// [Interpretation 2018] Get from #__sermondistributor_sermon as b
|
2015-11-30 21:30:54 +00:00
|
|
|
$query->select($db->quoteName(
|
|
|
|
array('b.id'),
|
|
|
|
array('id')));
|
|
|
|
$query->from($db->quoteName('#__sermondistributor_sermon', 'b'));
|
|
|
|
$query->where('b.series = ' . $db->quote($id));
|
|
|
|
$query->where('b.access IN (' . implode(',', $this->levels) . ')');
|
|
|
|
$query->where('b.published = 1');
|
|
|
|
|
2016-04-11 17:50:51 +00:00
|
|
|
// [Interpretation 2072] Reset the query using our newly populated query object.
|
2015-11-30 21:30:54 +00:00
|
|
|
$db->setQuery($query);
|
|
|
|
$db->execute();
|
|
|
|
|
2016-04-11 17:50:51 +00:00
|
|
|
// [Interpretation 2075] check if there was data returned
|
2015-11-30 21:30:54 +00:00
|
|
|
if ($db->getNumRows())
|
|
|
|
{
|
|
|
|
return $db->loadObjectList();
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the uikit needed components
|
|
|
|
*
|
|
|
|
* @return mixed An array of objects on success.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public function getUikitComp()
|
|
|
|
{
|
|
|
|
if (isset($this->uikitComp) && SermondistributorHelper::checkArray($this->uikitComp))
|
|
|
|
{
|
|
|
|
return $this->uikitComp;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|