2015-11-30 21:30:54 +00:00
|
|
|
<?php
|
2018-03-19 22:24:44 +00:00
|
|
|
/*-------------------------------------------------------------------------------------------------------------| www.vdm.io |------/
|
|
|
|
____ ____ __ __ __
|
|
|
|
/\ _`\ /\ _`\ __ /\ \__ __/\ \ /\ \__
|
|
|
|
\ \,\L\_\ __ _ __ ___ ___ ___ ___ \ \ \/\ \/\_\ ____\ \ ,_\ _ __ /\_\ \ \____ __ __\ \ ,_\ ___ _ __
|
|
|
|
\/_\__ \ /'__`\/\`'__\/' __` __`\ / __`\ /' _ `\ \ \ \ \ \/\ \ /',__\\ \ \/ /\`'__\/\ \ \ '__`\/\ \/\ \\ \ \/ / __`\/\`'__\
|
|
|
|
/\ \L\ \/\ __/\ \ \/ /\ \/\ \/\ \/\ \L\ \/\ \/\ \ \ \ \_\ \ \ \/\__, `\\ \ \_\ \ \/ \ \ \ \ \L\ \ \ \_\ \\ \ \_/\ \L\ \ \ \/
|
|
|
|
\ `\____\ \____\\ \_\ \ \_\ \_\ \_\ \____/\ \_\ \_\ \ \____/\ \_\/\____/ \ \__\\ \_\ \ \_\ \_,__/\ \____/ \ \__\ \____/\ \_\
|
|
|
|
\/_____/\/____/ \/_/ \/_/\/_/\/_/\/___/ \/_/\/_/ \/___/ \/_/\/___/ \/__/ \/_/ \/_/\/___/ \/___/ \/__/\/___/ \/_/
|
|
|
|
|
|
|
|
/------------------------------------------------------------------------------------------------------------------------------------/
|
2015-11-30 21:30:54 +00:00
|
|
|
|
2018-03-03 16:43:27 +00:00
|
|
|
@version 2.0.x
|
|
|
|
@created 22nd October, 2015
|
2015-11-30 21:30:54 +00:00
|
|
|
@package Sermon Distributor
|
|
|
|
@subpackage preachers.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.
|
|
|
|
|
2018-03-19 22:24:44 +00:00
|
|
|
/----------------------------------------------------------------------------------------------------------------------------------*/
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
// No direct access to this file
|
|
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
|
2020-05-30 21:39:43 +00:00
|
|
|
use Joomla\Utilities\ArrayHelper;
|
|
|
|
|
2015-11-30 21:30:54 +00:00
|
|
|
/**
|
|
|
|
* Sermondistributor Model for Preachers
|
|
|
|
*/
|
|
|
|
class SermondistributorModelPreachers 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
|
2018-03-03 16:43:27 +00:00
|
|
|
$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-07-16 12:19:44 +00:00
|
|
|
// Get a db connection.
|
2015-11-30 21:30:54 +00:00
|
|
|
$db = JFactory::getDbo();
|
|
|
|
|
2016-07-16 12:19:44 +00:00
|
|
|
// Create a new query object.
|
2015-11-30 21:30:54 +00:00
|
|
|
$query = $db->getQuery(true);
|
|
|
|
|
2016-07-16 12:19:44 +00:00
|
|
|
// Get from #__sermondistributor_preacher 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.icon','a.email','a.website','a.description','a.hits','a.ordering'),
|
|
|
|
array('id','asset_id','name','alias','icon','email','website','description','hits','ordering')));
|
|
|
|
$query->from($db->quoteName('#__sermondistributor_preacher', 'a'));
|
|
|
|
$query->where('a.access IN (' . implode(',', $this->levels) . ')');
|
2017-08-18 11:20:01 +00:00
|
|
|
// Get where a.published is 1
|
2015-11-30 21:30:54 +00:00
|
|
|
$query->where('a.published = 1');
|
|
|
|
$query->order('a.ordering ASC');
|
|
|
|
|
2016-07-16 12:19:44 +00:00
|
|
|
// 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()
|
|
|
|
{
|
2018-03-03 16:43:27 +00:00
|
|
|
$user = JFactory::getUser();
|
|
|
|
// check if this user has permission to access item
|
|
|
|
if (!$user->authorise('site.preachers.access', 'com_sermondistributor'))
|
|
|
|
{
|
|
|
|
$app = JFactory::getApplication();
|
|
|
|
$app->enqueueMessage(JText::_('COM_SERMONDISTRIBUTOR_NOT_AUTHORISED_TO_VIEW_PREACHERS'), 'error');
|
|
|
|
// redirect away to the home page if no access allowed.
|
|
|
|
$app->redirect(JURI::root());
|
|
|
|
return false;
|
2019-04-04 11:52:38 +00:00
|
|
|
}
|
2015-11-30 21:30:54 +00:00
|
|
|
// load parent items
|
|
|
|
$items = parent::getItems();
|
|
|
|
|
|
|
|
// Get the global params
|
|
|
|
$globalParams = JComponentHelper::getParams('com_sermondistributor', true);
|
|
|
|
|
2018-03-03 16:43:27 +00:00
|
|
|
// Insure all item fields are adapted where needed.
|
2017-02-17 20:21:37 +00:00
|
|
|
if (SermondistributorHelper::checkArray($items))
|
2015-11-30 21:30:54 +00:00
|
|
|
{
|
2018-03-03 16:43:27 +00:00
|
|
|
// Load the JEvent Dispatcher
|
|
|
|
JPluginHelper::importPlugin('content');
|
|
|
|
$this->_dispatcher = JEventDispatcher::getInstance();
|
2017-02-17 20:21:37 +00:00
|
|
|
foreach ($items as $nr => &$item)
|
|
|
|
{
|
|
|
|
// Always create a slug for sef URL's
|
|
|
|
$item->slug = (isset($item->alias) && isset($item->id)) ? $item->id.':'.$item->alias : $item->id;
|
2018-09-06 08:34:13 +00:00
|
|
|
// Check if item has params, or pass whole item.
|
|
|
|
$params = (isset($item->params) && SermondistributorHelper::checkJson($item->params)) ? json_decode($item->params) : $item;
|
2018-03-03 16:43:27 +00:00
|
|
|
// Make sure the content prepare plugins fire on description
|
|
|
|
$_description = new stdClass();
|
|
|
|
$_description->text =& $item->description; // value must be in text
|
|
|
|
// Since all values are now in text (Joomla Limitation), we also add the field name (description) to context
|
2018-09-06 08:34:13 +00:00
|
|
|
$this->_dispatcher->trigger("onContentPrepare", array('com_sermondistributor.preacher.description', &$_description, &$params, 0));
|
2017-02-17 20:21:37 +00:00
|
|
|
// Checking if description has uikit components that must be loaded.
|
|
|
|
$this->uikitComp = SermondistributorHelper::getUikitComp($item->description,$this->uikitComp);
|
|
|
|
// set idPreacherSermonB to the $item object.
|
|
|
|
$item->idPreacherSermonB = $this->getIdPreacherSermonDcaa_B($item->id);
|
|
|
|
}
|
2019-04-04 11:52:38 +00:00
|
|
|
}
|
2016-04-11 17:50:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
if (SermondistributorHelper::checkArray($items))
|
|
|
|
{
|
|
|
|
foreach ($items as $nr => &$item)
|
|
|
|
{
|
2016-04-11 20:37:35 +00:00
|
|
|
if (!SermondistributorHelper::checkArray($item->idPreacherSermonB))
|
2016-04-11 17:50:51 +00:00
|
|
|
{
|
|
|
|
// remove empty preacher
|
|
|
|
unset($items[$nr]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
// return items
|
|
|
|
return $items;
|
2019-04-04 11:52:38 +00:00
|
|
|
}
|
2015-11-30 21:30:54 +00:00
|
|
|
|
|
|
|
/**
|
2018-07-20 04:39:01 +00:00
|
|
|
* Method to get an array of Sermon Objects.
|
|
|
|
*
|
|
|
|
* @return mixed An array of Sermon Objects on success, false on failure.
|
|
|
|
*
|
|
|
|
*/
|
2015-11-30 21:30:54 +00:00
|
|
|
public function getIdPreacherSermonDcaa_B($id)
|
|
|
|
{
|
2016-07-16 12:19:44 +00:00
|
|
|
// Get a db connection.
|
2015-11-30 21:30:54 +00:00
|
|
|
$db = JFactory::getDbo();
|
|
|
|
|
2016-07-16 12:19:44 +00:00
|
|
|
// Create a new query object.
|
2015-11-30 21:30:54 +00:00
|
|
|
$query = $db->getQuery(true);
|
|
|
|
|
2016-07-16 12:19:44 +00:00
|
|
|
// 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.preacher = ' . $db->quote($id));
|
|
|
|
$query->where('b.access IN (' . implode(',', $this->levels) . ')');
|
2017-08-18 11:20:01 +00:00
|
|
|
// Get where b.published is 1
|
2015-11-30 21:30:54 +00:00
|
|
|
$query->where('b.published = 1');
|
|
|
|
|
2016-07-16 12:19:44 +00:00
|
|
|
// Reset the query using our newly populated query object.
|
2015-11-30 21:30:54 +00:00
|
|
|
$db->setQuery($query);
|
|
|
|
$db->execute();
|
|
|
|
|
2016-07-16 12:19:44 +00:00
|
|
|
// check if there was data returned
|
2015-11-30 21:30:54 +00:00
|
|
|
if ($db->getNumRows())
|
|
|
|
{
|
|
|
|
return $db->loadObjectList();
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2018-07-20 04:39:01 +00:00
|
|
|
* Get the uikit needed components
|
|
|
|
*
|
|
|
|
* @return mixed An array of objects on success.
|
|
|
|
*
|
|
|
|
*/
|
2015-11-30 21:30:54 +00:00
|
|
|
public function getUikitComp()
|
|
|
|
{
|
|
|
|
if (isset($this->uikitComp) && SermondistributorHelper::checkArray($this->uikitComp))
|
|
|
|
{
|
|
|
|
return $this->uikitComp;
|
|
|
|
}
|
|
|
|
return false;
|
2019-04-04 11:52:38 +00:00
|
|
|
}
|
2015-11-30 21:30:54 +00:00
|
|
|
}
|