Compare commits
43 Commits
Author | SHA1 | Date | |
---|---|---|---|
8cb648bf9c | |||
401affe08a | |||
3cfaeb4dde | |||
ea01dcc0b8 | |||
2365cf1c57 | |||
c92cb4b0d0 | |||
70d42261a7 | |||
40a2fdecbe | |||
a910d8c448 | |||
7bf3eb22f0 | |||
6f879fb7a9 | |||
3ba62566cb | |||
27db2531c7 | |||
d0c6b11fa7 | |||
8b06d00f25 | |||
2401bf12e6 | |||
1fbf5cb00d | |||
fe66535f92 | |||
e620d6e5bb | |||
541846c4a3 | |||
c8c193b356 | |||
36b4694d19 | |||
519c691633 | |||
91d2728f52 | |||
ddd2f3ccf2 | |||
4e0a558ac4 | |||
b6bc326716 | |||
cea50b82c6 | |||
7403dd1b6e | |||
3917d16655 | |||
c3070eab27 | |||
89eed794e8 | |||
1b2e120c22 | |||
659ef1ab64 | |||
624cc0685c | |||
f9c5e9500d | |||
2533ffb1da | |||
1fd40bf110 | |||
7d57be4bb8 | |||
9a3e3006e0 | |||
8365d6b722 | |||
7c97cb9fc1 | |||
57675da437 |
@ -8,33 +8,33 @@
|
||||
* @copyright Copyright (C) 2015 Vast Development Method. All rights reserved.
|
||||
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||||
*/
|
||||
namespace VDM\Plugin\Extension\ComponentbuilderPrivacyCompiler\Extension;
|
||||
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
JLoader::register('ComponentbuilderHelper', JPATH_ADMINISTRATOR . '/components/com_componentbuilder/helpers/componentbuilder.php');
|
||||
|
||||
use Joomla\CMS\Factory;
|
||||
use Joomla\CMS\Language\Text;
|
||||
use Joomla\CMS\Application\CMSApplication;
|
||||
use Joomla\CMS\Plugin\CMSPlugin;
|
||||
use Joomla\Registry\Registry;
|
||||
use VDM\Joomla\Utilities\JsonHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper;
|
||||
use VDM\Joomla\Componentbuilder\Compiler\Factory as CompilerFactory;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use VDM\Joomla\Componentbuilder\Compiler\Factory as CFactory;
|
||||
use VDM\Joomla\Componentbuilder\Compiler\Utilities\Placefix;
|
||||
use VDM\Joomla\Componentbuilder\Compiler\Utilities\Indent;
|
||||
use VDM\Joomla\Componentbuilder\Compiler\Utilities\Line;
|
||||
use VDM\Joomla\Componentbuilder\Compiler\Utilities\Placefix;
|
||||
use Joomla\Event\SubscriberInterface;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
|
||||
// No direct access to this file
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
use VDM\Joomla\Utilities\JsonHelper;
|
||||
use VDM\Joomla\Utilities\ArrayHelper;
|
||||
use VDM\Joomla\Utilities\StringHelper;
|
||||
use Joomla\CMS\Component\ComponentHelper;
|
||||
|
||||
/**
|
||||
* Extension - Componentbuilder Privacy Compiler plugin.
|
||||
*
|
||||
* @package ComponentbuilderPrivacyCompiler
|
||||
* @since 3.0.0
|
||||
* @since 1.2.4
|
||||
*/
|
||||
final class ComponentbuilderPrivacyCompiler extends CMSPlugin implements SubscriberInterface
|
||||
class PlgExtensionComponentbuilderPrivacyCompiler extends CMSPlugin
|
||||
{
|
||||
/**
|
||||
* Affects constructor behavior. If true, language files will be loaded automatically.
|
||||
@ -99,25 +99,15 @@ final class ComponentbuilderPrivacyCompiler extends CMSPlugin implements Subscri
|
||||
{
|
||||
$view->addpermissions = array_values($view->addpermissions);
|
||||
// add the new permissions
|
||||
$view->addpermissions[] = [
|
||||
'action' => 'view.privacy.delete',
|
||||
'implementation' => 3,
|
||||
'title' => $view->name_list . ' Privacy Delete',
|
||||
'description' => ' Allows the users in this group to remove their personal data in ' . $view->name_list . ' via the Joomla privacy suite.'
|
||||
];
|
||||
$view->addpermissions[] = [
|
||||
'action' => 'view.privacy.access',
|
||||
'implementation' => 3,
|
||||
'title' => $view->name_list . ' Privacy Access',
|
||||
'description' => ' Allows the users in this group to access their personal data in ' . $view->name_list . ' via the Joomla privacy suite.'
|
||||
];
|
||||
$view->addpermissions[] = array('action' => 'view.privacy.delete', 'implementation' => 3, 'title' => $view->name_list . ' Privacy Delete', 'description' => ' Allows the users in this group to remove their personal data in ' . $view->name_list . ' via the Joomla privacy suite.');
|
||||
$view->addpermissions[] = array('action' => 'view.privacy.access', 'implementation' => 3, 'title' => $view->name_list . ' Privacy Access', 'description' => ' Allows the users in this group to access their personal data in ' . $view->name_list . ' via the Joomla privacy suite.');
|
||||
// convert back to json
|
||||
$view->addpermissions = json_encode($view->addpermissions, JSON_FORCE_OBJECT);
|
||||
}
|
||||
// add placeholders to view if not already set
|
||||
if (!isset($this->activeViews[$view->id]->placeholders))
|
||||
{
|
||||
$this->activeViews[$view->id]->placeholders = CompilerFactory::_('Placeholder')->active;
|
||||
$this->activeViews[$view->id]->placeholders = CFactory::_('Placeholder')->active;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -134,7 +124,7 @@ final class ComponentbuilderPrivacyCompiler extends CMSPlugin implements Subscri
|
||||
// check if this component needs a privacy plugin loaded
|
||||
if ($this->loadPrivacy)
|
||||
{
|
||||
$plugin = PluginHelper::getPlugin('content', 'componentbuilderprivacytabs');
|
||||
$plugin = JPluginHelper::getPlugin('content', 'componentbuilderprivacytabs');
|
||||
// check if this is json
|
||||
if (isset($plugin->params) && JsonHelper::check($plugin->params))
|
||||
{
|
||||
@ -147,11 +137,11 @@ final class ComponentbuilderPrivacyCompiler extends CMSPlugin implements Subscri
|
||||
if (isset($plugin->params['plugin']) && $plugin->params['plugin'] > 0)
|
||||
{
|
||||
// if linked it will only load it once
|
||||
CompilerFactory::_('Joomlaplugin.Data')->set($plugin->params['plugin']);
|
||||
CFactory::_('Joomlaplugin.Data')->set($plugin->params['plugin']);
|
||||
}
|
||||
else
|
||||
{
|
||||
$this->getApplication()->enqueueMessage(Text::_('PLG_EXTENSION_COMPONENTBUILDERPRIVACYCOMPILER_YOU_DO_NOT_HAVE_A_GLOBAL_PRIVACY_PLUGIN_SETUP_SO_THE_INTEGRATION_WITH_JOOMLA_PRIVACY_SUITE_COULD_NOT_BE_BUILD'), 'Warning');
|
||||
Factory::getApplication()->enqueueMessage(Text::_('PLG_EXTENSION_COMPONENTBUILDERPRIVACYCOMPILER_YOU_DO_NOT_HAVE_A_GLOBAL_PRIVACY_PLUGIN_SETUP_SO_THE_INTEGRATION_WITH_JOOMLA_PRIVACY_SUITE_COULD_NOT_BE_BUILD'), 'Warning');
|
||||
$this->loadPrivacy= false;
|
||||
}
|
||||
}
|
||||
@ -170,8 +160,8 @@ final class ComponentbuilderPrivacyCompiler extends CMSPlugin implements Subscri
|
||||
if ($this->loadPrivacy && ArrayHelper::check($this->activeViews))
|
||||
{
|
||||
// get compiler defaults
|
||||
$strictFieldExportPermissions = CompilerFactory::_('Config')->get('permission_strict_per_field', false);
|
||||
$exportTextOnly = CompilerFactory::_('Config')->get('export_text_only', 1);
|
||||
$strictFieldExportPermissions = CFactory::_('Config')->get('permission_strict_per_field', false);
|
||||
$exportTextOnly = CFactory::_('Config')->get('export_text_only', 1);
|
||||
|
||||
// load the getPrivacyExport functions
|
||||
foreach ($this->activeViews as $id => &$view)
|
||||
@ -179,18 +169,18 @@ final class ComponentbuilderPrivacyCompiler extends CMSPlugin implements Subscri
|
||||
// set permissions based on view
|
||||
if (isset($view->params['privacy']['permissions']))
|
||||
{
|
||||
CompilerFactory::_('Config')->set('permission_strict_per_field', (bool) $view->params['privacy']['permissions']);
|
||||
CFactory::_('Config')->set('permission_strict_per_field', (bool) $view->params['privacy']['permissions']);
|
||||
}
|
||||
|
||||
// allow text only export
|
||||
CompilerFactory::_('Config')->set('export_text_only', 1);
|
||||
CFactory::_('Config')->set('export_text_only', 1);
|
||||
|
||||
// set view list name
|
||||
$viewName_list = StringHelper::safe($view->name_list);
|
||||
// set view single name
|
||||
$viewName_single = StringHelper::safe($view->name_single);
|
||||
// load the function
|
||||
CompilerFactory::_('Compiler.Builder.Content.Multi')->add($viewName_list . '|MODELEXPORTMETHOD',
|
||||
CFactory::_('Compiler.Builder.Content.Multi')->add($viewName_list . '|MODELEXPORTMETHOD',
|
||||
$compiler->setGetItemsModelMethod(
|
||||
$viewName_single,
|
||||
$viewName_list,
|
||||
@ -202,7 +192,7 @@ final class ComponentbuilderPrivacyCompiler extends CMSPlugin implements Subscri
|
||||
)
|
||||
);
|
||||
// get the permissions building values for later if needed
|
||||
if (CompilerFactory::_('Config')->get('permission_strict_per_field', false) &&
|
||||
if (CFactory::_('Config')->get('permission_strict_per_field', false) &&
|
||||
isset($compiler->permissionFields[$viewName_single]) &&
|
||||
ArrayHelper::check($compiler->permissionFields[$viewName_single]))
|
||||
{
|
||||
@ -211,8 +201,8 @@ final class ComponentbuilderPrivacyCompiler extends CMSPlugin implements Subscri
|
||||
}
|
||||
|
||||
// set compiler defaults
|
||||
CompilerFactory::_('Config')->set('permission_strict_per_field', $strictFieldExportPermissions);
|
||||
CompilerFactory::_('Config')->set('export_text_only', $exportTextOnly);
|
||||
CFactory::_('Config')->set('permission_strict_per_field', $strictFieldExportPermissions);
|
||||
CFactory::_('Config')->set('export_text_only', $exportTextOnly);
|
||||
|
||||
// add helper classes
|
||||
$helper_strings = ['CUSTOM_HELPER_SCRIPT', 'SITE_CUSTOM_HELPER_SCRIPT', 'BOTH_CUSTOM_HELPER_SCRIPT'];
|
||||
@ -224,7 +214,7 @@ final class ComponentbuilderPrivacyCompiler extends CMSPlugin implements Subscri
|
||||
|
||||
foreach ($helper_strings as $helper)
|
||||
{
|
||||
if (($helper_content = CompilerFactory::_('Compiler.Builder.Content.One')->get($helper)) !== null &&
|
||||
if (($helper_content = CFactory::_('Compiler.Builder.Content.One')->get($helper)) !== null &&
|
||||
StringHelper::check($helper_content))
|
||||
{
|
||||
foreach ($privacy_events as $privacy_event => &$add)
|
||||
@ -239,8 +229,8 @@ final class ComponentbuilderPrivacyCompiler extends CMSPlugin implements Subscri
|
||||
}
|
||||
|
||||
// add the events still needed
|
||||
CompilerFactory::_('Compiler.Builder.Content.One')->add('BOTH_CUSTOM_HELPER_SCRIPT',
|
||||
CompilerFactory::_('Placeholder')->update_($this->getHelperMethod($privacy_events))
|
||||
CFactory::_('Compiler.Builder.Content.One')->add('BOTH_CUSTOM_HELPER_SCRIPT',
|
||||
CFactory::_('Placeholder')->update_($this->getHelperMethod($privacy_events))
|
||||
);
|
||||
}
|
||||
}
|
||||
@ -258,7 +248,7 @@ final class ComponentbuilderPrivacyCompiler extends CMSPlugin implements Subscri
|
||||
{
|
||||
foreach($this->languageArray as $key => $string)
|
||||
{
|
||||
CompilerFactory::_('Language')->set('site', $key, $string);
|
||||
CFactory::_('Language')->set('site', $key, $string);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -309,7 +299,7 @@ final class ComponentbuilderPrivacyCompiler extends CMSPlugin implements Subscri
|
||||
$methods .= PHP_EOL . Indent::_(1) . " * @param PrivacyPlugin \$plugin The plugin being processed";
|
||||
$methods .= PHP_EOL . Indent::_(1) . " * @param PrivacyRemovalStatus \$status The status being set";
|
||||
$methods .= PHP_EOL . Indent::_(1) . " * @param PrivacyTableRequest \$request The request record being processed";
|
||||
$methods .= PHP_EOL . Indent::_(1) . " * @param Joomla__"."_effdaf6d_2275_425d_9f52_d4952e564d34___Power \$user The user account associated with this request if available";
|
||||
$methods .= PHP_EOL . Indent::_(1) . " * @param JUser \$user The user account associated with this request if available";
|
||||
$methods .= PHP_EOL . Indent::_(1) . " *";
|
||||
$methods .= PHP_EOL . Indent::_(1) . " * @return PrivacyRemovalStatus";
|
||||
$methods .= PHP_EOL . Indent::_(1) . " */";
|
||||
@ -326,16 +316,16 @@ final class ComponentbuilderPrivacyCompiler extends CMSPlugin implements Subscri
|
||||
$methods .= PHP_EOL . Indent::_(2) . "//" . Line::_(__Line__, __Class__) . " Check if user has permission to delete " . $view->name_list;
|
||||
// set the if statement based on the permission builder
|
||||
$methods .= PHP_EOL . Indent::_(2) . "if (!\$user->authorise('"
|
||||
. CompilerFactory::_('Compiler.Creator.Permission')->getAction($viewName_single, 'core.delete')
|
||||
. CFactory::_('Compiler.Creator.Permission')->getAction($viewName_single, 'core.delete')
|
||||
. "', 'com_" . Placefix::_("component") . "') && !\$user->authorise('"
|
||||
. CompilerFactory::_('Compiler.Creator.Permission')->getAction($viewName_single, 'core.privacy.delete')
|
||||
. CFactory::_('Compiler.Creator.Permission')->getAction($viewName_single, 'core.privacy.delete')
|
||||
. "', 'com_" . Placefix::_("component") . "'))";
|
||||
$methods .= PHP_EOL . Indent::_(2) . "{";
|
||||
// set language key
|
||||
$lang_key = $view->placeholders[Placefix::_("LANG_PREFIX")] . '_PRIVACY_CANT_REMOVE_' . $view->placeholders[Placefix::_("VIEWS")];
|
||||
// set language string
|
||||
$this->languageArray[$lang_key] = "You do not have permission to remove/delete ". $view->name_list . ".";
|
||||
$methods .= PHP_EOL . Indent::_(3) . "\$reasons[] = Joomla__" . "_ba6326ef_cb79_4348_80f4_ab086082e3c5___Power::_('" . $lang_key . "');";
|
||||
$methods .= PHP_EOL . Indent::_(3) . "\$reasons[] = JTe" . "xt::_('" . $lang_key . "');";
|
||||
$methods .= PHP_EOL . Indent::_(2) . "}";
|
||||
// set language key
|
||||
$lang_key = $view->placeholders[Placefix::_("LANG_PREFIX")] . '_PRIVACY_CANT_REMOVE_CONTACT_SUPPORT';
|
||||
@ -346,7 +336,7 @@ final class ComponentbuilderPrivacyCompiler extends CMSPlugin implements Subscri
|
||||
$methods .= PHP_EOL . Indent::_(3) . "\$status->canRemove = false;";
|
||||
// set language string
|
||||
$this->languageArray[$lang_key] = 'Please contact support for more details.';
|
||||
$methods .= PHP_EOL . Indent::_(3) . "\$status->reason = implode(' ' . PHP_EOL, \$reasons) . ' ' . PHP_EOL . Joomla__" . "_ba6326ef_cb79_4348_80f4_ab086082e3c5___Power::_('" . $lang_key . "');";
|
||||
$methods .= PHP_EOL . Indent::_(3) . "\$status->reason = implode(' ' . PHP_EOL, \$reasons) . ' ' . PHP_EOL . JTe" . "xt::_('" . $lang_key . "');";
|
||||
$methods .= PHP_EOL . Indent::_(2) . "}";
|
||||
$methods .= PHP_EOL . Indent::_(2) . "return \$status;";
|
||||
$methods .= PHP_EOL . Indent::_(1) . "}" . PHP_EOL;
|
||||
@ -368,7 +358,7 @@ final class ComponentbuilderPrivacyCompiler extends CMSPlugin implements Subscri
|
||||
$methods .= PHP_EOL . Indent::_(1) . " * @param PrivacyPlugin \$plugin The plugin being processed";
|
||||
$methods .= PHP_EOL . Indent::_(1) . " * @param DomainArray \$domains The array of domains";
|
||||
$methods .= PHP_EOL . Indent::_(1) . " * @param PrivacyTableRequest \$request The request record being processed";
|
||||
$methods .= PHP_EOL . Indent::_(1) . " * @param Joomla__"."_effdaf6d_2275_425d_9f52_d4952e564d34___Power \$user The user account associated with this request if available";
|
||||
$methods .= PHP_EOL . Indent::_(1) . " * @param JUser \$user The user account associated with this request if available";
|
||||
$methods .= PHP_EOL . Indent::_(1) . " *";
|
||||
$methods .= PHP_EOL . Indent::_(1) . " * @return PrivacyExportDomain[]";
|
||||
$methods .= PHP_EOL . Indent::_(1) . " */";
|
||||
@ -384,9 +374,9 @@ final class ComponentbuilderPrivacyCompiler extends CMSPlugin implements Subscri
|
||||
$methods .= PHP_EOL . Indent::_(2) . "//" . Line::_(__Line__, __Class__) . " Check if user has permission to access " . $view->name_list;
|
||||
// set the if statement based on the permission builder
|
||||
$methods .= PHP_EOL . Indent::_(2) . "if (\$user->authorise('"
|
||||
. CompilerFactory::_('Compiler.Creator.Permission')->getGlobal($viewName_single, 'core.access')
|
||||
. CFactory::_('Compiler.Creator.Permission')->getGlobal($viewName_single, 'core.access')
|
||||
. "', 'com_" . Placefix::_("component") . "') || \$user->authorise('"
|
||||
. CompilerFactory::_('Compiler.Creator.Permission')->getGlobal($viewName_single, 'core.privacy.access')
|
||||
. CFactory::_('Compiler.Creator.Permission')->getGlobal($viewName_single, 'core.privacy.access')
|
||||
. "', 'com_" . Placefix::_("component") . "'))";
|
||||
$methods .= PHP_EOL . Indent::_(2) . "{";
|
||||
$methods .= PHP_EOL . Indent::_(3) . "//" . Line::_(__Line__, __Class__) . " Get " . $view->name_single . " domain";
|
||||
@ -406,7 +396,7 @@ final class ComponentbuilderPrivacyCompiler extends CMSPlugin implements Subscri
|
||||
$methods .= PHP_EOL . Indent::_(1) . "/**";
|
||||
$methods .= PHP_EOL . Indent::_(1) . " * Create the domain for the " . $view->name_single;
|
||||
$methods .= PHP_EOL . Indent::_(1) . " *";
|
||||
$methods .= PHP_EOL . Indent::_(1) . " * @param Joomla__"."_11accf54_fcb9_4ba0_a645_7c80ce14e224___Power \$user The Joomla__"."_11accf54_fcb9_4ba0_a645_7c80ce14e224___Power object to process";
|
||||
$methods .= PHP_EOL . Indent::_(1) . " * @param JTableUser \$user The JTableUser object to process";
|
||||
$methods .= PHP_EOL . Indent::_(1) . " *";
|
||||
$methods .= PHP_EOL . Indent::_(1) . " * @return PrivacyExportDomain";
|
||||
$methods .= PHP_EOL . Indent::_(1) . " */";
|
||||
@ -563,7 +553,7 @@ final class ComponentbuilderPrivacyCompiler extends CMSPlugin implements Subscri
|
||||
$methods .= PHP_EOL . Indent::_(1) . " * Removes the data associated with a remove information request";
|
||||
$methods .= PHP_EOL . Indent::_(1) . " *";
|
||||
$methods .= PHP_EOL . Indent::_(1) . " * @param PrivacyTableRequest \$request The request record being processed";
|
||||
$methods .= PHP_EOL . Indent::_(1) . " * @param Joomla__"."_effdaf6d_2275_425d_9f52_d4952e564d34___Power \$user The user account associated with this request if available";
|
||||
$methods .= PHP_EOL . Indent::_(1) . " * @param JUser \$user The user account associated with this request if available";
|
||||
$methods .= PHP_EOL . Indent::_(1) . " *";
|
||||
$methods .= PHP_EOL . Indent::_(1) . " * @return void";
|
||||
$methods .= PHP_EOL . Indent::_(1) . " */";
|
||||
@ -586,9 +576,9 @@ final class ComponentbuilderPrivacyCompiler extends CMSPlugin implements Subscri
|
||||
$methods .= PHP_EOL . Indent::_(2) . "//" . Line::_(__Line__, __Class__) . " Check if user has permission to delet " . $view->name_list;
|
||||
// set the if statement based on the permission builder
|
||||
$methods .= PHP_EOL . Indent::_(2) . "if (\$user->authorise('"
|
||||
. CompilerFactory::_('Compiler.Creator.Permission')->getAction($viewName_single, 'core.delete')
|
||||
. CFactory::_('Compiler.Creator.Permission')->getAction($viewName_single, 'core.delete')
|
||||
. "', 'com_" . Placefix::_("component") . "') || \$user->authorise('"
|
||||
. CompilerFactory::_('Compiler.Creator.Permission')->getAction($viewName_single, 'core.privacy.delete')
|
||||
. CFactory::_('Compiler.Creator.Permission')->getAction($viewName_single, 'core.privacy.delete')
|
||||
. "', 'com_" . Placefix::_("component") . "'))";
|
||||
$methods .= PHP_EOL . Indent::_(2) . "{";
|
||||
// check if this is a plain delete, or it is a Anonymize
|
||||
@ -637,7 +627,7 @@ final class ComponentbuilderPrivacyCompiler extends CMSPlugin implements Subscri
|
||||
}
|
||||
|
||||
$methods .= PHP_EOL . Indent::_(1) . " *";
|
||||
$methods .= PHP_EOL . Indent::_(1) . " * @param Joomla__"."_11accf54_fcb9_4ba0_a645_7c80ce14e224___Power \$user The Joomla__"."_11accf54_fcb9_4ba0_a645_7c80ce14e224___Power object to process";
|
||||
$methods .= PHP_EOL . Indent::_(1) . " * @param JTableUser \$user The JTableUser object to process";
|
||||
$methods .= PHP_EOL . Indent::_(1) . " *";
|
||||
$methods .= PHP_EOL . Indent::_(1) . " * @return void";
|
||||
$methods .= PHP_EOL . Indent::_(1) . " */";
|
||||
@ -748,7 +738,7 @@ final class ComponentbuilderPrivacyCompiler extends CMSPlugin implements Subscri
|
||||
if ($hasPermissional)
|
||||
{
|
||||
$methods .= PHP_EOL . PHP_EOL . Indent::_(3) . "//" . Line::_(__Line__, __Class__) . " Get global permissional control activation. (default is inactive)";
|
||||
$methods .= PHP_EOL . Indent::_(3) . "\$strict_permission_per_field = Joomla__" . "_aeb8e463_291f_4445_9ac4_34b637c12dbd___Power::getParams('com_" . Placefix::_("component") . "')->get('strict_permission_per_field', 0);";
|
||||
$methods .= PHP_EOL . Indent::_(3) . "\$strict_permission_per_field = ComponentHelper::getParams('com_" . Placefix::_("component") . "')->get('strict_permission_per_field', 0);";
|
||||
$methods .= PHP_EOL . Indent::_(3) . "if(\$strict_permission_per_field)";
|
||||
$methods .= PHP_EOL . Indent::_(3) . "{";
|
||||
$methods .= PHP_EOL . Indent::_(4) . "//" . Line::_(__Line__, __Class__) . " remove all fields that is not permitted to be changed";
|
||||
@ -829,21 +819,4 @@ final class ComponentbuilderPrivacyCompiler extends CMSPlugin implements Subscri
|
||||
$methods .= PHP_EOL . Indent::_(1) . "}" . PHP_EOL;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns an array of events this subscriber will listen to.
|
||||
*
|
||||
* @return array
|
||||
*
|
||||
* @since 5.0.0
|
||||
*/
|
||||
public static function getSubscribedEvents(): array
|
||||
{
|
||||
return [
|
||||
'jcb_ce_onBeforeModelViewData' => 'jcb_ce_onBeforeModelViewData',
|
||||
'jcb_ce_onAfterGet' => 'jcb_ce_onAfterGet',
|
||||
'jcb_ce_onBeforeUpdateFiles' => 'jcb_ce_onBeforeUpdateFiles',
|
||||
'jcb_ce_onBeforeSetLangFileData' => 'jcb_ce_onBeforeSetLangFileData'
|
||||
];
|
||||
}
|
||||
}
|
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<extension type="plugin" version="5.0" group="extension" method="upgrade">
|
||||
<extension type="plugin" version="3.10" group="extension" method="upgrade">
|
||||
<name>PLG_EXTENSION_COMPONENTBUILDERPRIVACYCOMPILER</name>
|
||||
<creationDate>7th November, 2024</creationDate>
|
||||
<author>Llewellyn van der Merwe</author>
|
||||
@ -7,8 +7,7 @@
|
||||
<authorUrl>https://dev.vdm.io</authorUrl>
|
||||
<copyright>Copyright (C) 2015 Vast Development Method. All rights reserved.</copyright>
|
||||
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
|
||||
<version>3.0.0</version>
|
||||
<namespace path="src">VDM\Plugin\Extension\ComponentbuilderPrivacyCompiler</namespace>
|
||||
<version>1.2.4</version>
|
||||
<description>PLG_EXTENSION_COMPONENTBUILDERPRIVACYCOMPILER_XML_DESCRIPTION</description>
|
||||
|
||||
<!-- Scripts to run on installation -->
|
||||
@ -16,17 +15,16 @@
|
||||
|
||||
<!-- Language files -->
|
||||
<languages folder="language">
|
||||
<language tag="en-GB">en-GB/plg_extension_componentbuilderprivacycompiler.ini</language>
|
||||
<language tag="en-GB">en-GB/plg_extension_componentbuilderprivacycompiler.sys.ini</language>
|
||||
<language tag="af-ZA">af-ZA/plg_extension_componentbuilderprivacycompiler.ini</language>
|
||||
<language tag="af-ZA">af-ZA/plg_extension_componentbuilderprivacycompiler.sys.ini</language>
|
||||
<language tag="en-GB">en-GB/en-GB.plg_extension_componentbuilderprivacycompiler.ini</language>
|
||||
<language tag="en-GB">en-GB/en-GB.plg_extension_componentbuilderprivacycompiler.sys.ini</language>
|
||||
<language tag="af-ZA">af-ZA/af-ZA.plg_extension_componentbuilderprivacycompiler.ini</language>
|
||||
<language tag="af-ZA">af-ZA/af-ZA.plg_extension_componentbuilderprivacycompiler.sys.ini</language>
|
||||
</languages>
|
||||
|
||||
<!-- Plugin files -->
|
||||
<files>
|
||||
<folder plugin="componentbuilderprivacycompiler">services</folder>
|
||||
<filename plugin="componentbuilderprivacycompiler">componentbuilderprivacycompiler.php</filename>
|
||||
<filename>index.html</filename>
|
||||
<folder>services</folder>
|
||||
<folder>src</folder>
|
||||
<folder>language</folder>
|
||||
</files>
|
||||
</extension>
|
@ -1,4 +1,4 @@
|
||||
PLG_EXTENSION_COMPONENTBUILDERPRIVACYCOMPILER="Extension - Componentbuilder Privacy Compiler"
|
||||
PLG_EXTENSION_COMPONENTBUILDERPRIVACYCOMPILER_DESCRIPTION="This plugin is used to build the privacy plugin for your component during compilation. To activate it you must first enable it here. Then open your JCB component global options, and under the Global tab, select this plugin in the Activate Compiler Plugins field.Also be sure to link your admin views to the privacy suite of Joomla via our other Content - Componentbuilder Privacy Tabs plugin."
|
||||
PLG_EXTENSION_COMPONENTBUILDERPRIVACYCOMPILER_XML_DESCRIPTION="<h1>Extension - Componentbuilder Privacy Compiler (v.3.0.0)</h1> <div style='clear: both;'></div><p>This plugin is used to build the privacy plugin for your component during compilation. To activate it you must first enable it here. Then open your JCB component global options, and under the Global tab, select this plugin in the Activate Compiler Plugins field.Also be sure to link your admin views to the privacy suite of Joomla via our other Content - Componentbuilder Privacy Tabs plugin.</p><p>Created by <a href='https://dev.vdm.io' target='_blank'>Llewellyn van der Merwe</a><br /><small>Development started 10th March, 2024</small></p>"
|
||||
PLG_EXTENSION_COMPONENTBUILDERPRIVACYCOMPILER_XML_DESCRIPTION="<h1>Extension - Componentbuilder Privacy Compiler (v.1.2.4)</h1> <div style='clear: both;'></div><p>This plugin is used to build the privacy plugin for your component during compilation. To activate it you must first enable it here. Then open your JCB component global options, and under the Global tab, select this plugin in the Activate Compiler Plugins field.Also be sure to link your admin views to the privacy suite of Joomla via our other Content - Componentbuilder Privacy Tabs plugin.</p><p>Created by <a href='https://dev.vdm.io' target='_blank'>Llewellyn van der Merwe</a><br /><small>Development started 17th August, 2019</small></p>"
|
||||
PLG_EXTENSION_COMPONENTBUILDERPRIVACYCOMPILER_YOU_DO_NOT_HAVE_A_GLOBAL_PRIVACY_PLUGIN_SETUP_SO_THE_INTEGRATION_WITH_JOOMLA_PRIVACY_SUITE_COULD_NOT_BE_BUILD="You do not have a global privacy plugin setup, so the integration with Joomla privacy suite could not be build."
|
@ -1,4 +1,4 @@
|
||||
PLG_EXTENSION_COMPONENTBUILDERPRIVACYCOMPILER="Extension - Componentbuilder Privacy Compiler"
|
||||
PLG_EXTENSION_COMPONENTBUILDERPRIVACYCOMPILER_DESCRIPTION="This plugin is used to build the privacy plugin for your component during compilation. To activate it you must first enable it here. Then open your JCB component global options, and under the Global tab, select this plugin in the Activate Compiler Plugins field.Also be sure to link your admin views to the privacy suite of Joomla via our other Content - Componentbuilder Privacy Tabs plugin."
|
||||
PLG_EXTENSION_COMPONENTBUILDERPRIVACYCOMPILER_XML_DESCRIPTION="<h1>Extension - Componentbuilder Privacy Compiler (v.3.0.0)</h1> <div style='clear: both;'></div><p>This plugin is used to build the privacy plugin for your component during compilation. To activate it you must first enable it here. Then open your JCB component global options, and under the Global tab, select this plugin in the Activate Compiler Plugins field.Also be sure to link your admin views to the privacy suite of Joomla via our other Content - Componentbuilder Privacy Tabs plugin.</p><p>Created by <a href='https://dev.vdm.io' target='_blank'>Llewellyn van der Merwe</a><br /><small>Development started 10th March, 2024</small></p>"
|
||||
PLG_EXTENSION_COMPONENTBUILDERPRIVACYCOMPILER_XML_DESCRIPTION="<h1>Extension - Componentbuilder Privacy Compiler (v.1.2.4)</h1> <div style='clear: both;'></div><p>This plugin is used to build the privacy plugin for your component during compilation. To activate it you must first enable it here. Then open your JCB component global options, and under the Global tab, select this plugin in the Activate Compiler Plugins field.Also be sure to link your admin views to the privacy suite of Joomla via our other Content - Componentbuilder Privacy Tabs plugin.</p><p>Created by <a href='https://dev.vdm.io' target='_blank'>Llewellyn van der Merwe</a><br /><small>Development started 17th August, 2019</small></p>"
|
||||
PLG_EXTENSION_COMPONENTBUILDERPRIVACYCOMPILER_YOU_DO_NOT_HAVE_A_GLOBAL_PRIVACY_PLUGIN_SETUP_SO_THE_INTEGRATION_WITH_JOOMLA_PRIVACY_SUITE_COULD_NOT_BE_BUILD="You do not have a global privacy plugin setup, so the integration with Joomla privacy suite could not be build."
|
117
script.php
117
script.php
@ -13,129 +13,50 @@
|
||||
defined('_JEXEC') or die('Restricted access');
|
||||
|
||||
use Joomla\CMS\Factory;
|
||||
use Joomla\CMS\Version;
|
||||
use Joomla\CMS\Installer\InstallerAdapter;
|
||||
use Joomla\CMS\Language\Text;
|
||||
use Joomla\Filesystem\File;
|
||||
use Joomla\Filesystem\Folder;
|
||||
use Joomla\CMS\Filesystem\File;
|
||||
use Joomla\CMS\Filesystem\Folder;
|
||||
|
||||
/**
|
||||
* Extension - Componentbuilder Privacy Compiler script file.
|
||||
*
|
||||
* @package ComponentbuilderPrivacyCompiler
|
||||
* @package PlgExtensionComponentbuilderPrivacyCompiler
|
||||
*/
|
||||
class plgExtensionComponentbuilderPrivacyCompilerInstallerScript
|
||||
{
|
||||
/**
|
||||
* The CMS Application.
|
||||
*
|
||||
* @since 4.4.2
|
||||
*/
|
||||
protected $app;
|
||||
|
||||
/**
|
||||
* A list of files to be deleted
|
||||
*
|
||||
* @var array
|
||||
* @since 3.6
|
||||
*/
|
||||
protected array $deleteFiles = [];
|
||||
|
||||
/**
|
||||
* A list of folders to be deleted
|
||||
*
|
||||
* @var array
|
||||
* @since 3.6
|
||||
*/
|
||||
protected array $deleteFolders = [];
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @param InstallerAdapter $adapter The object responsible for running this script
|
||||
*/
|
||||
public function __construct($adapter)
|
||||
{
|
||||
// get application
|
||||
$this->app = Factory::getApplication();
|
||||
|
||||
if (is_file(JPATH_ROOT . '/plugins/extension/componentbuilderprivacycompiler/componentbuilderprivacycompiler.php'))
|
||||
{
|
||||
$this->deleteFiles[] = '/plugins/extension/componentbuilderprivacycompiler/componentbuilderprivacycompiler.php';
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Called before any type of action
|
||||
*
|
||||
* @param string $route Which action is happening (install|uninstall|discover_install|update)
|
||||
* @param InstallerAdapter $adapter The object responsible for running this script
|
||||
* @param Joomla\CMS\Installer\InstallerAdapter $adapter The object responsible for running this script
|
||||
*
|
||||
* @return boolean True on success
|
||||
*/
|
||||
public function preflight($route, $adapter)
|
||||
{
|
||||
// set application to local method var, just use $this->app in future [we will drop $app in J6]
|
||||
$app = $this->app;
|
||||
// get application
|
||||
$app = Factory::getApplication();
|
||||
|
||||
// the default for both install and update
|
||||
$jversion = new Version();
|
||||
if (!$jversion->isCompatible('5.0.0'))
|
||||
$jversion = new JVersion();
|
||||
if (!$jversion->isCompatible('3.8.0'))
|
||||
{
|
||||
$app->enqueueMessage('Please upgrade to at least Joomla! 5.0.0 before continuing!', 'error');
|
||||
$app->enqueueMessage('Please upgrade to at least Joomla! 3.8.0 before continuing!', 'error');
|
||||
return false;
|
||||
}
|
||||
|
||||
// remove old files and folders
|
||||
$this->removeFiles();
|
||||
if ('install' === $route)
|
||||
{
|
||||
// check that componentbuilder is installed
|
||||
$pathToCore = JPATH_ADMINISTRATOR . '/components/com_componentbuilder/helpers/componentbuilder.php';
|
||||
if (!is_file($pathToCore))
|
||||
{
|
||||
$app->enqueueMessage('Joomla Component Builder must first be installed from <a href="https://www.joomlacomponentbuilder.com/ " target="_blank">Joomla Component Builder</a>.', 'error');
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Called before any type of action
|
||||
*
|
||||
* @param string $route Which action is happening (install|uninstall|discover_install|update)
|
||||
* @param InstallerAdapter $adapter The object responsible for running this script
|
||||
*
|
||||
* @return boolean True on success
|
||||
*/
|
||||
public function postflight($route, $adapter)
|
||||
{
|
||||
// set application to local method var, just use $this->app in future [we will drop $app in J6]
|
||||
$app = $this->app;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the files and folders in the given array from
|
||||
*
|
||||
* @return void
|
||||
* @since 5.0.2
|
||||
*/
|
||||
protected function removeFiles()
|
||||
{
|
||||
if (!empty($this->deleteFiles))
|
||||
{
|
||||
foreach ($this->deleteFiles as $file)
|
||||
{
|
||||
if (is_file(JPATH_ROOT . $file) && !File::delete(JPATH_ROOT . $file))
|
||||
{
|
||||
echo Text::sprintf('JLIB_INSTALLER_ERROR_FILE_FOLDER', $file) . '<br>';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (!empty($this->deleteFolders))
|
||||
{
|
||||
foreach ($this->deleteFolders as $folder)
|
||||
{
|
||||
if (is_dir(JPATH_ROOT . $folder) && !Folder::delete(JPATH_ROOT . $folder))
|
||||
{
|
||||
echo Text::sprintf('JLIB_INSTALLER_ERROR_FILE_FOLDER', $folder) . '<br>';
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1 +0,0 @@
|
||||
<html><body bgcolor="#FFFFFF"></body></html>
|
@ -1,47 +0,0 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Joomla.Component.Builder
|
||||
*
|
||||
* @created 30th April, 2015
|
||||
* @author Llewellyn van der Merwe <https://dev.vdm.io>
|
||||
* @git Joomla Component Builder <https://git.vdm.dev/joomla/Component-Builder>
|
||||
* @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');
|
||||
|
||||
use Joomla\CMS\Factory;
|
||||
use Joomla\CMS\Plugin\PluginHelper;
|
||||
use Joomla\CMS\Extension\PluginInterface;
|
||||
use Joomla\Event\DispatcherInterface;
|
||||
use Joomla\DI\ServiceProviderInterface;
|
||||
use Joomla\DI\Container;
|
||||
use VDM\Plugin\Extension\ComponentbuilderPrivacyCompiler\Extension\ComponentbuilderPrivacyCompiler;
|
||||
|
||||
return new class () implements ServiceProviderInterface {
|
||||
/**
|
||||
* Registers the service provider with a DI container.
|
||||
*
|
||||
* @param Container $container The DI container.
|
||||
*
|
||||
* @return void
|
||||
* @since 4.3.0
|
||||
*/
|
||||
public function register(Container $container)
|
||||
{
|
||||
$container->set(
|
||||
PluginInterface::class,
|
||||
function (Container $container) {
|
||||
$plugin = new ComponentbuilderPrivacyCompiler(
|
||||
$container->get(DispatcherInterface::class),
|
||||
(array) PluginHelper::getPlugin('extension', 'componentbuilderprivacycompiler')
|
||||
);
|
||||
$plugin->setApplication(Factory::getApplication());
|
||||
|
||||
return $plugin;
|
||||
}
|
||||
);
|
||||
}
|
||||
};
|
@ -1 +0,0 @@
|
||||
<html><body bgcolor="#FFFFFF"></body></html>
|
Loading…
Reference in New Issue
Block a user