2019-07-15 20:00:46 +00:00
|
|
|
<?php
|
2021-03-05 03:08:47 +00:00
|
|
|
/**
|
|
|
|
* @package Joomla.Component.Builder
|
|
|
|
*
|
|
|
|
* @created 30th April, 2015
|
2022-07-09 15:45:08 +00:00
|
|
|
* @author Llewellyn van der Merwe <https://dev.vdm.io>
|
|
|
|
* @git Joomla Component Builder <https://git.vdm.dev/joomla/Component-Builder>
|
2021-03-05 03:08:47 +00:00
|
|
|
* @copyright Copyright (C) 2015 Vast Development Method. All rights reserved.
|
|
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
// No direct access to this file
|
|
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
|
2024-03-02 20:10:30 +00:00
|
|
|
use Joomla\CMS\Factory;
|
|
|
|
use Joomla\CMS\Language\Text;
|
2022-05-25 08:30:55 +00:00
|
|
|
use Joomla\CMS\MVC\Controller\AdminController;
|
2021-03-05 03:08:47 +00:00
|
|
|
use Joomla\Utilities\ArrayHelper;
|
2024-03-02 20:10:30 +00:00
|
|
|
use Joomla\CMS\Router\Route;
|
|
|
|
use Joomla\CMS\Session\Session;
|
2023-10-18 07:26:30 +00:00
|
|
|
use VDM\Joomla\Utilities\StringHelper;
|
2024-04-27 13:45:07 +00:00
|
|
|
use Joomla\CMS\Uri\Uri;
|
2021-03-05 03:08:47 +00:00
|
|
|
|
|
|
|
/**
|
2022-05-25 08:30:55 +00:00
|
|
|
* Joomla_plugins Admin Controller
|
2021-03-05 03:08:47 +00:00
|
|
|
*/
|
2022-05-25 08:30:55 +00:00
|
|
|
class ComponentbuilderControllerJoomla_plugins extends AdminController
|
2021-03-05 03:08:47 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The prefix to use with controller messages.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
* @since 1.6
|
|
|
|
*/
|
|
|
|
protected $text_prefix = 'COM_COMPONENTBUILDER_JOOMLA_PLUGINS';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Method to get a model object, loading it if required.
|
|
|
|
*
|
|
|
|
* @param string $name The model name. Optional.
|
|
|
|
* @param string $prefix The class prefix. Optional.
|
|
|
|
* @param array $config Configuration array for model. Optional.
|
|
|
|
*
|
|
|
|
* @return JModelLegacy The model.
|
|
|
|
*
|
|
|
|
* @since 1.6
|
|
|
|
*/
|
|
|
|
public function getModel($name = 'Joomla_plugin', $prefix = 'ComponentbuilderModel', $config = array('ignore_request' => true))
|
|
|
|
{
|
|
|
|
return parent::getModel($name, $prefix, $config);
|
2019-07-15 20:00:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2024-07-08 20:53:46 +00:00
|
|
|
* Runs the expansion module.
|
2019-07-15 20:00:46 +00:00
|
|
|
*
|
2024-07-08 20:53:46 +00:00
|
|
|
* This function performs several checks and operations:
|
|
|
|
* 1. It verifies the authenticity of the request to prevent request forgery.
|
|
|
|
* 2. It checks whether the current user has the necessary permissions to run the expansion module.
|
|
|
|
* 3. If the user is authorized, it attempts to run the expansion via an API call.
|
|
|
|
* 4. Depending on the result of the expansion operation, it sets the appropriate success or error message.
|
|
|
|
* 5. It redirects the user to a specified URL with the result message and status.
|
|
|
|
*
|
|
|
|
* @return bool True on successful expansion, false on failure.
|
2019-07-15 20:00:46 +00:00
|
|
|
*/
|
|
|
|
public function runExpansion()
|
|
|
|
{
|
|
|
|
// Check for request forgeries
|
2024-07-08 20:53:46 +00:00
|
|
|
Session::checkToken() or die(Text::_('JINVALID_TOKEN'));
|
|
|
|
|
2019-07-15 20:00:46 +00:00
|
|
|
// check if user has the right
|
2024-03-02 20:10:30 +00:00
|
|
|
$user = Factory::getUser();
|
2024-07-08 20:53:46 +00:00
|
|
|
|
2019-07-15 20:00:46 +00:00
|
|
|
// set page redirect
|
2024-04-27 13:45:07 +00:00
|
|
|
$redirect_url = Route::_('index.php?option=com_componentbuilder&view=joomla_plugins', false);
|
2024-07-08 20:53:46 +00:00
|
|
|
|
2019-07-15 20:00:46 +00:00
|
|
|
// set massage
|
2024-03-02 20:10:30 +00:00
|
|
|
$message = Text::_('COM_COMPONENTBUILDER_YOU_DO_NOT_HAVE_PERMISSION_TO_RUN_THE_EXPANSION_MODULE');
|
2024-07-08 20:53:46 +00:00
|
|
|
|
2019-07-15 20:00:46 +00:00
|
|
|
// check if this user has the right to run expansion
|
|
|
|
if($user->authorise('joomla_plugins.run_expansion', 'com_componentbuilder'))
|
|
|
|
{
|
|
|
|
// set massage
|
2024-03-02 20:10:30 +00:00
|
|
|
$message = Text::_('COM_COMPONENTBUILDER_EXPANSION_FAILED_PLEASE_CHECK_YOUR_SETTINGS_IN_THE_GLOBAL_OPTIONS_OF_JCB_UNDER_THE_DEVELOPMENT_METHOD_TAB');
|
2024-07-08 20:53:46 +00:00
|
|
|
|
2019-07-15 20:00:46 +00:00
|
|
|
// run expansion via API
|
2024-04-27 13:45:07 +00:00
|
|
|
$result = ComponentbuilderHelper::getFileContents(Uri::root() . 'index.php?option=com_componentbuilder&task=api.expand');
|
2024-07-08 20:53:46 +00:00
|
|
|
|
2019-07-15 20:00:46 +00:00
|
|
|
// is there a message returned
|
2023-10-18 07:26:30 +00:00
|
|
|
if (!is_numeric($result) && StringHelper::check($result))
|
2019-07-15 20:00:46 +00:00
|
|
|
{
|
|
|
|
$this->setRedirect($redirect_url, $result);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
elseif (is_numeric($result) && 1 == $result)
|
|
|
|
{
|
2024-03-02 20:10:30 +00:00
|
|
|
$message = Text::_('COM_COMPONENTBUILDER_BTHE_EXPANSION_WAS_SUCCESSFULLYB_TO_SEE_MORE_INFORMATION_CHANGE_THE_BRETURN_OPTIONS_FOR_BUILDB_TO_BDISPLAY_MESSAGEB_IN_THE_GLOBAL_OPTIONS_OF_JCB_UNDER_THE_DEVELOPMENT_METHOD_TABB');
|
2019-07-15 20:00:46 +00:00
|
|
|
$this->setRedirect($redirect_url, $message, 'message');
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2024-07-08 20:53:46 +00:00
|
|
|
|
2019-07-15 20:00:46 +00:00
|
|
|
$this->setRedirect($redirect_url, $message, 'error');
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get Boilerplate
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function getBoilerplate()
|
|
|
|
{
|
|
|
|
// Check for request forgeries
|
2024-03-02 20:10:30 +00:00
|
|
|
Session::checkToken() or jexit(Text::_('JINVALID_TOKEN'));
|
2019-07-15 20:00:46 +00:00
|
|
|
// check if user has the right
|
2024-03-02 20:10:30 +00:00
|
|
|
$user = Factory::getUser();
|
2019-07-15 20:00:46 +00:00
|
|
|
// set page redirect
|
2024-04-27 13:45:07 +00:00
|
|
|
$redirect_url = Route::_('index.php?option=com_componentbuilder&view=joomla_plugins', false);
|
2019-07-15 20:00:46 +00:00
|
|
|
// set massage
|
2024-03-02 20:10:30 +00:00
|
|
|
$message = Text::_('COM_COMPONENTBUILDER_YOU_DO_NOT_HAVE_PERMISSION_TO_RUN_THE_GET_BOILERPLATE_MODULE');
|
2019-07-15 20:00:46 +00:00
|
|
|
// check if this user has the right to run expansion
|
|
|
|
if($user->authorise('joomla_plugin.get_boilerplate', 'com_componentbuilder'))
|
|
|
|
{
|
|
|
|
// set massage
|
2024-03-02 20:10:30 +00:00
|
|
|
$message = Text::_('COM_COMPONENTBUILDER_GETTING_JOOMLA_PLUGIN_BOILERPLATE_FAILED_IF_THE_ISSUE_CONTINUES_INFORM_YOUR_SYSTEM_ADMINISTRATOR');
|
2019-07-15 20:00:46 +00:00
|
|
|
// Get the model
|
|
|
|
$model = $this->getModel('joomla_plugins');
|
|
|
|
// check if there is any selections
|
|
|
|
if (!$model->getBoilerplate())
|
|
|
|
{
|
2024-03-02 20:10:30 +00:00
|
|
|
$message = '<b>' . Text::_('COM_COMPONENTBUILDER_GETTING_JOOMLA_PLUGIN_BOILERPLATE_WAS_SUCCESSFULLY') . '</b>';
|
2019-07-15 20:00:46 +00:00
|
|
|
$this->setRedirect($redirect_url, $message, 'message');
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$this->setRedirect($redirect_url, $message, 'error');
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-07-16 23:15:42 +00:00
|
|
|
public function openClassMethods()
|
|
|
|
{
|
|
|
|
// Check for request forgeries
|
2024-03-02 20:10:30 +00:00
|
|
|
Session::checkToken() or die(Text::_('JINVALID_TOKEN'));
|
2019-07-16 23:15:42 +00:00
|
|
|
// redirect to the libraries
|
2024-03-02 20:10:30 +00:00
|
|
|
$this->setRedirect(Route::_('index.php?option=com_componentbuilder&view=class_methods', false));
|
2019-07-16 23:15:42 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function openClassProperties()
|
|
|
|
{
|
|
|
|
// Check for request forgeries
|
2024-03-02 20:10:30 +00:00
|
|
|
Session::checkToken() or die(Text::_('JINVALID_TOKEN'));
|
2019-07-16 23:15:42 +00:00
|
|
|
// redirect to the libraries
|
2024-03-02 20:10:30 +00:00
|
|
|
$this->setRedirect(Route::_('index.php?option=com_componentbuilder&view=class_properties', false));
|
2019-07-16 23:15:42 +00:00
|
|
|
return;
|
2021-03-05 03:08:47 +00:00
|
|
|
}
|
2023-10-18 07:26:30 +00:00
|
|
|
}
|