2015-11-30 21:30:54 +00:00
|
|
|
<?php
|
|
|
|
/*----------------------------------------------------------------------------------| www.vdm.io |----/
|
|
|
|
Vast Development Method
|
|
|
|
/-------------------------------------------------------------------------------------------------------/
|
|
|
|
|
|
|
|
@version 1.2.9
|
2015-12-01 00:19:11 +00:00
|
|
|
@build 1st December, 2015
|
2015-11-30 21:30:54 +00:00
|
|
|
@created 22nd October, 2015
|
|
|
|
@package Sermon Distributor
|
|
|
|
@subpackage statistics.php
|
|
|
|
@author Llewellyn van der Merwe <https://www.vdm.io/>
|
|
|
|
@copyright Copyright (C) 2015. 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');
|
|
|
|
|
|
|
|
// import Joomla controlleradmin library
|
|
|
|
jimport('joomla.application.component.controlleradmin');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Statistics Controller
|
|
|
|
*/
|
|
|
|
class SermondistributorControllerStatistics extends JControllerAdmin
|
|
|
|
{
|
|
|
|
protected $text_prefix = 'COM_SERMONDISTRIBUTOR_STATISTICS';
|
|
|
|
/**
|
|
|
|
* Proxy for getModel.
|
|
|
|
* @since 2.5
|
|
|
|
*/
|
|
|
|
public function getModel($name = 'Statistic', $prefix = 'SermondistributorModel', $config = array())
|
|
|
|
{
|
|
|
|
$model = parent::getModel($name, $prefix, array('ignore_request' => true));
|
|
|
|
|
|
|
|
return $model;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function exportData()
|
|
|
|
{
|
2015-12-01 00:19:11 +00:00
|
|
|
// [7263] Check for request forgeries
|
2015-11-30 21:30:54 +00:00
|
|
|
JSession::checkToken() or die(JText::_('JINVALID_TOKEN'));
|
2015-12-01 00:19:11 +00:00
|
|
|
// [7265] check if export is allowed for this user.
|
2015-11-30 21:30:54 +00:00
|
|
|
$user = JFactory::getUser();
|
|
|
|
if ($user->authorise('statistic.export', 'com_sermondistributor') && $user->authorise('core.export', 'com_sermondistributor'))
|
|
|
|
{
|
2015-12-01 00:19:11 +00:00
|
|
|
// [7269] Get the input
|
2015-11-30 21:30:54 +00:00
|
|
|
$input = JFactory::getApplication()->input;
|
|
|
|
$pks = $input->post->get('cid', array(), 'array');
|
2015-12-01 00:19:11 +00:00
|
|
|
// [7272] Sanitize the input
|
2015-11-30 21:30:54 +00:00
|
|
|
JArrayHelper::toInteger($pks);
|
2015-12-01 00:19:11 +00:00
|
|
|
// [7274] Get the model
|
2015-11-30 21:30:54 +00:00
|
|
|
$model = $this->getModel('Statistics');
|
2015-12-01 00:19:11 +00:00
|
|
|
// [7276] get the data to export
|
2015-11-30 21:30:54 +00:00
|
|
|
$data = $model->getExportData($pks);
|
|
|
|
if (SermondistributorHelper::checkArray($data))
|
|
|
|
{
|
2015-12-01 00:19:11 +00:00
|
|
|
// [7280] now set the data to the spreadsheet
|
2015-11-30 21:30:54 +00:00
|
|
|
$date = JFactory::getDate();
|
|
|
|
SermondistributorHelper::xls($data,'Statistics_'.$date->format('jS_F_Y'),'Statistics exported ('.$date->format('jS F, Y').')','statistics');
|
|
|
|
}
|
|
|
|
}
|
2015-12-01 00:19:11 +00:00
|
|
|
// [7285] 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=statistics', false), $message, 'error');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function importData()
|
|
|
|
{
|
2015-12-01 00:19:11 +00:00
|
|
|
// [7294] Check for request forgeries
|
2015-11-30 21:30:54 +00:00
|
|
|
JSession::checkToken() or die(JText::_('JINVALID_TOKEN'));
|
2015-12-01 00:19:11 +00:00
|
|
|
// [7296] check if import is allowed for this user.
|
2015-11-30 21:30:54 +00:00
|
|
|
$user = JFactory::getUser();
|
|
|
|
if ($user->authorise('statistic.import', 'com_sermondistributor') && $user->authorise('core.import', 'com_sermondistributor'))
|
|
|
|
{
|
2015-12-01 00:19:11 +00:00
|
|
|
// [7300] Get the import model
|
2015-11-30 21:30:54 +00:00
|
|
|
$model = $this->getModel('Statistics');
|
2015-12-01 00:19:11 +00:00
|
|
|
// [7302] get the headers to import
|
2015-11-30 21:30:54 +00:00
|
|
|
$headers = $model->getExImPortHeaders();
|
|
|
|
if (SermondistributorHelper::checkObject($headers))
|
|
|
|
{
|
2015-12-01 00:19:11 +00:00
|
|
|
// [7306] Load headers to session.
|
2015-11-30 21:30:54 +00:00
|
|
|
$session = JFactory::getSession();
|
|
|
|
$headers = json_encode($headers);
|
|
|
|
$session->set('statistic_VDM_IMPORTHEADERS', $headers);
|
|
|
|
$session->set('backto_VDM_IMPORT', 'statistics');
|
|
|
|
$session->set('dataType_VDM_IMPORTINTO', 'statistic');
|
2015-12-01 00:19:11 +00:00
|
|
|
// [7312] Redirect to import view.
|
2015-11-30 21:30:54 +00:00
|
|
|
$message = JText::_('COM_SERMONDISTRIBUTOR_IMPORT_SELECT_FILE_FOR_STATISTICS');
|
|
|
|
$this->setRedirect(JRoute::_('index.php?option=com_sermondistributor&view=import', false), $message);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2015-12-01 00:19:11 +00:00
|
|
|
// [7324] 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=statistics', false), $message, 'error');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|