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 sermons.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 Joomla controlleradmin library
|
|
|
|
jimport('joomla.application.component.controlleradmin');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sermons Controller
|
|
|
|
*/
|
|
|
|
class SermondistributorControllerSermons extends JControllerAdmin
|
|
|
|
{
|
|
|
|
protected $text_prefix = 'COM_SERMONDISTRIBUTOR_SERMONS';
|
|
|
|
/**
|
|
|
|
* Proxy for getModel.
|
|
|
|
* @since 2.5
|
|
|
|
*/
|
|
|
|
public function getModel($name = 'Sermon', $prefix = 'SermondistributorModel', $config = array())
|
|
|
|
{
|
|
|
|
$model = parent::getModel($name, $prefix, array('ignore_request' => true));
|
|
|
|
|
|
|
|
return $model;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function exportData()
|
|
|
|
{
|
2016-04-11 17:50:51 +00:00
|
|
|
// [Interpretation 6705] Check for request forgeries
|
2015-11-30 21:30:54 +00:00
|
|
|
JSession::checkToken() or die(JText::_('JINVALID_TOKEN'));
|
2016-04-11 17:50:51 +00:00
|
|
|
// [Interpretation 6707] check if export is allowed for this user.
|
2015-11-30 21:30:54 +00:00
|
|
|
$user = JFactory::getUser();
|
|
|
|
if ($user->authorise('sermon.export', 'com_sermondistributor') && $user->authorise('core.export', 'com_sermondistributor'))
|
|
|
|
{
|
2016-04-11 17:50:51 +00:00
|
|
|
// [Interpretation 6711] Get the input
|
2015-11-30 21:30:54 +00:00
|
|
|
$input = JFactory::getApplication()->input;
|
|
|
|
$pks = $input->post->get('cid', array(), 'array');
|
2016-04-11 17:50:51 +00:00
|
|
|
// [Interpretation 6714] Sanitize the input
|
2015-11-30 21:30:54 +00:00
|
|
|
JArrayHelper::toInteger($pks);
|
2016-04-11 17:50:51 +00:00
|
|
|
// [Interpretation 6716] Get the model
|
2015-11-30 21:30:54 +00:00
|
|
|
$model = $this->getModel('Sermons');
|
2016-04-11 17:50:51 +00:00
|
|
|
// [Interpretation 6718] get the data to export
|
2015-11-30 21:30:54 +00:00
|
|
|
$data = $model->getExportData($pks);
|
|
|
|
if (SermondistributorHelper::checkArray($data))
|
|
|
|
{
|
2016-04-11 17:50:51 +00:00
|
|
|
// [Interpretation 6722] now set the data to the spreadsheet
|
2015-11-30 21:30:54 +00:00
|
|
|
$date = JFactory::getDate();
|
|
|
|
SermondistributorHelper::xls($data,'Sermons_'.$date->format('jS_F_Y'),'Sermons exported ('.$date->format('jS F, Y').')','sermons');
|
|
|
|
}
|
|
|
|
}
|
2016-04-11 17:50:51 +00:00
|
|
|
// [Interpretation 6727] Redirect to the list screen with error.
|
2015-11-30 21:30:54 +00:00
|
|
|
$message = JText::_('COM_SERMONDISTRIBUTOR_EXPORT_FAILED');
|
|
|
|
$this->setRedirect(JRoute::_('index.php?option=com_sermondistributor&view=sermons', false), $message, 'error');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function importData()
|
|
|
|
{
|
2016-04-11 17:50:51 +00:00
|
|
|
// [Interpretation 6736] Check for request forgeries
|
2015-11-30 21:30:54 +00:00
|
|
|
JSession::checkToken() or die(JText::_('JINVALID_TOKEN'));
|
2016-04-11 17:50:51 +00:00
|
|
|
// [Interpretation 6738] check if import is allowed for this user.
|
2015-11-30 21:30:54 +00:00
|
|
|
$user = JFactory::getUser();
|
|
|
|
if ($user->authorise('sermon.import', 'com_sermondistributor') && $user->authorise('core.import', 'com_sermondistributor'))
|
|
|
|
{
|
2016-04-11 17:50:51 +00:00
|
|
|
// [Interpretation 6742] Get the import model
|
2015-11-30 21:30:54 +00:00
|
|
|
$model = $this->getModel('Sermons');
|
2016-04-11 17:50:51 +00:00
|
|
|
// [Interpretation 6744] get the headers to import
|
2015-11-30 21:30:54 +00:00
|
|
|
$headers = $model->getExImPortHeaders();
|
|
|
|
if (SermondistributorHelper::checkObject($headers))
|
|
|
|
{
|
2016-04-11 17:50:51 +00:00
|
|
|
// [Interpretation 6748] Load headers to session.
|
2015-11-30 21:30:54 +00:00
|
|
|
$session = JFactory::getSession();
|
|
|
|
$headers = json_encode($headers);
|
|
|
|
$session->set('sermon_VDM_IMPORTHEADERS', $headers);
|
|
|
|
$session->set('backto_VDM_IMPORT', 'sermons');
|
|
|
|
$session->set('dataType_VDM_IMPORTINTO', 'sermon');
|
2016-04-11 17:50:51 +00:00
|
|
|
// [Interpretation 6754] Redirect to import view.
|
2015-11-30 21:30:54 +00:00
|
|
|
$message = JText::_('COM_SERMONDISTRIBUTOR_IMPORT_SELECT_FILE_FOR_SERMONS');
|
|
|
|
$this->setRedirect(JRoute::_('index.php?option=com_sermondistributor&view=import', false), $message);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2016-04-11 17:50:51 +00:00
|
|
|
// [Interpretation 6766] Redirect to the list screen with error.
|
2015-11-30 21:30:54 +00:00
|
|
|
$message = JText::_('COM_SERMONDISTRIBUTOR_IMPORT_FAILED');
|
|
|
|
$this->setRedirect(JRoute::_('index.php?option=com_sermondistributor&view=sermons', false), $message, 'error');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|