Your IP : 216.73.216.248


Current Path : /home/digilove/www/41423/
Upload File :
Current File : /home/digilove/www/41423/Helpers.tar

advancedmodulehelper.php000064400000051075152355114540011445 0ustar00<?php
/**
 * @package         Advanced Module Manager
 * @version         9.8.0PRO
 * 
 * @author          Peter van Westen <info@regularlabs.com>
 * @link            https://regularlabs.com
 * @copyright       Copyright © 2023 Regular Labs All Rights Reserved
 * @license         GNU General Public License version 2 or later
 */

defined('_JEXEC') or die;

use Joomla\CMS\Factory as JFactory;
use Joomla\CMS\Language\Text as JText;
use Joomla\CMS\Log\Log as JLog;
use RegularLabs\Library\ArrayHelper as RL_Array;
use RegularLabs\Library\Conditions as RL_Conditions;
use RegularLabs\Library\Document as RL_Document;
use RegularLabs\Library\ParametersNew as RL_Parameters;
use RegularLabs\Library\PluginTag as RL_PluginTag;
use RegularLabs\Library\RegEx as RL_RegEx;
use RegularLabs\Plugin\System\AdvancedModules\Params;

jimport('joomla.filesystem.file');

/*
 * ModuleHelper methods
 */

class AdvancedModules
{
    static $current_module = null;

    public static function getCurrentModule()
    {
        return self::$current_module;
    }

    public static function setCurrentModule($module)
    {
        self::$current_module = $module;
    }
}

class PlgSystemAdvancedModuleHelper
{
    var $mirror_ids = [];

    public function onPrepareModuleList(&$modules)
    {
        // return if is not frontend
        if ( ! RL_Document::isClient('site'))
        {
            return;
        }

        jimport('joomla.filesystem.file');

        $modules = is_null($modules) ? $this->getModuleList() : $modules;

        if (is_array($modules) && empty($modules))
        {
            return;
        }

        [$remove_positions, $remove_modules] = $this->getRemovePositionsAndModules();

        $filtered_modules = [];

        foreach ($modules as $module)
        {
            if (empty($module->id))
            {
                continue;
            }

            if (
                in_array($module->position, $remove_positions)
                || in_array($module->id, $remove_modules)
                || in_array($module->module, $remove_modules)
                || in_array($module->title, $remove_modules)
            )
            {
                continue;
            }

            $module->name = substr($module->module, 4);

            if (JFactory::getApplication()->input->get('option') == 'com_ajax')
            {
                $filtered_modules[] = $module;
                continue;
            }

            $this->setAdvancedParams($module);

            if ($module->advancedparams === 0)
            {
                if (isset($module->published) && ! $module->published)
                {
                    continue;
                }

                $filtered_modules[] = $module;

                continue;
            }

            $this->setExtraParams($module);

            $module->reverse = 0;

            $this->setMirrorParams($module);

            $this->removeDisabledAssignments($module->advancedparams);

            AdvancedModules::setCurrentModule($module);

            $assignments       = RL_Conditions::getConditionsFromParams($module->advancedparams);
            $module->published = RL_Conditions::pass(
                $assignments,
                $module->advancedparams->match_method,
                null,
                $module
            );

            if ($module->reverse)
            {
                $module->published = ! $module->published;
            }

            if (isset($module->published) && ! $module->published)
            {
                continue;
            }

            $filtered_modules[] = $module;
        }

        $modules = array_values($filtered_modules);
        unset($filtered_modules);
    }

    public function onRenderModule(&$module)
    {
        // Module already nulled
        if (is_null($module))
        {
            return;
        }

        // Do nothing if is not frontend
        if ( ! RL_Document::isClient('site'))
        {
            return;
        }

        // return true if module is empty (this will empty the content)
        if ($this->isEmpty($module))
        {
            $module = null;

            return;
        }

        // Add pre and post html
        $this->addHTML($module);
    }

    private function addHTML(&$module)
    {
        $this->setAdvancedParams($module);

        // return false if module params are not found
        if (empty($module->advancedparams))
        {
            return;
        }

        $params = $module->advancedparams;

        // do nothing if no advanced params are set
        if (empty($params))
        {
            return;
        }

        // prepend the pre html
        if (isset($params->pre_html) && $params->pre_html)
        {
            $module->content = $params->pre_html . $module->content;
        }

        // append the post html
        if (isset($params->post_html) && $params->post_html)
        {
            $module->content .= $params->post_html;
        }
    }

    private function getAdvancedParams($module)
    {
        if (empty($module->id))
        {
            return '{}';
        }

        if (isset($module->adv_params))
        {
            return $module->adv_params;
        }

        return $this->getAdvancedParamsById($module->id);
    }

