Your IP : 216.73.216.240
<?php
/****************************************************************************************\
** JoomGallery 3 **
** By: JoomGallery::ProjectTeam **
** Copyright (C) 2008 - 2021 JoomGallery::ProjectTeam **
** Based on: JoomGallery 1.0.0 by JoomGallery::ProjectTeam **
** Released under GNU GPL Public License **
** License: http://www.gnu.org/copyleft/gpl.html or have a look **
** at administrator/components/com_joomgallery/LICENSE.TXT **
\****************************************************************************************/
defined('_JEXEC') or die('Direct Access to this location is not allowed.');
/**
* JoomGallery Batch Upload Controller
*
* @package JoomGallery
* @since 1.5.5
*/
class JoomGalleryControllerBatchupload extends JoomGalleryController
{
/**
* Constructor
*
* @return void
* @since 1.5.5
*/
public function __construct()
{
parent::__construct();
// Set view
JRequest::setVar('view', 'batchupload');
}
/**
* Displays the batch upload form
*
* @param boolean $cachable If true, the view output will be cached
* @param array $urlparams An array of safe url parameters and their variable types, for valid values see {@link JFilterInput::clean()}.
* @return void
* @since 2.0
*/
public function display($cachable = false, $urlparams = false)
{
// Access check
if(!$this->_config->get('jg_disableunrequiredchecks') && !count(JoomHelper::getAuthorisedCategories('joom.upload')))
{
$this->setRedirect(JRoute::_($this->_ambit->getRedirectUrl('categories'), false), JText::_('COM_JOOMGALLERY_COMMON_MSG_NO_CATEGORIES_FOUND_ALLOWED_TO_UPLOAD'), 'notice');
return;
}
parent::display($cachable, $urlparams);
}
/**
* Uploads the selected zip archiv
*
* @return void
* @since 1.5.5
*/
public function upload()
{
require_once JPATH_COMPONENT.'/helpers/upload.php';
$uploader = new JoomUpload();
if($uploader->upload(JRequest::getCmd('type', 'batch')))
{
$msg = JText::_('COM_JOOMGALLERY_UPLOAD_MSG_SUCCESSFULL');
$url = $this->_ambit->getRedirectUrl();
// Set custom redirect if we are asked for that
if($redirect = JRequest::getVar('redirect', '', '', 'base64'))
{
$url_decoded = base64_decode($redirect);
if(JURI::isInternal($url))
{
$url = $url_decoded;
}
}
$this->setRedirect(JRoute::_($url, false), $msg);
}
else
{
if($error = $uploader->getError())
{
$this->setRedirect($this->_ambit->getRedirectUrl(), $error, 'error');
}
}
}
}