2012-06-02 21:18:29 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2019-03-09 19:44:14 +00:00
|
|
|
* @package Joomla.JEDChecker
|
2012-06-02 21:18:29 +00:00
|
|
|
*
|
2019-03-10 16:09:42 +00:00
|
|
|
* @copyright Copyright (C) 2017 - 2019 Open Source Matters, Inc. All rights reserved.
|
|
|
|
* Copyright (C) 2008 - 2016 compojoom.com . All rights reserved.
|
2019-03-10 08:49:52 +00:00
|
|
|
* @author Daniel Dimitrov <daniel@compojoom.com>
|
|
|
|
*
|
2019-03-09 19:44:14 +00:00
|
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
2012-06-02 21:18:29 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
|
2012-12-13 10:08:35 +00:00
|
|
|
jimport('joomla.application.component.viewlegacy');
|
2012-06-02 21:18:29 +00:00
|
|
|
|
2013-11-05 19:23:12 +00:00
|
|
|
/**
|
|
|
|
* Class JedcheckerViewUploads
|
|
|
|
*
|
|
|
|
* @since 1.0
|
|
|
|
*/
|
|
|
|
class JedcheckerViewUploads extends JViewLegacy
|
2012-06-09 13:34:32 +00:00
|
|
|
{
|
2013-11-05 19:23:12 +00:00
|
|
|
/**
|
|
|
|
* Display method
|
|
|
|
*
|
|
|
|
* @param string $tpl - the template
|
|
|
|
*
|
|
|
|
* @return mixed|void
|
|
|
|
*/
|
|
|
|
public function display($tpl = null)
|
|
|
|
{
|
2019-03-09 19:44:14 +00:00
|
|
|
$this->path = JFactory::getConfig()->get('tmp_path') . '/jed_checker';
|
|
|
|
|
2013-11-05 19:23:12 +00:00
|
|
|
$this->setToolbar();
|
2016-05-25 16:19:19 +00:00
|
|
|
$this->jsOptions['url'] = JUri::base();
|
2013-11-05 19:23:12 +00:00
|
|
|
$this->jsOptions['rules'] = $this->getRules();
|
|
|
|
parent::display($tpl);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the component rules
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getRules()
|
|
|
|
{
|
|
|
|
$rules = array();
|
2021-02-13 20:12:08 +00:00
|
|
|
$files = JFolder::files(JPATH_COMPONENT_ADMINISTRATOR . '/libraries/rules', '\.php$', false, false);
|
2013-11-05 19:23:12 +00:00
|
|
|
JLoader::discover('jedcheckerRules', JPATH_COMPONENT_ADMINISTRATOR . '/libraries/rules/');
|
2012-06-02 21:18:29 +00:00
|
|
|
|
2013-11-05 19:23:12 +00:00
|
|
|
foreach ($files as $file)
|
|
|
|
{
|
|
|
|
$rules[] = substr($file, 0, -4);
|
|
|
|
}
|
2012-06-02 21:18:29 +00:00
|
|
|
|
2013-11-05 19:23:12 +00:00
|
|
|
return $rules;
|
|
|
|
}
|
2012-07-06 23:45:06 +00:00
|
|
|
|
2013-11-05 19:23:12 +00:00
|
|
|
/**
|
|
|
|
* Creates the toolbar options
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function setToolbar()
|
|
|
|
{
|
2019-03-09 19:44:14 +00:00
|
|
|
if ($this->filesExist('unzipped'))
|
2013-11-05 19:23:12 +00:00
|
|
|
{
|
2021-02-03 15:31:53 +00:00
|
|
|
JToolbarHelper::custom('check', 'search', 'search', JText::_('COM_JEDCHECKER_TOOLBAR_CHECK'), false);
|
2013-11-05 19:23:12 +00:00
|
|
|
}
|
2012-07-06 23:45:06 +00:00
|
|
|
|
2019-03-09 19:44:14 +00:00
|
|
|
JToolbarHelper::title('JED checker');
|
|
|
|
if ( file_exists($this->path) )
|
2013-11-05 19:23:12 +00:00
|
|
|
{
|
2021-02-03 15:31:53 +00:00
|
|
|
JToolbarHelper::custom('uploads.clear', 'delete', 'delete', JText::_('COM_JEDCHECKER_TOOLBAR_CLEAR'), false);
|
2013-11-05 19:23:12 +00:00
|
|
|
}
|
2012-06-09 13:34:32 +00:00
|
|
|
|
2019-03-09 19:44:14 +00:00
|
|
|
if (JFactory::getUser()->authorise('core.admin', 'com_jedchecker'))
|
|
|
|
{
|
2016-05-25 16:19:19 +00:00
|
|
|
JToolbarHelper::preferences('com_jedchecker');
|
2016-02-15 23:20:06 +00:00
|
|
|
}
|
2013-11-05 19:23:12 +00:00
|
|
|
}
|
2012-06-24 07:50:50 +00:00
|
|
|
|
2013-11-05 19:23:12 +00:00
|
|
|
/**
|
|
|
|
* Checks if folder + files exist in the jed_checker tmp path
|
|
|
|
*
|
|
|
|
* @param string $type - action
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
private function filesExist($type)
|
|
|
|
{
|
|
|
|
$path = JFactory::getConfig()->get('tmp_path') . '/jed_checker/' . $type;
|
2012-06-24 07:50:50 +00:00
|
|
|
|
2013-11-05 19:23:12 +00:00
|
|
|
if (JFolder::exists($path))
|
|
|
|
{
|
2021-02-13 20:13:27 +00:00
|
|
|
if (JFolder::folders($path) || JFolder::files($path))
|
2013-11-05 19:23:12 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$local = JFactory::getConfig()->get('tmp_path') . '/jed_checker/local.txt';
|
2013-02-12 09:04:49 +00:00
|
|
|
|
2013-11-05 19:23:12 +00:00
|
|
|
if ($type == 'unzipped' && JFile::exists($local))
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2013-02-12 09:04:49 +00:00
|
|
|
|
2013-11-05 19:23:12 +00:00
|
|
|
return false;
|
|
|
|
}
|
2013-02-12 09:04:49 +00:00
|
|
|
}
|