    private function getAdvancedParamsById($id = 0)
    {
        if ( ! $id)
        {
            return '{}';
        }

        $db    = JFactory::getDbo();
        $query = $db->getQuery(true)
            ->select('a.params')
            ->from('#__advancedmodules AS a')
            ->where('a.moduleid = ' . (int) $id);
        $db->setQuery($query);

        $params = $db->loadResult();

        if (empty($params))
        {
            $params = '{}';
        }

        return $params;
    }

    private function getConfig()
    {
        static $instance;

        if (is_object($instance))
        {
            return $instance;
        }

        $instance = RL_Parameters::getComponent('advancedmodules');

        return $instance;
    }

    private function getMirrorModuleId($module)
    {
        if (isset($module->mirror_id))
        {
            return $module->mirror_id;
        }

        return $this->getMirrorModuleIdById($module->id);
    }

    private function getMirrorModuleIdById($id)
    {
        if (isset($this->mirror_ids[$id]))
        {
            return $this->mirror_ids[$id];
        }

        $db    = JFactory::getDbo();
        $query = $db->getQuery(true)
            ->select('a.mirror_id')
            ->from('#__advancedmodules AS a')
            ->where('a.moduleid = ' . (int) $id);
        $db->setQuery($query);

        $this->mirror_ids[$id] = $db->loadResult();

        return $this->mirror_ids[$id];
    }

    private function getModuleList()
    {
        $app      = JFactory::getApplication();
        $user     = JFactory::getApplication()->getIdentity() ?: JFactory::getUser();
        $groups   = implode(',', $user->getAuthorisedViewLevels());
        $lang     = JFactory::getLanguage()->getTag();
        $clientId = (int) $app->getClientId();

        $db = JFactory::getDbo();

        $query = $db->getQuery(true)
            ->select('m.id, m.title, m.module, m.position, m.content, m.showtitle, m.params')
            ->select('am.mirror_id, am.params AS advancedparams, 0 AS menuid, m.publish_up, m.publish_down')
            ->from('#__modules AS m')
            ->join('LEFT', '#__extensions AS e ON e.element = m.module AND e.client_id = m.client_id')
            ->join('LEFT', '#__advancedmodules as am ON am.moduleid = m.id')
            ->where('m.published = 1')
            ->where('e.enabled = 1')
            ->where('m.access IN (' . $groups . ')')
            ->where('m.client_id = ' . $clientId);

        // Filter by language
        if ($app->isClient('site') && $app->getLanguageFilter())
        {
            $query->where('m.language IN (' . $db->quote($lang) . ',' . $db->quote('*') . ')');
        }

        $query->order('m.position, m.ordering');

        // Set the query
        $db->setQuery($query);

        try
        {
            $modules = $db->loadObjectList();
        }
        catch (RuntimeException $e)
        {
            JLog::add(JText::sprintf('JLIB_APPLICATION_ERROR_MODULE_LOAD', $e->getMessage()), JLog::WARNING, 'jerror');

            return [];
        }

        return array_values($modules);
    }

    private function getRemovePositionsAndModules()
    {
        if ( ! $buffer = RL_Document::getComponentBuffer())
        {
            return [[], []];
        }

        $params = Params::get();

        $remove_positions = [];
        $remove_modules   = [];

        RL_RegEx::matchAll(Params::getRegex(), $buffer, $matches);

        foreach ($matches as $match)
        {
            // Get the values from the tag
            $attributes = RL_PluginTag::getAttributesFromString($match['attributes'], 'nokey');

            $key_aliases = [
                'modules'   => ['module'],
                'positions' => ['position'],
            ];

            RL_PluginTag::replaceKeyAliases($attributes, $key_aliases);

            if ( ! empty($attributes->positions))
            {
                $remove_positions = array_merge($remove_positions, RL_Array::toArray($attributes->positions));
            }

            if ( ! empty($attributes->modules))
            {
                $remove_modules = array_merge($remove_modules, RL_Array::toArray($attributes->modules));
            }

            if (empty($attributes->nokey))
            {
                continue;
            }

            if ($match['type'] == $params->tag_remove_modulepos)
            {
                $remove_positions[] = $attributes->nokey;
                continue;
            }

            $remove_modules[] = $attributes->nokey;
        }

        return [array_unique($remove_positions), array_unique($remove_modules)];
    }

