2012-06-02 21:18:29 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @author Daniel Dimitrov - compojoom.com
|
|
|
|
* @date: 02.06.12
|
|
|
|
*
|
|
|
|
* @copyright Copyright (C) 2008 - 2012 compojoom.com . All rights reserved.
|
|
|
|
* @license GNU General Public License version 2 or later; see LICENSE
|
|
|
|
*/
|
|
|
|
|
|
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
|
|
|
|
jimport('joomla.filesystem');
|
|
|
|
jimport('joomla.filesystem.archive');
|
|
|
|
|
|
|
|
class jedcheckerControllerUploads extends JController
|
|
|
|
{
|
2012-06-03 19:00:14 +00:00
|
|
|
public function __construct()
|
|
|
|
{
|
2012-06-02 21:18:29 +00:00
|
|
|
$this->path = JPATH_COMPONENT_ADMINISTRATOR . '/tmp/';
|
2012-06-03 19:00:14 +00:00
|
|
|
$this->pathArchive = $this->path . 'arhives/';
|
|
|
|
$this->pathUnzipped = $this->path . 'unzipped/';
|
2012-06-02 21:18:29 +00:00
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* basic upload
|
|
|
|
* @return bool
|
|
|
|
*/
|
2012-06-03 19:00:14 +00:00
|
|
|
public function upload()
|
|
|
|
{
|
2012-06-02 21:18:29 +00:00
|
|
|
$file = JRequest::getVar('extension', '', 'files', 'array');
|
2012-06-03 19:00:14 +00:00
|
|
|
if ($file['tmp_name']) {
|
|
|
|
$path = $this->pathArchive;
|
2012-06-02 21:18:29 +00:00
|
|
|
$filepath = $path . strtolower($file['name']);
|
2012-06-03 19:00:14 +00:00
|
|
|
// let us remove all previous uploads
|
|
|
|
$archiveFiles = JFolder::files($path);
|
|
|
|
|
|
|
|
foreach ($archiveFiles as $archive) {
|
|
|
|
if (!JFile::delete($this->pathArchive . $archive)) {
|
|
|
|
echo 'could not delete' . $archive;
|
|
|
|
}
|
2012-06-02 21:18:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$object_file = new JObject($file);
|
|
|
|
$object_file->filepath = $filepath;
|
2012-06-03 19:00:14 +00:00
|
|
|
$file = (array)$object_file;
|
2012-06-02 21:18:29 +00:00
|
|
|
|
|
|
|
// let us try to upload
|
2012-06-03 19:00:14 +00:00
|
|
|
if (!JFile::upload($file['tmp_name'], $file['filepath'])) {
|
2012-06-02 21:18:29 +00:00
|
|
|
// Error in upload
|
|
|
|
JError::raiseWarning(100, JText::_('COM_JEDCHECKER_ERROR_UNABLE_TO_UPLOAD_FILE'));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* unzip the file
|
|
|
|
* @return bool
|
|
|
|
*/
|
2012-06-03 19:00:14 +00:00
|
|
|
public function unzip()
|
|
|
|
{
|
|
|
|
|
|
|
|
// let us remove all previous unzipped files
|
|
|
|
$folders = JFolder::folders($this->pathUnzipped);
|
|
|
|
foreach ($folders as $folder) {
|
|
|
|
JFolder::delete($this->pathUnzipped . $folder);
|
|
|
|
}
|
2012-06-02 21:18:29 +00:00
|
|
|
|
|
|
|
|
2012-06-03 19:00:14 +00:00
|
|
|
$file = JFolder::files($this->pathArchive);
|
|
|
|
$result = JArchive::extract($this->pathArchive . $file[0], $this->pathUnzipped . $file[0]);
|
|
|
|
|
|
|
|
if ($result) {
|
|
|
|
// scan unzipped folders if we find zip file -> unzip them as well
|
|
|
|
$this->unzipAll($this->pathUnzipped . $file[0]);
|
|
|
|
}
|
2012-06-02 21:18:29 +00:00
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
2012-06-03 19:00:14 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Recursively go through each folder and extract the archives
|
|
|
|
*
|
|
|
|
* @param $start
|
|
|
|
*/
|
|
|
|
public function unzipAll($start)
|
|
|
|
{
|
|
|
|
$iterator = new RecursiveDirectoryIterator($start);
|
|
|
|
|
|
|
|
foreach ($iterator as $file) {
|
|
|
|
if ($file->isFile()) {
|
|
|
|
$extension = $file->getExtension();
|
|
|
|
if ($extension == 'zip') {
|
|
|
|
$unzip = $file->getPath() . '/' . $file->getBasename('.' . $extension);
|
|
|
|
$result = JArchive::extract($file->getPathname(), $unzip);
|
|
|
|
// delete the archive once we extract it
|
|
|
|
if ($result) {
|
|
|
|
JFile::delete($file->getPathname());
|
|
|
|
|
|
|
|
// now check the new extracted folder for archive files
|
|
|
|
$this->unzipAll($unzip);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$this->unzipAll($file->getPathname());
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-06-02 21:18:29 +00:00
|
|
|
}
|