File Manager

Current Directory: /home/astoriaah/www/administrator/components/com_sh404sef/lib/extplugins/joomsef
Viewing File: /home/astoriaah/www/administrator/components/com_sh404sef/lib/extplugins/joomsef/seftools.php
<?php /** * sh404SEF - SEO extension for Joomla! * * @author Yannick Gaultier * @copyright (c) Yannick Gaultier - Weeblr llc - 2022 * @package sh404SEF * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL * @version 4.24.1.4308 * @date 2022-05-31 */ // Check to ensure this file is included in Joomla! defined('_JEXEC') or die(); //require_once (JPATH_ROOT . '/' . 'administrator' . '/' . 'components' . '/' . 'com_sef' . '/' . 'tables' . '/' . 'extension.php'); jimport('joomla.filesystem.file'); define('_COM_SEF_PRIORITY_DEFAULT_ITEMID', 90); define('_COM_SEF_PRIORITY_DEFAULT', 95); //JLoader::register('SefExt', JPATH_ROOT. '/' .'components'. '/' .'com_sef'. '/' .'sef.ext.php'); //JLoader::register('JoomSEF', JPATH_ROOT. '/' .'components'. '/' .'com_sef'. '/' .'joomsef.php'); if (SEFTools::JoomFishInstalled()) { require_once (JPATH_ROOT. '/' .'components'. '/' .'com_joomfish'. '/' .'helpers'. '/' .'defines.php' ); JLoader::register('JoomFishManager', JPATH_ROOT. '/' .'administrator'. '/' .'components'. '/' .'com_joomfish'. '/' .'classes'. '/' .'JoomfishManager.class.php'); } class SEFTools { function getSEFVersion() { static $version; if (! isset($version)) { $xml = JFactory::getXMLParser('Simple'); $xmlFile = JPATH_ADMINISTRATOR . '/' . 'components' . '/' . 'com_sef' . '/' . 'sef.xml'; if (JFile::exists($xmlFile)) { if ($xml->loadFile($xmlFile)) { $root = & $xml->document; $element = & $root->getElementByPath('version'); $version = $element ? $element->data() : ''; } } } return $version; } function getSEFInfo() { static $info; if( !isset($info) ) { $info = array(); $xml = JFactory::getXMLParser('Simple'); $xmlFile = JPATH_ADMINISTRATOR . '/' . 'components' . '/' . 'com_sef' . '/' . 'sef.xml'; if (JFile::exists($xmlFile)) { if ($xml->loadFile($xmlFile)) { $root = & $xml->document; $element = & $root->getElementByPath('version'); $info['version'] = $element ? $element->data() : ''; $element = & $root->getElementByPath('creationdate'); $info['creationDate'] = $element ? $element->data() : ''; $element = & $root->getElementByPath('author'); $info['author'] = $element ? $element->data() : ''; $element = & $root->getElementByPath('authoremail'); $info['authorEmail'] = $element ? $element->data() : ''; $element = & $root->getElementByPath('authorurl'); $info['authorUrl'] = $element ? $element->data() : ''; $element = & $root->getElementByPath('copyright'); $info['copyright'] = $element ? $element->data() : ''; $element = & $root->getElementByPath('license'); $info['license'] = $element ? $element->data() : ''; $element = & $root->getElementByPath('description'); $info['description'] = $element ? $element->data() : ''; } } } return $info; } function getExtVersion($extension) { $xml = & SEFTools::getExtXML($extension); $version = null; if ($xml) { $root = & $xml->document; $ver = $root->attributes('version'); if (($root->name() == 'install') && version_compare($ver, '1.5', '>=') && ($root->attributes('type') == 'sef_ext')) { $element = & $root->getElementByPath('version'); $version = $element ? $element->data() : ''; } } return $version; } /** * Checks if the installed JoomSEF extensions support current JoomSEF version */ function checkExtVersions() { // Check VM and Digistore versions $v1 = SEFTools::getExtVersion('com_virtuemart'); $v2 = SEFTools::getExtVersion('com_digistore'); $exts = array(); if (!is_null($v1) && version_compare('2.0.32', $v1) > 0) { $exts[] = 'VirtueMart'; } if (!is_null($v2) && version_compare('2.1.1', $v2) > 0) { $exts[] = 'iJoomla Digistore'; } if (count($exts) > 0) { JError::raiseWarning(100, JText::sprintf('WARNING_EXTENSION_OLD_VERSION', implode(', ', $exts), '<a href="index.php?option=com_sef&amp;controller=extension">'.JText::_('Manage Extensions').'</a>')); } } /** * Returns extension name from its XML file. * * @return string */ function getExtName($extension) { $xml = & SEFTools::getExtXML($extension); $name = null; if ($xml) { $root = & $xml->document; $ver = $root->attributes('version'); if (($root->name() == 'install') && version_compare($ver, '1.5', '>=') && ($root->attributes('type') == 'sef_ext')) { $element = & $root->getElementByPath('name'); $name = $element ? $element->data() : ''; } } return $name; } /** * Returns the extension XML object * * @param string $extension Extension option * @return JSimpleXML Extension XML */ function &getExtXML($extension) { static $xmls; if (! isset($xmls)) { $xmls = array(); } if (! isset($xmls[$extension])) { $xmls[$extension] = null; $xmlFile = JPATH_ROOT . '/' . 'components' . '/' . 'com_sef' . '/' . 'sef_ext' . '/' . $extension . '.xml'; if (JFile::exists($xmlFile)) { $xmls[$extension] = JFactory::getXMLParser('Simple'); if (! $xmls[$extension]->loadFile($xmlFile)) { $xmls[$extension] = null; } } } return $xmls[$extension]; } function &getExtAcceptVars($option, $includeGlobal = true) { static $acceptVars; if( !isset($acceptVars) ) { $acceptVars = array(); } if( !isset($acceptVars[$option]) ) { $sefConfig =& SEFConfig::getConfig(); $params =& SEFTools::getExtParams($option); $aVars = trim($params->get('acceptVars', '')); if( $aVars == '' ) { $acceptVars[$option] = array(); } else { $aVars = explode(';', $aVars); $aVars = array_map('trim', $aVars); $acceptVars[$option] = $aVars; } } return $acceptVars[$option]; } function &getExtFilters($option, $includeGlobal = true) { static $filters; if( !isset($filters) ) { $filters = array(); } if( !isset($filters[$option]) ) { $filters[$option] = array(); $filters[$option]['pos'] = array(); $filters[$option]['neg'] = array(); $db =ShlDbHelper::getDb(); $db->setQuery("SELECT `filters` FROM `#__sefexts` WHERE `file` = '{$option}.xml' LIMIT 1"); $row = $db->loadResult(); if( $row ) { // Parse the filters $rules = explode("\n", $row); $rules = array_map('trim', $rules); if( count($rules) > 0 ) { foreach($rules as $rule) { // Is the rule positive or negative? if( $rule[0] == '+' ) { $type = 'pos'; } else if( $rule[0] == '-' ) { $type = 'neg'; } else { continue; } $rule = substr($rule, 1); // Split the rule to regexp and variables parts $pos = strrpos($rule, '='); if( $pos === false ) { continue; } $re = substr($rule, 0, $pos); $vars = substr($rule, $pos + 1); if( $re == '' ) { continue; } // Create the filter object $filter = new stdClass(); $filter->rule = $re; if ($vars != '') { $filter->vars = array_map('trim', explode(',', $vars)); } else { $filter->vars = array(); } // Add the filter to filters $filters[$option][$type][] = $filter; } } } } return $filters[$option]; } function &getExtFiltersByVars($option, $includeGlobal = true) { static $byVars; if( !isset($byVars) ) { $byVars = array(); } if (empty($option)) { $option = '_default'; } if( !isset($byVars[$option]) ) { $byVars[$option] = array(); // Get filters $filters =& SEFTools::getExtFilters($option, $includeGlobal); if( count($filters) > 0 ) { // Loop through filter types (pos, neg) foreach($filters as $type => $typeFilters) { if( count($typeFilters) > 0 ) { // Loop through filters foreach($typeFilters as $filter) { if( count($filter->vars) > 0 ) { // Loop through variables foreach($filter->vars as $var) { // Add filter to var and type if( !isset($byVars[$option][$var]) ) { $byVars[$option][$var] = array(); } if( !isset($byVars[$option][$var][$type]) ) { $byVars[$option][$var][$type] = array(); } $byVars[$option][$var][$type][] = $filter->rule; } } } } } } } return $byVars[$option]; } function getLangCode($langTag = null) { $lang = JFactory::getLanguage(); $defaultTag = $lang->getTag(); // Get current language tag if (is_null($langTag)) { $langTag = $defaultTag; } if (SEFTools::JoomFishInstalled()) { $jfm = & JoomFishManager::getInstance(); $code = $jfm->getLanguageCode($langTag); } else { // Only one language $code = null; if ($langTag == $defaultTag) { $parts = explode('-', $defaultTag); $code = $parts[0]; } } return $code; } function getLangId($langTag = null) { $id = null; if (SEFTools::JoomFishInstalled()) { // Get current language tag if (is_null($langTag)) { $lang = JFactory::getLanguage(); $langTag = $lang->getTag(); } $jfm = & JoomFishManager::getInstance(); $id = $jfm->getLanguageID($langTag); } return $id; } function getLangLongCode($langCode = null) { static $codes; // Get current language code if (is_null($langCode)) { $lang = JFactory::getLanguage(); return $lang->getTag(); } if (is_null($codes)) { $codes = array(); if (SEFTools::JoomFishInstalled()) { $jfm = & JoomFishManager::getInstance(); $langs = & $jfm->getLanguages(false); if (!empty($langs)) { foreach ($langs as $lang) { $codes[$lang->shortcode] = $lang->code; } } } else { // Only one language $lang = JFactory::getLanguage(); $tag = $lang->getTag(); $parts = explode('-', $tag); $iso = $parts[0]; $codes[$iso] = $tag; } } if (isset($codes[$langCode])) { return $codes[$langCode]; } return null; } /** * Returns JParameter object representing extension's parameters * * @param string Extension name * @return JParameter Extension's parameters */ function &getExtParams($option) { /* $db = ShlDbHelper::getDb(); static $exts, $params; if (! isset($exts)) { $query = "SELECT `file`, `params` FROM `#__sefexts`"; $db->setQuery($query); $exts = $db->loadObjectList('file'); } if (! isset($params)) { $params = array(); } if (! isset($params[$option])) { $data = ''; if (isset($exts[$option . '.xml'])) { $data = $exts[$option . '.xml']->params; } $params[$option] = new JParameter($data); // Set the extension's parameters renderer $pxml = & SEFTools::getExtParamsXML($option); if (is_a($pxml, 'JSimpleXMLElement')) { $params[$option]->setXML($pxml); } else if( is_array($pxml) && count($pxml) > 0 ) { for( $i = 0, $n = count($pxml); $i < $n; $i++ ) { if( is_a($pxml[$i], 'JSimpleXMLElement') ) { $params[$option]->setXML($pxml[$i]); } } } // Set the default parameters renderer $xml = & SEFTools::getExtsDefaultParamsXML(); if (is_a($xml, 'JSimpleXMLElement')) { $params[$option]->setXML($xml); } else if( is_array($xml) && count($xml) > 0 ) { for( $i = 0, $n = count($xml); $i < $n; $i++ ) { if( is_a($xml[$i], 'JSimpleXMLElement') ) { $params[$option]->setXML($xml[$i]); } } } } return $params[$option]; */ $plugin = JPluginHelper::getPlugin( 'sh404sefextjoomsef', $option); $rawParams = empty( $plugin) ? '' : $plugin->params; $params = new JParameter( $rawParams); return $params; } /** * Returns the JSimpleXMLElement object representing * the default parameters for every extension * * @return JSimpleXMLElement Extensions' default parameters */ function &getExtsDefaultParamsXML() { static $xml; if (isset($xml)) { return $xml; } $xml = array(); $xmlpath = JPATH_ROOT . '/' . 'administrator' . '/' . 'components' . '/' . 'com_sef' . '/' . 'extensions_params.xml'; if (JFile::exists($xmlpath)) { $parser = JFactory::getXMLParser('Simple'); if ($parser->loadFile($xmlpath)) { //$xml = & $parser->document; $doc =& $parser->document; for( $i = 0, $n = count($doc->params); $i < $n; $i++ ) { $xml[] =& $doc->params[$i]; } } } return $xml; } /** * Returns the JSimpleXMLElement object representing * the extension's parameters * * @param string $option Extension name * @return JSimpleXMLElement Extension's parameters */ function &getExtParamsXML($option) { static $xmls; if (! isset($xmls)) { $xmls = array(); } if (! isset($xmls[$option])) { $xmls[$option] = null; $xml = & SEFTools::getExtXML($option); if ($xml) { $document = & $xml->document; $xmls[$option] = array(); if( isset($document->params) ) { for( $i = 0, $n = count($document->params); $i < $n; $i++) { if( isset($document->params[$i]->param) ) { if( $i == 0 ) { // Remove the parameters that are duplicate with common ones $hide = array(); $hideNames = array('ignoreSource' , 'itemid' , 'overrideId' , 'customNonSef'); // Collect elements to remove for ($j = 0, $m = count($document->params[$i]->param); $j < $m; $j++) { if (in_array($document->params[$i]->param[$j]->attributes('name'), $hideNames)) { $hide[] = & $document->params[$i]->param[$j]; } } // Remove elements for ($j = 0, $m = count($hide); $j < $m; $j++) { $document->params[$i]->removeChild($hide[$j]); } } $xmls[$option][] =& $document->params[$i]; } } } } } return $xmls[$option]; } /** Returns the array of texts used by the extension for creating URLs * in currently selected language (for JoomFish support) * * @param string Extension name * @return array Extension's texts */ function getExtTexts($option, $lang = '') { $database = ShlDbHelper::getDb(); static $extTexts; if ($option == '') { return false; } // Set the language if ($lang == '') { $lang = SEFTools::getLangLongCode(); } if (! isset($extTexts)) { $extTexts = array(); } if (! isset($extTexts[$option])) { $extTexts[$option] = array(); } if (! isset($extTexts[$option][$lang])) { $extTexts[$option][$lang] = array(); // If lang is different than current language, change it if ($lang != SEFTools::getLangLongCode()) { $language = JFactory::getLanguage(); $oldLang = $language->setLanguage($lang); $language->load(); } $query = "SELECT `id`, `name`, `value` FROM `#__sefexttexts` WHERE `extension` = '$option'"; $database->setQuery($query); $texts = $database->loadObjectList(); if (is_array($texts) && (count($texts) > 0)) { foreach (array_keys($texts) as $i) { $name = $texts[$i]->name; $value = $texts[$i]->value; $extTexts[$option][$lang][$name] = $value; } } // Set the language back to previously selected one if (isset($oldLang) && ($oldLang != SEFTools::getLangLongCode())) { $language = JFactory::getLanguage(); $language->setLanguage($oldLang); $language->load(); } } return $extTexts[$option][$lang]; } function removeVariable($url, $var, $value = '') { if ($value == '') { //$newurl = eregi_replace("(&|\?)$var=[^&]*", '\\1', $url); $regex = "(&|\?)$var=[^&]*"; $regex = addcslashes($regex, '/'); $newurl = preg_replace('/' . $regex . '/i', '$1', $url); } else { $trans = array('?' => '\\?' , '.' => '\\.' , '+' => '\\+' , '*' => '\\*' , '^' => '\\^' , '$' => '\\$'); $value = strtr($value, $trans); //$newurl = eregi_replace("(&|\?)$var=$value(&|\$)", '\\1\\2', $url); $regex = "(&|\?)$var=$value(&|\$)"; $regex = addcslashes($regex, '/'); $newurl = preg_replace('/' . $regex . '/i', '$1$2', $url); } $newurl = trim($newurl, '&?'); $trans = array('&&' => '&' , '?&' => '?'); $newurl = strtr($newurl, $trans); return $newurl; } function getVariable($url, $var) { $value = null; $matches = array(); if( preg_match("/[&\?]$var=([^&]*)/", $url, $matches) > 0 ) { $value = $matches[1]; } return $value; } function extractVariable(&$url, $var) { $value = SEFTools::getVariable($url, $var); $url = SEFTools::removeVariable($url, $var); return $value; } function fixVariable(&$uri, $varName) { $value = $uri->getVar($varName); if (! is_null($value)) { $pos = strpos($value, ':'); if ($pos !== false) { $value = substr($value, 0, $pos); $uri->setVar($varName, $value); } } } /** * Removes given variables from URI and returns a query string * built of them * * @param JURI $uri * @param array $vars Variables to remove */ function RemoveVariables(&$uri, &$vars) { $query = array(); if (is_array($vars) && count($vars) > 0) { foreach($vars as $var) { // Get the variable value $value = $uri->getVar($var); // Skip variables not present in URL if( is_null($value) ) { continue; } // Add variable to query if( is_array($value) ) { // Variable is an array, let's remove all its occurences foreach($value as $key => $val) { $query[] = $var.'['.$key.']='.urlencode($val); } } else { // Variable is not an array $query[] = $var.'='.urlencode($value); } // Remove variable from URI $uri->delVar($var); } } $query = implode('&amp;', $query); return $query; } function ReplaceAll($search, $replace, $subject) { while (strpos($subject, $search) !== false) { $subject = str_replace($search, $replace, $subject); } return $subject; } /** * Checks whether JoomFish is installed * * @return boolean */ function JoomFishInstalled() { static $installed; if (! isset($installed)) { $installed = JFile::exists(JPATH_ROOT . '/' . 'administrator' . '/' . 'components' . '/' . 'com_joomfish' . '/' . 'joomfish.php'); } return $installed; } /** * Checks whether to use alias from extension parameter value * * @param string $params * @param string $paramName * @return boolean */ function UseAlias(&$params, $paramName) { $sefConfig =& SEFConfig::getConfig(); $param = $params->get($paramName, 'global'); if( ($param == 'alias') || ($param == 'global' && $sefConfig->useAlias) ) { return true; } return false; } /** * Convert description of extensions from html to plain for metatags * * @param string $text * @return string */ function cleanDesc($text) { // Remove javascript $regex = "'<script[^>]*?>.*?</script>'si"; $text = preg_replace($regex, " ", $text); $regex = "'<noscript[^>]*?>.*?</noscript>'si"; $text = preg_replace($regex, " ", $text); // Strip any remaining html tags //$text = strip_tags($text); $text = preg_replace('/<[^<>]*>/', ' ', $text); // Remove any mambot codes $regex = '(\{.*?\})'; $text = preg_replace($regex, " ", $text); // Remove html entities $text = html_entity_decode($text); // Some replacements $text = str_replace(array('\n', '\r'), array(' ', ''), $text); $text = preg_replace('/\\s+/', ' ', $text); $text = trim($text); return $text; } /** * Clip text to use as meta description * * @param string $text * @param int $limit * @return string */ function clipDesc($text, $limit) { if (strlen($text) > $limit) { $text = substr($text, 0, $limit); $pos = strrpos($text, ' '); if ($pos !== false) { $text = substr($text, 0, $pos - 1); } $text = trim($text); } return $text; } /** * Generate for metatags * * @param string $desc * @param string $blacklist * @param int $count * @param int $minLength * @return string */ function generateKeywords($desc, $blacklist, $count, $minLength) { // Remove any email addresses $regex = '/(([_A-Za-z0-9-]+)(\\.[_A-Za-z0-9-]+)*@([A-Za-z0-9-]+)(\\.[A-Za-z0-9-]+)*)/iex'; $desc = preg_replace($regex, '', $desc); // Some unwanted replaces $desc = preg_replace('/<[^>]*>/', ' ', $desc); $desc = preg_replace('/[\.;:|\'|\"|\`|\,|\(|\)|\-]/', ' ', $desc); $keysArray = explode(" ", $desc); // Sort words from up to down $keysArray = array_count_values(array_map(array('JoomSEF', '_utf8LowerCase'), $keysArray)); if( is_null($blacklist) ) { $blacklist = "a, able, about, above, abroad, according, accordingly, across, actually, adj, after, afterwards, again, against, ago, ahead, ain't, all, allow, allows, almost, alone, along, alongside, already, also, although, always, am, amid, amidst, among, amongst, an, and, another, any, anybody, anyhow, anyone, anything, anyway, anyways, anywhere, apart, appear, appreciate, appropriate, are, aren't, around, as, a's, aside, ask, asking, associated, at, available, away, awfully, b, back, backward, backwards, be, became, because, become, becomes, becoming, been, before, beforehand, begin, behind, being, believe, below, beside, besides, best, better, between, beyond, both, brief, but, by, c, came, can, cannot, cant, can't, caption, cause, causes, certain, certainly, changes, clearly, c'mon, co, co., com, come, comes, concerning, consequently, consider, considering, contain, containing, contains, corresponding, could, couldn't, course, c's, currently, d, dare, daren't, definitely, described, despite, did, didn't, different, directly, do, does, doesn't, doing, done, don't, down, downwards, during, e, each, edu, eg, eight, eighty, either, else, elsewhere, end, ending, enough, entirely, especially, et, etc, even, ever, evermore, every, everybody, everyone, everything, everywhere, ex, exactly, example, except, f, fairly, far, farther, few, fewer, fifth, first, five, followed, following, follows, for, forever, former, formerly, forth, forward, found, four, from, further, furthermore, g, get, gets, getting, given, gives, go, goes, going, gone, got, gotten, greetings, h, had, hadn't, half, happens, hardly, has, hasn't, have, haven't, having, he, he'd, he'll, hello, help, , hence, her, here, hereafter, hereby, herein, here's, hereupon, hers, herself, he's, hi, him, himself, his, hither, hopefully, how, howbeit, however, hundred, i, i'd, ie, if, ignored, i'll, i'm, immediate, in, inasmuch, inc, inc., indeed, indicate, indicated, indicates, inner, inside, insofar, instead, into, inward, is, isn't, it, it'd, it'll, its, it's, itself, i've, j, just, k, keep, keeps, kept, know, known, knows, l, last, lately, later, latter, latterly, least, less, lest, let, let's, like, liked, likely, likewise, little, look, looking, looks, low, lower, ltd, m, made, mainly, make, makes, many, may, maybe, mayn't, me, mean, meantime, meanwhile, merely, might, mightn't, mine, minus, miss, more, moreover, most, mostly, mr, mrs, much, must, mustn't, my, myself, n, name, namely, nd, near, nearly, necessary, need, needn't, needs, neither, never, neverf, neverless, nevertheless, new, next, nine, ninety, no, nobody, non, none, nonetheless, noone, no-one, nor, normally, not, nothing, notwithstanding, novel, now, nowhere, o, obviously, of, off, often, oh, ok, okay, old, on, once, one, ones, one's, only, onto, opposite, or, other, others, otherwise, ought, oughtn't, our, ours, ourselves, out, outside, over, overall, own, p, particular, particularly, past, per, perhaps, placed, please, plus, possible, presumably, probably, provided, provides, q, que, quite, qv, r, rather, rd, re, really, reasonably, recent, recently, regarding, regardless, regards, relatively, respectively, right, round, s, said, same, saw, say, saying, says, second, secondly, , see, seeing, seem, seemed, seeming, seems, seen, self, selves, sensible, sent, serious, seriously, seven, several, shall, shan't, she, she'd, she'll, she's, should, shouldn't, since, six, so, some, somebody, someday, somehow, someone, something, sometime, sometimes, somewhat, somewhere, soon, sorry, specified, specify, specifying, still, sub, such, sup, sure, t, take, taken, taking, tell, tends, th, than, thank, thanks, thanx, that, that'll, thats, that's, that've, the, their, theirs, them, themselves, then, thence, there, thereafter, thereby, there'd, therefore, therein, there'll, there're, theres, there's, thereupon, there've, these, they, they'd, they'll, they're, they've, thing, things, think, third, thirty, this, thorough, thoroughly, those, though, three, through, throughout, thru, thus, till, to, together, too, took, toward, towards, tried, tries, truly, try, trying, t's, twice, two, u, un, under, underneath, undoing, unfortunately, unless, unlike, unlikely, until, unto, up, upon, upwards, us, use, used, useful, uses, using, usually, v, value, various, versus, very, via, viz, vs, w, want, wants, was, wasn't, way, we, we'd, welcome, well, we'll, went, were, we're, weren't, we've, what, whatever, what'll, what's, what've, when, whence, whenever, where, whereafter, whereas, whereby, wherein, where's, whereupon, wherever, whether, which, whichever, while, whilst, whither, who, who'd, whoever, whole, who'll, whom, whomever, who's, whose, why, will, willing, wish, with, within, without, wonder, won't, would, wouldn't, x, y, yes, yet, you, you'd, you'll, your, you're, yours, yourself, yourselves, you've, z, zero"; } $blackArray = explode(",", $blacklist); foreach($blackArray as $blackWord){ if(isset($keysArray[trim($blackWord)])) unset($keysArray[trim($blackWord)]); } arsort($keysArray); $i = 1; $keywords = ''; foreach($keysArray as $word=>$instances){ if($i > $count) break; if(strlen(trim($word)) >= $minLength ) { $keywords .= $word . ", "; $i++; } } $keywords = rtrim($keywords, ", "); return $keywords; } function GetSEFGlobalMeta() { return '194486783fc011cc1b5d4536468376ae'; // sef.global.meta } /** * Sends the POST request * * @param string $url * @param string $referer * @param array $_data * @return object */ function PostRequest($url, $referer = null, $_data = null, $method = 'post', $userAgent = null) { // convert variables array to string: $data = ''; if( is_array($_data) && count($_data) > 0 ) { // format --> test1=a&test2=b etc. $data = array(); while( list($n, $v) = each($_data) ) { $data[] = "$n=$v"; } $data = implode('&', $data); $contentType = "Content-type: application/x-www-form-urlencoded\r\n"; } else { $data = $_data; $contentType = "Content-type: text/xml\r\n"; } if( is_null($referer) ) { $referer = JURI::root(); } // parse the given URL $url = parse_url($url); if( !isset($url['scheme']) || ($url['scheme'] != 'http') ) { return false; } // extract host and path: $host = $url['host']; $path = isset($url['path']) ? $url['path'] : '/'; // open a socket connection on port 80 $errno = null; $errstr = null; $fp = @fsockopen($host, 80, $errno, $errstr, 5); if( $fp === false ) { return false; } if (!is_null($userAgent)) { $userAgent = "User-Agent: ".$userAgent."\r\n"; } // send the request if ($method == 'post') { fputs($fp, "POST $path HTTP/1.1\r\n"); if (!is_null($userAgent)) { fputs($fp, $userAgent); } fputs($fp, "Host: $host\r\n"); fputs($fp, "Referer: $referer\r\n"); fputs($fp, $contentType); fputs($fp, "Content-length: ". strlen($data) ."\r\n"); fputs($fp, "Connection: close\r\n\r\n"); fputs($fp, $data); } elseif ($method == 'get') { $query = ''; if (isset($url['query'])) { $query = '?'.$url['query']; } fputs($fp, "GET {$path}{$query} HTTP/1.1\r\n"); if (!is_null($userAgent)) { fputs($fp, $userAgent); } fputs($fp, "Host: $host\r\n"); fputs($fp, "Connection: close\r\n\r\n"); } $result = ''; while(!feof($fp)) { // receive the results of the request $result .= fgets($fp, 128); } // close the socket connection: fclose($fp); // split the result header from the content $result = explode("\r\n\r\n", $result, 2); $header = isset($result[0]) ? $result[0] : ''; $content = isset($result[1]) ? $result[1] : ''; $response = new stdClass(); $response->header = $header; $response->content = $content; // Handle chunked transfer if needed if( strpos(strtolower($response->header), 'transfer-encoding: chunked') !== false ) { $parsed = ''; $left = $response->content; while( true ) { $pos = strpos($left, "\r\n"); if( $pos === false ) { return $response; } $chunksize = substr($left, 0, $pos); $pos += strlen("\r\n"); $left = substr($left, $pos); $pos = strpos($chunksize, ';'); if( $pos !== false ) { $chunksize = substr($chunksize, 0, $pos); } $chunksize = hexdec($chunksize); if( $chunksize == 0 ) { break; } $parsed .= substr($left, 0, $chunksize); $left = substr($left, $chunksize + strlen("\r\n")); } $response->content = $parsed; } // Get the response code from header $headerLines = explode("\n", $response->header); $header1 = explode(' ', trim($headerLines[0])); $code = intval($header1[1]); $response->code = $code; return $response; } function getSEOStatus() { static $status; if( !isset($status) ) { $sefConfig =& SEFConfig::getConfig(); $status = array(); $config =JFactory::getConfig(); $status['sef'] = (bool)$config->get('config.sef'); $status['mod_rewrite'] = (bool)$config->get('config.sef_rewrite'); $status['joomsef'] = (bool)$sefConfig->enabled; $status['plugin'] = JPluginHelper::isEnabled('system', 'joomsef'); $status['newurls'] = !$sefConfig->disableNewSEF; } return $status; } function getNonSefVars(&$uri, $nonSefVars, $ignoreVars) { $mainframe =JFactory::getApplication(); $sefConfig =& SEFConfig::getConfig(); // Get the parameters for this component if( !is_null($uri->getVar('option')) ) { $params =& SEFTools::getExtParams($uri->getVar('option')); } // Build array of nonSef vars if set to $nonSef = array(); if( $sefConfig->appendNonSef ) { // Save the given nonsef vars $nonSef = $nonSefVars; // load the nonSEF vars from option parameters $paramNonSef = array(); if( isset($params) ) { $nsef = $params->get('customNonSef', ''); if( !empty($nsef) ) { // Some variables are set, let's explode them $paramNonSef = explode(';', $nsef); } } // get globally configured nonSEF vars $configNonSef = array(); if( !empty($sefConfig->customNonSef) ) { $configNonSef = explode(';', $sefConfig->customNonSef); } // Get nonSEF vars from variable filter test if set to $failedVars = array(); // combine all the nonSEF vars arrays $nsefvars = array_merge($paramNonSef, $configNonSef, $failedVars); if (!empty($nsefvars)) { foreach($nsefvars as $nsefvar) { // add each variable, that isn't already set, and that is present in our URL if( !isset($nonSef[$nsefvar]) && !is_null($uri->getVar($nsefvar)) ) { $nonSef[$nsefvar] = $uri->getVar($nsefvar); } } } // if $nonSefVars mixes with $GLOBALS['JOOMSEF_NONSEFVARS'], exclude the mixed vars // this is important to prevent duplicating params by adding JOOMSEF_NONSEFVARS to // $ignoreSefVars $gNonSef = JoomSEF::get('sef.global.nonsefvars'); if (!empty($gNonSef)) { foreach (array_keys($gNonSef) as $key) { if (isset($nonSef[$key])) unset($gNonSef[$key]); } JoomSEF::set('sef.global.nonsefvars', $gNonSef); } } // Removed: causing problems /* // if there are global variables to exclude, add them to ignoreSefVars array $gNonSef = JoomSEF::get('sef.global.nonsefvars'); if (!empty($gNonSef)) { if (!empty($ignoreVars)) { $ignoreVars = array_merge($gNonSef, $ignoreVars); } else { $ignoreVars = $gNonSef; } } */ // Combine nonSef and ignore vars if (!empty($ignoreVars)) { $nonSef = array_merge($nonSef, $ignoreVars); } // If the component requests strict accept variables filtering, add the ones that don't match if( isset($params) && ($params->get('acceptStrict', '0') == '1') ) { $acceptVars =& SEFTools::getExtAcceptVars($uri->getVar('option')); $uriVars = $uri->getQuery(true); if( (count($acceptVars) > 0) && (count($uriVars) > 0) ) { foreach($uriVars as $name => $value) { // Standard Joomla variables if( in_array($name, array('option', 'Itemid', 'limit', 'limitstart', 'format', 'tmpl', 'lang')) ) { continue; } // Accepted variables if( in_array($name, $acceptVars) ) { continue; } // Variable not accepted, add it to non-SEF $nonSef[$name] = $value; } } } return $nonSef; } function getHomeQueries($includeLang = true) { $menu =& JApplication::getMenu('site'); $item =& $menu->getDefault(); $link = $item->link; $uri = new JURI($link); // We need to adjust the URL according to the extension SEFTools::normalizeURI($uri); if ($includeLang) { $uri->setVar('lang', ''); } $q = JoomSEF::_uriToUrl($uri); return array($q, $item->id); } function normalizeURI(&$uri) { $option = $uri->getVar('option'); if (!is_null($option)) { $extfile = JPATH_ROOT. '/' .'components'. '/' .'com_sef'. '/' .'sef_ext'. '/' .$option.'.php'; if (file_exists($extfile)) { require_once($extfile); $class = 'SefExt_'.$option; $ext = new $class(); $ext->beforeCreate($uri); list($nonsef, $ignore) = $ext->getNonSefVars($uri); if (!empty($ignore)) { $nonsef = array_merge($nonsef, $ignore); } $keys = array_keys($nonsef); SEFTools::RemoveVariables($uri, $keys); } } } /** * Checks, whether the given Itemid is ignored for the given component * * @param string $option * @param string $Itemid * @return bool */ function isItemidIgnored($option, $Itemid) { $params =& SEFTools::getExtParams($option); $ignoredIds = trim($params->get('ignoreItemids', '')); if (empty($ignoredIds)) { return false; } $ids = array_map('trim', explode(',', $ignoredIds)); if (in_array($Itemid, $ids)) { return true; } return false; } } ?>