    private function isEmpty(&$module)
    {
        if ( ! isset($module->content))
        {
            return true;
        }

        $this->setAdvancedParams($module);

        // return false if module params are not found
        if (empty($module->advancedparams))
        {
            return false;
        }

        $params = $module->advancedparams;

        // return false if hideempty is off in module params
        if (empty($params)
            || (( ! isset($params->hideempty) || ! $params->hideempty) && empty($params->if_empty_html)))
        {
            return false;
        }

        $config = $this->getConfig();

        // return false if use_hideempty is off in main config
        if ( ! $config->use_hideempty)
        {
            return false;
        }

        $content = trim($module->content);

        // remove empty tags to see if module can be considered as empty
        if ( ! empty($content))
        {
            // remove html and hidden whitespace
            $content = str_replace(chr(194) . chr(160), ' ', $content);
            $content = str_replace(['&nbsp;', '&#160;'], ' ', $content);
            // remove comment tags
            $content = RL_RegEx::replace('<\!--.*?-->', '', $content);
            // remove all closing tags
            $content = RL_RegEx::replace('</[^>]+>', '', $content);
            // remove tags to be ignored
            $tags   = 'p|div|span|strong|b|em|i|ul|font|br|h[0-9]|fieldset|label|ul|ol|li|table|thead|tbody|tfoot|tr|th|td|form';
            $search = '<(?:' . $tags . ')(?:\s[^>]*)?>';

            if (RL_RegEx::match($search, $content))
            {
                $content = RL_RegEx::replace($search, '', $content);
            }

            $content = trim($content);
        }

        if ( ! empty($content))
        {
            return false;
        }

        if ( ! empty($params->if_empty_html))
        {
            $module->content = $params->if_empty_html;

            return false;
        }

        return true;
    }

    private function removeDisabledAssignments(&$params)
    {
        $config = $this->getConfig();

        if ( ! $config->show_assignto_homepage)
        {
            $params->assignto_homepage = 0;
        }
        if ( ! $config->show_assignto_usergrouplevels)
        {
            $params->assignto_usergrouplevels = 0;
        }
        if ( ! $config->show_assignto_users)
        {
            $params->assignto_users = 0;
        }
        if ( ! $config->show_assignto_date)
        {
            $params->assignto_date = 0;
            $params->assignto_seasons = 0;
            $params->assignto_months  = 0;
            $params->assignto_days    = 0;
            $params->assignto_time    = 0;
        }
        if ( ! $config->show_assignto_languages)
        {
            $params->assignto_languages = 0;
        }
        if ( ! $config->show_assignto_ips)
        {
            $params->assignto_ips = 0;
        }
        if ( ! $config->show_assignto_geo)
        {
            $params->assignto_geocontinents  = 0;
            $params->assignto_geocountries   = 0;
            $params->assignto_georegions     = 0;
            $params->assignto_geopostalcodes = 0;
        }
        if ( ! $config->show_assignto_templates)
        {
            $params->assignto_templates = 0;
        }
        if ( ! $config->show_assignto_urls)
        {
            $params->assignto_urls = 0;
        }
        if ( ! $config->show_assignto_devices)
        {
            $params->assignto_devices = 0;
        }
        if ( ! $config->show_assignto_os)
        {
            $params->assignto_os = 0;
        }
        if ( ! $config->show_assignto_browsers)
        {
            $params->assignto_browsers = 0;
        }
        if ( ! $config->show_assignto_components)
        {
            $params->assignto_components = 0;
        }
        if ( ! $config->show_assignto_tags)
        {
            $params->show_assignto_tags = 0;
        }
        if ( ! $config->show_assignto_content)
        {
            $params->assignto_contentpagetypes = 0;
            $params->assignto_cats             = 0;
            $params->assignto_articles         = 0;
        }
        if ( ! $config->show_assignto_easyblog)
        {
            $params->assignto_easyblogpagetypes = 0;
            $params->assignto_easyblogcats      = 0;
            $params->assignto_easyblogtags      = 0;
            $params->assignto_easyblogitems     = 0;
        }
        if ( ! $config->show_assignto_flexicontent)
        {
            $params->assignto_flexicontentpagetypes = 0;
            $params->assignto_flexicontenttags      = 0;
            $params->assignto_flexicontenttypes     = 0;
        }
        if ( ! $config->show_assignto_form2content)
        {
            $params->assignto_form2contentprojects = 0;
        }
        if ( ! $config->show_assignto_k2)
        {
            $params->assignto_k2pagetypes = 0;
            $params->assignto_k2cats      = 0;
            $params->assignto_k2tags      = 0;
            $params->assignto_k2items     = 0;
        }
        if ( ! $config->show_assignto_zoo)
        {
            $params->assignto_zoopagetypes = 0;
            $params->assignto_zoocats      = 0;
            $params->assignto_zooitems     = 0;
        }
        if ( ! $config->show_assignto_akeebasubs)
        {
            $params->assignto_akeebasubspagetypes = 0;
            $params->assignto_akeebasubslevels    = 0;
        }
        if ( ! $config->show_assignto_hikashop)
        {
            $params->assignto_hikashoppagetypes = 0;
            $params->assignto_hikashopcats      = 0;
            $params->assignto_hikashopproducts  = 0;
        }
        if ( ! $config->show_assignto_mijoshop)
        {
            $params->assignto_mijoshoppagetypes = 0;
            $params->assignto_mijoshopcats      = 0;
            $params->assignto_mijoshopproducts  = 0;
        }
        if ( ! $config->show_assignto_redshop)
        {
            $params->assignto_redshoppagetypes = 0;
            $params->assignto_redshopcats      = 0;
            $params->assignto_redshopproducts  = 0;
        }
        if ( ! $config->show_assignto_virtuemart)
        {
            $params->assignto_virtuemartpagetypes = 0;
            $params->assignto_virtuemartcats      = 0;
            $params->assignto_virtuemartproducts  = 0;
        }
        if ( ! $config->show_assignto_cookieconfirm)
        {
            $params->assignto_cookieconfirm = 0;
        }
        if ( ! $config->show_assignto_php)
        {
            $params->assignto_php = 0;
        }
    }

