932 lines
27 KiB
PHP
932 lines
27 KiB
PHP
<?php
|
|
/*
|
|
* @package Joomla.Framework
|
|
* @copyright Copyright (C) 2005 - 2010 Open Source Matters, Inc. All rights reserved.
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
*
|
|
* @component Phoca Component
|
|
* @copyright Copyright (C) Jan Pavelka www.phoca.cz
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU General Public License version 2 or later;
|
|
*/
|
|
defined('_JEXEC') or die();
|
|
use Joomla\CMS\MVC\Model\AdminModel;
|
|
use Joomla\CMS\Factory;
|
|
use Joomla\CMS\Table\Table;
|
|
use Joomla\Registry\Registry;
|
|
use Joomla\CMS\Application\ApplicationHelper;
|
|
use Joomla\CMS\Plugin\PluginHelper;
|
|
use Joomla\CMS\Language\Text;
|
|
use Joomla\CMS\Component\ComponentHelper;
|
|
use Joomla\CMS\Filesystem\Path;
|
|
use Joomla\CMS\Filesystem\File;
|
|
use Joomla\CMS\Filesystem\Folder;
|
|
use Joomla\Utilities\ArrayHelper;
|
|
use Joomla\CMS\Filter\OutputFilter;
|
|
|
|
|
|
jimport('joomla.application.component.modeladmin');
|
|
|
|
class PhocaDownloadCpModelPhocaDownloadFile extends AdminModel
|
|
{
|
|
protected $option = 'com_phocadownload';
|
|
protected $text_prefix = 'com_phocadownload';
|
|
public $typeAlias = 'com_phocadownload.phocadownloadfile';
|
|
|
|
protected function canDelete($record)
|
|
{
|
|
$user = Factory::getUser();
|
|
|
|
if (!empty($record->catid)) {
|
|
return $user->authorise('core.delete', 'com_phocadownload.phocadownloadfile.'.(int) $record->catid);
|
|
} else {
|
|
return parent::canDelete($record);
|
|
}
|
|
}
|
|
|
|
protected function canEditState($record)
|
|
{
|
|
$user = Factory::getUser();
|
|
|
|
if (!empty($record->catid)) {
|
|
return $user->authorise('core.edit.state', 'com_phocadownload.phocadownloadfile.'.(int) $record->catid);
|
|
} else {
|
|
return parent::canEditState($record);
|
|
}
|
|
}
|
|
|
|
public function getTable($type = 'PhocaDownload', $prefix = 'Table', $config = array())
|
|
{
|
|
return Table::getInstance($type, $prefix, $config);
|
|
}
|
|
|
|
public function getForm($data = array(), $loadData = true) {
|
|
|
|
$app = Factory::getApplication();
|
|
$form = $this->loadForm('com_phocadownload.phocadownloadfile', 'phocadownloadfile', array('control' => 'jform', 'load_data' => $loadData));
|
|
|
|
if (empty($form)) {
|
|
return false;
|
|
}
|
|
return $form;
|
|
}
|
|
|
|
protected function loadFormData()
|
|
{
|
|
// Check the session for previously entered form data.
|
|
$app = Factory::getApplication('administrator');
|
|
$data = Factory::getApplication()->getUserState('com_phocadownload.edit.phocadownload.data', array());
|
|
|
|
if (empty($data)) {
|
|
$data = $this->getItem();
|
|
}
|
|
|
|
// Try to preselect category when we add new file
|
|
// Take the value from filter select box in image list
|
|
// Or take it from GET - if someone wants to add new file and wants to have preselected category
|
|
if (empty($data) || (!empty($data) && (int)$data->id < 1)) {
|
|
|
|
|
|
$filter = (array) $app->getUserState('com_phocadownload.phocadownloadfiles.filter.category_id');
|
|
|
|
if (isset($filter[0]) && (int)$filter[0] > 0) {
|
|
$data->set('catid', (int)$filter[0]);
|
|
} else {
|
|
// UNDER TEST
|
|
$catid = $app->input->get('catid');
|
|
if ((int)$catid > 0) {
|
|
$data->set('catid', (int)$catid);
|
|
}
|
|
}
|
|
}
|
|
return $data;
|
|
}
|
|
|
|
public function getItem($pk = null)
|
|
{
|
|
if ($item = parent::getItem($pk)) {
|
|
// Convert the params field to an array.
|
|
if (isset($item->metadata)) {
|
|
$registry = new Registry;
|
|
$registry->loadString($item->metadata);
|
|
$item->metadata = $registry->toArray();
|
|
}
|
|
|
|
}
|
|
|
|
return $item;
|
|
}
|
|
|
|
protected function prepareTable($table)
|
|
{
|
|
jimport('joomla.filter.output');
|
|
$date = Factory::getDate();
|
|
$user = Factory::getUser();
|
|
|
|
$table->title = htmlspecialchars_decode($table->title, ENT_QUOTES);
|
|
$table->alias = ApplicationHelper::stringURLSafe($table->alias);
|
|
|
|
|
|
$table->confirm_license = PhocaDownloadUtils::getIntFromString($table->confirm_license);
|
|
$table->hits = PhocaDownloadUtils::getIntFromString($table->hits);
|
|
$table->tokenhits = PhocaDownloadUtils::getIntFromString($table->tokenhits);
|
|
|
|
|
|
if (empty($table->alias)) {
|
|
$table->alias = ApplicationHelper::stringURLSafe($table->title);
|
|
}
|
|
|
|
if (empty($table->id)) {
|
|
// Set the values
|
|
//$table->created = $date->toSql();
|
|
|
|
// Set ordering to the last item if not set
|
|
if (empty($table->ordering)) {
|
|
$db = Factory::getDbo();
|
|
//$db->setQuery('SELECT MAX(ordering) FROM #__phocadownload');
|
|
$db->setQuery('SELECT MAX(ordering) FROM #__phocadownload WHERE catid = '.(int)$table->catid);
|
|
$max = $db->loadResult();
|
|
|
|
$table->ordering = $max+1;
|
|
}
|
|
}
|
|
else {
|
|
// Set the values
|
|
//$table->modified = $date->toSql();
|
|
//$table->modified_by = $user->get('id');
|
|
}
|
|
}
|
|
|
|
|
|
|
|
protected function getReorderConditions($table = null)
|
|
{
|
|
$condition = array();
|
|
$condition[] = 'catid = '. (int) $table->catid;
|
|
//$condition[] = 'state >= 0';
|
|
return $condition;
|
|
}
|
|
|
|
function approve(&$pks, $value = 1)
|
|
{
|
|
// Initialise variables.
|
|
//$dispatcher = JEventDispatcher::getInstance();
|
|
$user = Factory::getUser();
|
|
$table = $this->getTable('phocadownload');
|
|
$pks = (array) $pks;
|
|
$app = Factory::getApplication();
|
|
|
|
// Include the content plugins for the change of state event.
|
|
PluginHelper::importPlugin('content');
|
|
|
|
// Access checks.
|
|
foreach ($pks as $i => $pk) {
|
|
if ($table->load($pk)) {
|
|
if (!$this->canEditState($table)) {
|
|
// Prune items that you can't change.
|
|
unset($pks[$i]);
|
|
|
|
throw new Exception(Text::_('JLIB_APPLICATION_ERROR_EDIT_STATE_NOT_PERMITTED'), 403);
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Attempt to change the state of the records.
|
|
if (!$table->approve($pks, $value, $user->get('id'))) {
|
|
throw new Exception($table->getError(), 500);
|
|
return false;
|
|
}
|
|
|
|
$context = $this->option.'.'.$this->name;
|
|
|
|
// Trigger the onContentChangeState event.
|
|
/* $result = $dispatcher->trigger($this->event_change_state, array($context, $pks, $value));
|
|
if (in_array(false, $result, true)) {
|
|
throw new Exception($table->getError(), 500);
|
|
return false;
|
|
} */
|
|
//PluginHelper::importPlugin($this->events_map['state']);
|
|
$result = $app->triggerEvent($this->event_change_state, array($context, $pks, $value));
|
|
if (\in_array(false, $result, true)) {
|
|
$this->setError($table->getError());
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
function save($data) {
|
|
|
|
$app = Factory::getApplication();
|
|
$input = Factory::getApplication()->input;
|
|
//$dispatcher = J Dispatcher::getInstance();
|
|
$table = $this->getTable();
|
|
$pk = (!empty($data['id'])) ? $data['id'] : (int)$this->getState($this->getName().'.id');
|
|
$isNew = true;
|
|
|
|
//$data['filesize'] = PhocaDownloadUtils::getFileSize($data['filename'], 0);
|
|
|
|
if ($data['alias'] == '') {
|
|
$data['alias'] = $data['title'];
|
|
}
|
|
|
|
//$data['alias'] = PhocaDownloadText::get AliasName($data['alias']);
|
|
|
|
|
|
// ALIAS
|
|
if (in_array($input->get('task'), array('apply', 'save', 'save2new')) && (!isset($data['id']) || (int) $data['id'] == 0)) {
|
|
if ($data['alias'] == null) {
|
|
if (Factory::getConfig()->get('unicodeslugs') == 1) {
|
|
$data['alias'] = OutputFilter::stringURLUnicodeSlug($data['title']);
|
|
} else {
|
|
$data['alias'] = OutputFilter::stringURLSafe($data['title']);
|
|
}
|
|
|
|
|
|
if ($table->load(array('alias' => $data['alias']))){
|
|
$msg = Text::_('COM_PHOCADOWNLOAD_SAVE_WARNING');
|
|
}
|
|
|
|
list($title, $alias) = $this->generateNewTitle(0, $data['alias'], $data['title']);
|
|
$data['alias'] = $alias;
|
|
|
|
if (isset($msg)) {
|
|
Factory::getApplication()->enqueueMessage($msg, 'warning');
|
|
}
|
|
}
|
|
} else if ($table->load(array('alias' => $data['alias'])) && ($table->id != $data['id'] || $data['id'] == 0)) {
|
|
$this->setError(Text::_('COM_PHOCADOWNLOAD_ERROR_ITEM_UNIQUE_ALIAS'));
|
|
return false;
|
|
}
|
|
|
|
|
|
// Initialise variables;
|
|
//$dispatcher = JEventDispatcher::getInstance();
|
|
$table = $this->getTable();
|
|
$pk = (!empty($data['id'])) ? $data['id'] : (int)$this->getState($this->getName().'.id');
|
|
$isNew = true;
|
|
|
|
// Include the content plugins for the on save events.
|
|
PluginHelper::importPlugin('content');
|
|
|
|
// Load the row if saving an existing record.
|
|
if ($pk > 0) {
|
|
$table->load($pk);
|
|
$isNew = false;
|
|
}
|
|
|
|
// =================================================
|
|
// Make a copy for play and preview
|
|
$paramsC = ComponentHelper::getParams('com_phocadownload') ;
|
|
$papCopy = $paramsC->get( 'pap_copy', 0 );
|
|
$overwriteExistingFiles = $paramsC->get( 'overwrite_existing_files', 0 );
|
|
$path = PhocaDownloadPath::getPathSet();
|
|
|
|
if ($papCopy == 2 || $papCopy == 3) {
|
|
$canPlay = PhocaDownloadFile::canPlay($data['filename']);
|
|
$canPreview = PhocaDownloadFile::canPreview($data['filename']);
|
|
$filepath = Path::clean($path['orig_abs_ds'] . '/'.$data['filename']);
|
|
$filepathPAP = Path::clean($path['orig_abs_pap_ds'] . '/'.$data['filename']);
|
|
$filepathPAPFolder = Path::clean($path['orig_abs_pap_ds'] . '/'. PhocaDownloadFile::getFolderFromTheFile($data['filename']));
|
|
|
|
if ($canPlay || $canPreview) {
|
|
|
|
// 1. UPLOAD - this is real upload to folder
|
|
// 2. STORE - this is storing info to database (e.g. download and play/preview files are identical, then there will be no copy of the file but only storing DB info
|
|
$uploadPAP = 1;// upload file for preview and play
|
|
$storePAP = 0;
|
|
|
|
|
|
// 1. Care about upload
|
|
if (File::exists($filepathPAP) && $overwriteExistingFiles == 0) {
|
|
//$errUploadMsg = JText::_("COM_PHOCADOWNLOAD_FILE_ALREADY_EXISTS");
|
|
//return false;
|
|
$uploadPAP = 0; // don't upload if it exists, it is not main file, don't do false and exit
|
|
}
|
|
|
|
// Overwrite file and add no new item to database
|
|
$fileExistsPAP = 0;
|
|
if (File::exists($filepathPAP) && $overwriteExistingFiles == 1) {
|
|
$fileExistsPAP = 1;
|
|
|
|
if ($canPlay == 1) {
|
|
// set new file only no other is set or it is the same like currect - to overwrite updated version of the same file
|
|
if ($data['filename_play'] == '' || $data['filename_play'] == $data['filename']) {
|
|
$data['filename_play'] = $data['filename'];
|
|
} else {
|
|
$uploadPAP = 0;
|
|
}
|
|
} else if ($canPreview == 1) {
|
|
// set new file only no other is set or it is the same like currect - to overwrite updated version of the same file
|
|
if ($data['filename_preview'] == '' || $data['filename_preview'] == $data['filename']) {
|
|
$data['filename_preview'] = $data['filename'];
|
|
} else {
|
|
$uploadPAP = 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($uploadPAP == 0) {
|
|
|
|
} else {
|
|
if (!Folder::exists($filepathPAPFolder)) {
|
|
if (Folder::create($filepathPAPFolder)) {
|
|
$dataFile = "<html>\n<body bgcolor=\"#FFFFFF\">\n</body>\n</html>";
|
|
File::write($filepathPAPFolder . '/' ."index.html", $dataFile);
|
|
}
|
|
// else {
|
|
//$errUploadMsg = JText::_("COM_PHOCADOWNLOAD_UNABLE_TO_CREATE_FOLDER");
|
|
//return false;
|
|
//}
|
|
}
|
|
|
|
if ($filepath === $filepathPAP) {
|
|
// Don't try to copy the same file to the same file (including path) because you get error
|
|
$storePAP = 1;
|
|
} else if (!File::copy($filepath, $filepathPAP)) {
|
|
|
|
//$errUploadMsg = JText::_("COM_PHOCADOWNLOAD_UNABLE_TO_UPLOAD_FILE");
|
|
//return false;
|
|
} else {
|
|
$storePAP = 1;
|
|
}
|
|
}
|
|
|
|
// 2. Care about store
|
|
if ($filepath === $filepathPAP) {
|
|
|
|
// SPECIFIC CASE - administrator set the download folder the same like preview/play folder
|
|
// - in such case, there will be no copy because both files including path are identical
|
|
// - but we still write the info about play/preview into database
|
|
// - so no set uploadPAP to 0
|
|
$storePAP = 1;
|
|
}
|
|
|
|
if ($storePAP == 1) {
|
|
if ($canPlay == 1) {
|
|
$data['filename_play'] = $data['filename'];
|
|
} else if ($canPreview == 1) {
|
|
$data['filename_preview'] = $data['filename'];
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// ==============================================
|
|
|
|
/* // =================================================
|
|
// Make a copy for play and preview
|
|
$paramsC = ComponentHelper::getParams('com_phocadownload') ;
|
|
$papCopy = $paramsC->get( 'pap_copy', 0 );
|
|
$overwriteExistingFiles = $paramsC->get( 'overwrite_existing_files', 0 );
|
|
$path = PhocaDownloadPath::getPathSet();
|
|
|
|
|
|
if ($papCopy == 2 || $papCopy == 3) {
|
|
$canPlay = PhocaDownloadFile::canPlay($data['filename']);
|
|
$canPreview = PhocaDownloadFile::canPreview($data['filename']);
|
|
$filepath = Path::clean($path['orig_abs_ds'] . '/'.$data['filename']);
|
|
$filepathPAP = Path::clean($path['orig_abs_pap_ds'] . '/'.$data['filename']);
|
|
$filepathPAPFolder = Path::clean($path['orig_abs_pap_ds'] . '/'. PhocaDownloadFile::getFolderFromTheFile($data['filename']));
|
|
|
|
if ($canPlay || $canPreview) {
|
|
|
|
$uploadPAP = 1;// upload file for preview and play
|
|
if (File::exists($filepathPAP) && $overwriteExistingFiles == 0) {
|
|
//$errUploadMsg = JText::_("COM_PHOCADOWNLOAD_FILE_ALREADY_EXISTS");
|
|
//return false;
|
|
$uploadPAP = 0; // don't upload if it exists, it is not main file, don't do false and exit
|
|
|
|
if ($canPlay == 1) {
|
|
// set new file only no other is set
|
|
if ($data['filename_play'] != '') {
|
|
$uploadPAP = 0;
|
|
} else {
|
|
$data['filename_play'] = $data['filename'];
|
|
}
|
|
} else if ($canPreview == 1) {
|
|
// set new file only no other is set
|
|
if ($data['filename_preview'] != '') {
|
|
$uploadPAP = 0;
|
|
} else {
|
|
$data['filename_preview'] = $data['filename'];
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// Overwrite file and add no new item to database
|
|
$fileExistsPAP = 0;
|
|
if (File::exists($filepathPAP) && $overwriteExistingFiles == 1) {
|
|
$fileExistsPAP = 1;
|
|
|
|
if ($canPlay == 1) {
|
|
// set new file only no other is set or it is the same like currect - to overwrite updated version of the same file
|
|
if ($data['filename_play'] == '' || $data['filename_play'] == $data['filename']) {
|
|
$data['filename_play'] = $data['filename'];
|
|
} else {
|
|
$uploadPAP = 0;
|
|
}
|
|
} else if ($canPreview == 1) {
|
|
// set new file only no other is set or it is the same like currect - to overwrite updated version of the same file
|
|
if ($data['filename_preview'] == '' || $data['filename_preview'] == $data['filename']) {
|
|
$data['filename_preview'] = $data['filename'];
|
|
} else {
|
|
$uploadPAP = 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($uploadPAP == 0) {
|
|
|
|
} else {
|
|
if (!Folder::exists($filepathPAPFolder)) {
|
|
if (Folder::create($filepathPAPFolder)) {
|
|
$dataFile = "<html>\n<body bgcolor=\"#FFFFFF\">\n</body>\n</html>";
|
|
File::write($filepathPAPFolder . '/' ."index.html", $dataFile);
|
|
}
|
|
// else {
|
|
//$errUploadMsg = JText::_("COM_PHOCADOWNLOAD_UNABLE_TO_CREATE_FOLDER");
|
|
//return false;
|
|
//}
|
|
}
|
|
|
|
if (!File::copy($filepath, $filepathPAP)) {
|
|
//$errUploadMsg = JText::_("COM_PHOCADOWNLOAD_UNABLE_TO_UPLOAD_FILE");
|
|
//return false;
|
|
} else {
|
|
|
|
|
|
if ($canPlay == 1) {
|
|
$data['filename_play'] = $data['filename'];
|
|
} else if ($canPreview == 1) {
|
|
$data['filename_preview'] = $data['filename'];
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// ==============================================
|
|
*/
|
|
|
|
// Bind the data.
|
|
if (!$table->bind($data)) {
|
|
throw new Exception($table->getError(), 500);
|
|
return false;
|
|
}
|
|
|
|
// Date - - - - -
|
|
$nullDate = $this->_db->getNullDate();
|
|
$config = Factory::getConfig();
|
|
$tzoffset = $config->get('offset');
|
|
//$date = JFactory::getDate($table->date, $tzoffset);
|
|
//$table->date = $date->toSql();
|
|
|
|
// Append time if not added to publish date
|
|
//if (strlen(trim($table->publish_up)) <= 10) {
|
|
// $table->publish_up .= ' 00:00:00';
|
|
//}
|
|
//$date = JFactory::getDate($table->publish_up, $tzoffset);
|
|
//$table->publish_up = $date->toSql();
|
|
|
|
if ($table->id) {
|
|
|
|
// Test Solution add date when it is removed
|
|
if (!intval($table->date)) {
|
|
$date = Factory::getDate();
|
|
$table->date = $date->toSql();
|
|
}
|
|
|
|
} else {
|
|
if (!intval($table->date)) {
|
|
$date = Factory::getDate();
|
|
$table->date = $date->toSql();
|
|
}
|
|
}
|
|
|
|
if(intval($table->publish_up) == 0) {
|
|
$table->publish_up = Factory::getDate()->toSql();
|
|
}
|
|
|
|
// Handle never unpublish date
|
|
if (trim((string)$table->publish_down) == Text::_('Never') || trim( (string)$table->publish_down ) == '') {
|
|
$table->publish_down = $nullDate;
|
|
} else {
|
|
if (strlen(trim( $table->publish_down )) <= 10) {
|
|
$table->publish_down .= ' 00:00:00';
|
|
}
|
|
//$date = JFactory::getDate($table->publish_down, $tzoffset);
|
|
$date = Factory::getDate($table->publish_down);
|
|
$table->publish_down = $date->toSql();
|
|
}
|
|
// - - - - - -
|
|
|
|
|
|
// if new item, order last in appropriate group
|
|
if (!$table->id) {
|
|
$where = 'catid = ' . (int) $table->catid ;
|
|
$table->ordering = $table->getNextOrder( $where );
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Prepare the row for saving
|
|
$this->prepareTable($table);
|
|
|
|
// Check the data.
|
|
if (!$table->check()) {
|
|
throw new Exception($table->getError(), 500);
|
|
return false;
|
|
}
|
|
|
|
// Trigger the onContentBeforeSave event.
|
|
/*$result = $dispatcher->trigger($this->event_before_save, array($this->option.'.'.$this->name, $table, $isNew));
|
|
if (in_array(false, $result, true)) {
|
|
throw new Exception($table->getError(), 500);
|
|
return false;
|
|
}*/
|
|
|
|
/*$result = Factory::getApplication()->triggerEvent($this->event_before_save, array($this->option.'.'.$this->name, $table, $isNew, $data));
|
|
if (in_array(false, $result, true)) {
|
|
$this->setError($table->getError());
|
|
return false;
|
|
}*/
|
|
|
|
PluginHelper::importPlugin($this->events_map['save']);
|
|
$result = $app->triggerEvent($this->event_before_save, array($this->option.'.'.$this->name, $table, $isNew, $data));
|
|
if (\in_array(false, $result, true)) {
|
|
$this->setError($table->getError());
|
|
return false;
|
|
}
|
|
|
|
// Store the data.
|
|
if (!$table->store()) {
|
|
throw new Exception($table->getError(), 500);
|
|
return false;
|
|
}
|
|
|
|
// Store to ref table
|
|
if (!isset($data['tags'])) {
|
|
$data['tags'] = array();
|
|
}
|
|
if ((int)$table->id > 0) {
|
|
PhocaDownloadTag::storeTags($data['tags'], (int)$table->id);
|
|
}
|
|
|
|
// Clean the cache.
|
|
$cache = Factory::getCache($this->option);
|
|
$cache->clean();
|
|
|
|
// Trigger the onContentAfterSave event.
|
|
//$dispatcher->trigger($this->event_after_save, array($this->option.'.'.$this->name, $table, $isNew));
|
|
PluginHelper::importPlugin($this->events_map['save']);
|
|
$result = $app->triggerEvent($this->event_after_save, array($this->option.'.'.$this->name, $table, $isNew, $data));
|
|
if (\in_array(false, $result, true)) {
|
|
$this->setError($table->getError());
|
|
return false;
|
|
}
|
|
|
|
$pkName = $table->getKeyName();
|
|
if (isset($table->$pkName)) {
|
|
$this->setState($this->getName().'.id', $table->$pkName);
|
|
}
|
|
$this->setState($this->getName().'.new', $isNew);
|
|
|
|
|
|
|
|
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
|
|
function delete(&$cid = array()) {
|
|
|
|
$result = false;
|
|
|
|
$paramsC = ComponentHelper::getParams('com_phocadownload');
|
|
$deleteExistingFiles = $paramsC->get( 'delete_existing_files', 0 );
|
|
|
|
$table = $this->getTable();
|
|
|
|
if (count( $cid )) {
|
|
ArrayHelper::toInteger($cid);
|
|
$cids = implode( ',', $cid );
|
|
|
|
// - - - - - - - - - - - - -
|
|
// Get all filenames we want to delete from database, we delete all thumbnails from server of this file
|
|
$queryd = 'SELECT filename as filename FROM #__phocadownload WHERE id IN ( '.$cids.' )';
|
|
$this->_db->setQuery($queryd);
|
|
$fileObject = $this->_db->loadObjectList();
|
|
// - - - - - - - - - - - - -
|
|
|
|
|
|
//Delete it from DB
|
|
/*$query = 'DELETE FROM #__phocadownload'
|
|
. ' WHERE id IN ( '.$cids.' )';
|
|
$this->_db->setQuery( $query );
|
|
if(!$this->_db->execute()) {
|
|
throw new Exception($this->_db->getError());
|
|
return false;
|
|
}*/
|
|
$app = Factory::getApplication();
|
|
PluginHelper::importPlugin($this->events_map['delete']);
|
|
foreach ($cid as $i => $pk) {
|
|
if ($table->load($pk)) {
|
|
if ($this->canDelete($table)) {
|
|
if (!$table->delete($pk)) {
|
|
throw new Exception($table->getError(), 500);
|
|
return false;
|
|
}
|
|
$app->triggerEvent($this->event_after_delete, array($this->option.'.'.$this->name, $table));
|
|
}
|
|
}
|
|
}
|
|
|
|
//Delete tags from DB
|
|
$query = 'DELETE FROM #__phocadownload_tags_ref'
|
|
. ' WHERE fileid IN ( '.$cids.' )';
|
|
$this->_db->setQuery( $query );
|
|
if(!$this->_db->execute()) {
|
|
throw new Exception($this->_db->getError());
|
|
return false;
|
|
}
|
|
|
|
//Delete files from statistics table
|
|
$query = 'DELETE FROM #__phocadownload_user_stat'
|
|
. ' WHERE fileid IN ( '.$cids.' )';
|
|
$this->_db->setQuery( $query );
|
|
if(!$this->_db->execute()) {
|
|
throw new Exception($this->_db->getError());
|
|
return false;
|
|
}
|
|
|
|
// - - - - - - - - - - - - - -
|
|
// DELETE FILES ON SERVER
|
|
if ($deleteExistingFiles == 1) {
|
|
$path = PhocaDownloadPath::getPathSet();
|
|
foreach ($fileObject as $key => $value) {
|
|
//The file can be stored in other category - don't delete it from server because other category use it
|
|
$querys = "SELECT id as id FROM #__phocadownload WHERE filename='".$value->filename."' ";
|
|
$this->_db->setQuery($querys);
|
|
$sameFileObject = $this->_db->loadObject();
|
|
// same file in other category doesn't exist - we can delete it
|
|
if (!$sameFileObject) {
|
|
File::delete(Path::clean($path['orig_abs_ds'].$value->filename));
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
/*$app = Factory::getApplication();
|
|
PluginHelper::importPlugin($this->events_map['delete']);
|
|
$result = $app->triggerEvent($this->event_after_delete, array($this->option.'.'.$this->name, $table));
|
|
if (\in_array(false, $result, true)) {
|
|
$this->setError($table->getError());
|
|
return false;
|
|
}*/
|
|
|
|
|
|
}
|
|
return true;
|
|
}
|
|
|
|
protected function batchCopy($value, $pks, $contexts)
|
|
{
|
|
$categoryId = (int) $value;
|
|
$app = Factory::getApplication();
|
|
$table = $this->getTable();
|
|
$db = $this->getDbo();
|
|
|
|
// Check that the category exists
|
|
if ($categoryId) {
|
|
$categoryTable = Table::getInstance('PhocaDownloadCat', 'Table');
|
|
if (!$categoryTable->load($categoryId)) {
|
|
if ($error = $categoryTable->getError()) {
|
|
// Fatal error
|
|
throw new Exception($error, 500);
|
|
return false;
|
|
}
|
|
else {
|
|
|
|
throw new Exception(Text::_('JLIB_APPLICATION_ERROR_BATCH_MOVE_CATEGORY_NOT_FOUND'), 500);
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (empty($categoryId)) {
|
|
throw new Exception(Text::_('JLIB_APPLICATION_ERROR_BATCH_MOVE_CATEGORY_NOT_FOUND'), 500);
|
|
return false;
|
|
}
|
|
|
|
// Check that the user has create permission for the component
|
|
$extension = Factory::getApplication()->input->getCmd('option');
|
|
$user = Factory::getUser();
|
|
if (!$user->authorise('core.create', $extension)) {
|
|
|
|
throw new Exception(Text::_('JLIB_APPLICATION_ERROR_BATCH_CANNOT_CREATE'), 500);
|
|
return false;
|
|
}
|
|
|
|
// $i = 0;
|
|
|
|
// Parent exists so we let's proceed
|
|
while (!empty($pks))
|
|
{
|
|
// Pop the first ID off the stack
|
|
$pk = array_shift($pks);
|
|
|
|
$table->reset();
|
|
|
|
// Check that the row actually exists
|
|
if (!$table->load($pk)) {
|
|
if ($error = $table->getError()) {
|
|
// Fatal error
|
|
throw new Exception($error, 500);
|
|
return false;
|
|
}
|
|
else {
|
|
// Not fatal error
|
|
$app->enqueueMessage(Text::sprintf('JLIB_APPLICATION_ERROR_BATCH_MOVE_ROW_NOT_FOUND', $pk), 'error');
|
|
continue;
|
|
}
|
|
}
|
|
|
|
// Alter the title & alias
|
|
$data = $this->generateNewTitle($categoryId, $table->alias, $table->title);
|
|
$table->title = $data['0'];
|
|
$table->alias = $data['1'];
|
|
|
|
// Reset the ID because we are making a copy
|
|
$table->id = 0;
|
|
|
|
// New category ID
|
|
$table->catid = $categoryId;
|
|
|
|
// Ordering
|
|
$table->ordering = $this->increaseOrdering($categoryId);
|
|
|
|
$table->hits = 0;
|
|
|
|
// Check the row.
|
|
if (!$table->check()) {
|
|
throw new Exception($table->getError(), 500);
|
|
return false;
|
|
}
|
|
|
|
// Store the row.
|
|
if (!$table->store()) {
|
|
throw new Exception($table->getError(), 500);
|
|
return false;
|
|
}
|
|
|
|
$newId = $table->get('id');
|
|
|
|
// Add the new ID to the array
|
|
$newIds[$pk] = $newId;
|
|
//$i++;
|
|
}
|
|
|
|
// Clean the cache
|
|
$this->cleanCache();
|
|
|
|
return $newIds;
|
|
}
|
|
|
|
/**
|
|
* Batch move articles to a new category
|
|
*
|
|
* @param integer $value The new category ID.
|
|
* @param array $pks An array of row IDs.
|
|
*
|
|
* @return booelan True if successful, false otherwise and internal error is set.
|
|
*
|
|
* @since 11.1
|
|
*/
|
|
protected function batchMove($value, $pks, $contexts)
|
|
{
|
|
$categoryId = (int) $value;
|
|
$app = Factory::getApplication();
|
|
$table = $this->getTable();
|
|
//$db = $this->getDbo();
|
|
|
|
// Check that the category exists
|
|
if ($categoryId) {
|
|
$categoryTable = Table::getInstance('PhocaDownloadCat', 'Table');
|
|
if (!$categoryTable->load($categoryId)) {
|
|
if ($error = $categoryTable->getError()) {
|
|
// Fatal error
|
|
throw new Exception($error, 500);
|
|
return false;
|
|
}
|
|
else {
|
|
|
|
throw new Exception(Text::_('JLIB_APPLICATION_ERROR_BATCH_MOVE_CATEGORY_NOT_FOUND'), 500);
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (empty($categoryId)) {
|
|
|
|
throw new Exception(Text::_('JLIB_APPLICATION_ERROR_BATCH_MOVE_CATEGORY_NOT_FOUND'), 500);
|
|
return false;
|
|
}
|
|
|
|
// Check that user has create and edit permission for the component
|
|
$extension = Factory::getApplication()->input->getCmd('option');
|
|
$user = Factory::getUser();
|
|
if (!$user->authorise('core.create', $extension)) {
|
|
throw new Exception(Text::_('JLIB_APPLICATION_ERROR_BATCH_CANNOT_CREATE'), 500);
|
|
return false;
|
|
}
|
|
|
|
if (!$user->authorise('core.edit', $extension)) {
|
|
throw new Exception(Text::_('JLIB_APPLICATION_ERROR_BATCH_CANNOT_EDIT'), 500);
|
|
return false;
|
|
}
|
|
|
|
// Parent exists so we let's proceed
|
|
foreach ($pks as $pk)
|
|
{
|
|
// Check that the row actually exists
|
|
if (!$table->load($pk)) {
|
|
if ($error = $table->getError()) {
|
|
// Fatal error
|
|
throw new Exception($error, 500);
|
|
return false;
|
|
}
|
|
else {
|
|
// Not fatal error
|
|
$app->enqueueMessage(Text::sprintf('JLIB_APPLICATION_ERROR_BATCH_MOVE_ROW_NOT_FOUND', $pk), 'error');
|
|
continue;
|
|
}
|
|
}
|
|
|
|
// Set the new category ID
|
|
$table->catid = $categoryId;
|
|
|
|
// Check the row.
|
|
if (!$table->check()) {
|
|
throw new Exception($table->getError(), 500);
|
|
return false;
|
|
}
|
|
|
|
// Store the row.
|
|
if (!$table->store()) {
|
|
throw new Exception($table->getError(), 500);
|
|
return false;
|
|
}
|
|
}
|
|
|
|
// Clean the cache
|
|
$this->cleanCache();
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
public function increaseOrdering($categoryId) {
|
|
|
|
$ordering = 1;
|
|
$this->_db->setQuery('SELECT MAX(ordering) FROM #__phocadownload WHERE catid='.(int)$categoryId);
|
|
$max = $this->_db->loadResult();
|
|
$ordering = $max + 1;
|
|
return $ordering;
|
|
}
|
|
/*
|
|
function copyQuick($cid) {
|
|
$table = $this->getTable();
|
|
|
|
|
|
foreach ($cid as $id) {
|
|
$table->load($id);
|
|
|
|
// Find last ordering
|
|
$this->_db->setQuery('SELECT MAX(ordering) FROM #__phocadownload WHERE catid='.(int)$table->catid);
|
|
$max = $this->_db->loadResult();
|
|
$table->ordering = $max+1;
|
|
// End Ordering
|
|
$table->id = null;
|
|
$table->hits = 0;
|
|
|
|
if ( !$table->check() ) {
|
|
throw new Exception($this->_db->getErrorMsg(), 500);
|
|
return false;
|
|
}
|
|
if ( !$table->store() ) {
|
|
throw new Exception($this->_db->getErrorMsg(), 500);
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}*/
|
|
|
|
}
|
|
?>
|