    private function setAdvancedParams(&$module)
    {
        if (empty($module->id))
        {
            return;
        }

        if (isset($module->advancedparams) && is_object($module->advancedparams))
        {
            return;
        }

        if ( ! isset($module->advancedparams))
        {
            $module->advancedparams = $this->getAdvancedParams($module);
        }

        $module->advancedparams = json_decode($module->advancedparams);

        if (is_null($module->advancedparams))
        {
            $module->advancedparams = (object) [];
        }

        if (
            ! isset($module->advancedparams->assignto_menuitems)
            || isset($module->advancedparams->assignto_urls_selection_sef)
            || (
                ! is_array($module->advancedparams->assignto_menuitems)
                && strpos($module->advancedparams->assignto_menuitems, '|') !== false
            )
        )
        {
            require_once JPATH_ADMINISTRATOR . '/components/com_advancedmodules/models/module.php';
            $model = new AdvancedModulesModelModule;

            $module->advancedparams = (object) $model->initAssignments($module->id, $module);
        }

        $xmlfile_assignments = JPATH_ADMINISTRATOR . '/components/com_advancedmodules/assignments.xml';

        $use_cache = $module->use_amm_cache ?? true;

        $module->advancedparams = RL_Parameters::getObjectFromRegistry($module->advancedparams, $xmlfile_assignments, '', $use_cache);
    }

    private function setExtraParams(&$module)
    {
        $extraparams = [];

        for ($e = 1; $e <= 5; $e++)
        {
            $var               = 'extra' . $e;
            $extraparams[$var] = $module->advancedparams->{$var} ?? '';
        }

        if (empty($extraparams))
        {
            return;
        }

        if (empty($module->params))
        {
            $module->params = json_encode($extraparams);

            return;
        }

        $params = (array) json_decode($module->params, true);
        $params = array_merge($params, $extraparams);

        $module->params = json_encode($params);
    }

    private function setMirrorParams(&$module)
    {
        $module->mirror_id = $this->getMirrorModuleId($module);

        if (empty($module->mirror_id))
        {
            return;
        }

        $mirror_id = $module->mirror_id < 0 ? $module->mirror_id * -1 : $module->mirror_id;

        $count = 0;
        while ($count++ < 10)
        {
            if ( ! $test_mirrorid = $this->getMirrorModuleIdById($mirror_id))
            {
                break;
            }

            $mirror_id = $test_mirrorid;
        }

        if (empty($mirror_id))
        {
            return;
        }

        $xmlfile_assignments = JPATH_ADMINISTRATOR . '/components/com_advancedmodules/assignments.xml';

        $module->reverse = $module->mirror_id < 0;

        if ($mirror_id == $module->id)
        {
            $empty         = (object) [];
            $mirror_params = RL_Parameters::getObjectFromRegistry($empty, $xmlfile_assignments);
        }
        else
        {
            if (isset($modules[$mirror_id]))
            {
                if ( ! isset($modules[$mirror_id]->advancedparams))
                {
                    $modules[$mirror_id]->advancedparams = $this->getAdvancedParamsById($mirror_id);
                    $modules[$mirror_id]->advancedparams = RL_Parameters::getObjectFromRegistry($modules[$mirror_id]->advancedparams, $xmlfile_assignments);
                }

                $mirror_params = $modules[$mirror_id]->advancedparams;
            }
            else
            {
                $mirror_params = $this->getAdvancedParamsById($mirror_id);
                $mirror_params = RL_Parameters::getObjectFromRegistry($mirror_params, $xmlfile_assignments);
            }
        }

        // Keep the advanced settings that shouldn't be mirrored
        $settings_to_keep = [
            'hideempty', 'color',
            'pre_html', 'post_html',
            'extra1', 'extra2', 'extra3', 'extra4', 'extra5'
        ];

        foreach ($settings_to_keep as $key)
        {
            if ( ! isset($module->advancedparams->{$key}))
            {
                continue;
            }

            $mirror_params->{$key} = $module->advancedparams->{$key};
        }

        $module->advancedparams = $mirror_params;
    }
}