403Webshell
Server IP : 23.111.136.34  /  Your IP : 216.73.216.136
Web Server : Apache
System : Linux servidor.eurohost.com.br 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User : meusitei ( 1072)
PHP Version : 5.6.40
Disable Function : show_source, system, shell_exec, passthru, proc_open
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/meusitei/public_html/wp-content/plugins/searchwp/includes/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/meusitei/public_html/wp-content/plugins/searchwp/includes/class.stemmer.php
<?php

if ( ! defined( 'ABSPATH' ) ) {
	die();
}

class SearchWPStemmer
{
	/**
	 * Stemming algorithm
	 * Copyright (c) 2005 Richard Heyes (http://www.phpguru.org/)
	 * All rights reserved.
	 * This script is free software.
	 * Modified to work with php versions prior 5 by Ando Saabas
	 */

	/**
	 * Regex for matching a consonant
	 */
	private $regex_consonant = '(?:[bcdfghjklmnpqrstvwxz]|(?<=[aeiou])y|^y)';


	/**
	 * Regex for matching a vowel
	 */
	private $regex_vowel = '(?:[aeiou]|(?<![aeiou])y)';

	private $supported_language_codes = array(
		'en' => 'English',
		'da' => 'Danish',
		'nl' => 'Dutch',
		'fr' => 'French',
		'de' => 'German',
		'it' => 'Italian',
		'nb' => 'Norwegian',
		'nn' => 'Norwegian',
		'pt' => 'Portuguese',
		'ro' => 'Romanian',
		'ru' => 'Russian',
		'es' => 'Spanish',
		'sv' => 'Swedish',
	);
	private $local_stemmer;
	private $has_local_stemmer = true;

	function get_supported_language_codes() {
		return array_keys( $this->supported_language_codes );
	}

	private function set_local_stemmer() {
		// Determine which locale we're using.
		$site_locale   = get_locale();
		$language_code = strtolower( substr( $site_locale, 0, 2 ) );

		if ( array_key_exists( $language_code, $this->supported_language_codes ) ) {
			$stemmer = '\Wamania\Snowball\\' . $this->supported_language_codes[ $language_code ];

			if ( class_exists( $stemmer ) ) {
				$this->local_stemmer = new $stemmer();
			} else {
				$this->has_local_stemmer = false;
			}
		} else {
			$this->has_local_stemmer = false;
		}
	}

	/**
	 * Stems a word. Simple huh?
	 *
	 * @param  string $word Word to stem
	 * @return string       Stemmed word
	 */
	function stem($word) {
		// SearchWP 3.1 introduced a better core stemmer that supports many languages
		// out of the box. This wasn't feasible prior to WordPress' recommended PHP
		// version being 5.2 but with that change we have this change!
		if ( version_compare( PHP_VERSION, '5.4', '>=' ) && function_exists( 'utf8_decode' ) ) {

			// Bring in our Composer dependencies.
			include_once SWP()->dir . '/vendor/autoload.php';

			if ( ! is_object( $this->local_stemmer ) ) {
				$this->set_local_stemmer();
			}

			return $this->has_local_stemmer
					? $this->local_stemmer->stem( $word )
					: $this->legacy_stem( $word );
		} else {
			if ( ! function_exists( 'utf8_decode' ) ) {
				do_action( 'searchwp_log', 'Reverting to legacy stemmer (utf8_decode does not exist)' );
			} else {
				do_action( 'searchwp_log', 'Reverting to legacy stemmer (please upgrade to PHP 7)' );
			}

			return $this->legacy_stem( $word );
		}
	}

	/**
	 * This is the original method, now considered legacy (but not deprecated).
	 */
	public function legacy_stem($word) {
		// This is a fallback from the original English stemmer that originally
		// shipped with SearchWP. It'll be used as that fallback for back compat.
		if (strlen($word) <= 2) {
			return $word;
		}

		$word = $this->step1ab($word);
		$word = $this->step1c($word);
		$word = $this->step2($word);
		$word = $this->step3($word);
		$word = $this->step4($word);
		$word = $this->step5($word);

		return $word;
	}


	/**
	 * Step 1
	 */
	function step1ab($word)
	{
		// Part a
		if (substr($word, -1) == 's') {

			$this->replace($word, 'sses', 'ss')
			OR $this->replace($word, 'ies', 'i')
			OR $this->replace($word, 'ss', 'ss')
			OR $this->replace($word, 's', '');
		}

		// Part b
		if (substr($word, -2, 1) != 'e' OR !$this->replace($word, 'eed', 'ee', 0)) { // First rule
			$v = $this->regex_vowel;
			// ing and ed
			if (   preg_match("#$v+#", substr($word, 0, -3)) && $this->replace($word, 'ing', '')
				OR preg_match("#$v+#", substr($word, 0, -2)) && $this->replace($word, 'ed', '')) { // Note use of && and OR, for precedence reasons

				// If one of above two test successful
				if (    !$this->replace($word, 'at', 'ate')
					AND !$this->replace($word, 'bl', 'ble')
					AND !$this->replace($word, 'iz', 'ize')) {

					// Double consonant ending
					if (    $this->doubleConsonant($word)
						AND substr($word, -2) != 'll'
						AND substr($word, -2) != 'ss'
						AND substr($word, -2) != 'zz') {

						$word = substr($word, 0, -1);

					} else if ($this->m($word) == 1 AND $this->cvc($word)) {
						$word .= 'e';
					}
				}
			}
		}

		return $word;
	}


	/**
	 * Step 1c
	 *
	 * @param string $word Word to stem
	 * @return string $word Stemmed word
	 */
	function step1c($word)
	{
		$v = $this->regex_vowel;

		if (substr($word, -1) == 'y' && preg_match("#$v+#", substr($word, 0, -1))) {
			$this->replace($word, 'y', 'i');
		}

		return $word;
	}


	/**
	 * Step 2
	 *
	 * @param string $word Word to stem
	 * @return string $word Stemmed word
	 */
	function step2($word)
	{
		switch (substr($word, -2, 1)) {
			case 'a':
				$this->replace($word, 'ational', 'ate', 0)
				OR $this->replace($word, 'tional', 'tion', 0);
				break;

			case 'c':
				$this->replace($word, 'enci', 'ence', 0)
				OR $this->replace($word, 'anci', 'ance', 0);
				break;

			case 'e':
				$this->replace($word, 'izer', 'ize', 0);
				break;

			case 'g':
				$this->replace($word, 'logi', 'log', 0);
				break;

			case 'l':
				$this->replace($word, 'entli', 'ent', 0)
				OR $this->replace($word, 'ousli', 'ous', 0)
				OR $this->replace($word, 'alli', 'al', 0)
				OR $this->replace($word, 'bli', 'ble', 0)
				OR $this->replace($word, 'eli', 'e', 0);
				break;

			case 'o':
				$this->replace($word, 'ization', 'ize', 0)
				OR $this->replace($word, 'ation', 'ate', 0)
				OR $this->replace($word, 'ator', 'ate', 0);
				break;

			case 's':
				$this->replace($word, 'iveness', 'ive', 0)
				OR $this->replace($word, 'fulness', 'ful', 0)
				OR $this->replace($word, 'ousness', 'ous', 0)
				OR $this->replace($word, 'alism', 'al', 0);
				break;

			case 't':
				$this->replace($word, 'biliti', 'ble', 0)
				OR $this->replace($word, 'aliti', 'al', 0)
				OR $this->replace($word, 'iviti', 'ive', 0);
				break;
		}

		return $word;
	}


	/**
	 * Step 3
	 *
	 * @param string $word String to stem
	 * @return string $word Stemmed word
	 */
	function step3($word)
	{
		switch (substr($word, -2, 1)) {
			case 'a':
				$this->replace($word, 'ical', 'ic', 0);
				break;

			case 's':
				$this->replace($word, 'ness', '', 0);
				break;

			case 't':
				$this->replace($word, 'icate', 'ic', 0)
				OR $this->replace($word, 'iciti', 'ic', 0);
				break;

			case 'u':
				$this->replace($word, 'ful', '', 0);
				break;

			case 'v':
				$this->replace($word, 'ative', '', 0);
				break;

			case 'z':
				$this->replace($word, 'alize', 'al', 0);
				break;
		}

		return $word;
	}


	/**
	 * Step 4
	 *
	 * @param string $word Word to stem
	 * @return string $word Stemmed word
	 */
	function step4($word)
	{
		switch (substr($word, -2, 1)) {
			case 'a':
				$this->replace($word, 'al', '', 1);
				break;

			case 'c':
				$this->replace($word, 'ance', '', 1)
				OR $this->replace($word, 'ence', '', 1);
				break;

			case 'e':
				$this->replace($word, 'er', '', 1);
				break;

			case 'i':
				$this->replace($word, 'ic', '', 1);
				break;

			case 'l':
				$this->replace($word, 'able', '', 1)
				OR $this->replace($word, 'ible', '', 1);
				break;

			case 'n':
				$this->replace($word, 'ant', '', 1)
				OR $this->replace($word, 'ement', '', 1)
				OR $this->replace($word, 'ment', '', 1)
				OR $this->replace($word, 'ent', '', 1);
				break;

			case 'o':
				if (substr($word, -4) == 'tion' OR substr($word, -4) == 'sion') {
					$this->replace($word, 'ion', '', 1);
				} else {
					$this->replace($word, 'ou', '', 1);
				}
				break;

			case 's':
				$this->replace($word, 'ism', '', 1);
				break;

			case 't':
				$this->replace($word, 'ate', '', 1)
				OR $this->replace($word, 'iti', '', 1);
				break;

			case 'u':
				$this->replace($word, 'ous', '', 1);
				break;

			case 'v':
				$this->replace($word, 'ive', '', 1);
				break;

			case 'z':
				$this->replace($word, 'ize', '', 1);
				break;
		}

		return $word;
	}


	/**
	 * Step 5
	 *
	 * @param string $word Word to stem
	 * @return string $word Stemmed word
	 */
	function step5($word)
	{
		// Part a
		if (substr($word, -1) == 'e') {
			if ($this->m(substr($word, 0, -1)) > 1) {
				$this->replace($word, 'e', '');

			} else if ($this->m(substr($word, 0, -1)) == 1) {

				if (!$this->cvc(substr($word, 0, -1))) {
					$this->replace($word, 'e', '');
				}
			}
		}

		// Part b
		if ($this->m($word) > 1 AND $this->doubleConsonant($word) AND substr($word, -1) == 'l') {
			$word = substr($word, 0, -1);
		}

		return $word;
	}


	/**
	 * Replaces the first string with the second, at the end of the string. If third
	 * arg is given, then the preceding string must match that m count at least.
	 *
	 * @param  string $str   String to check
	 * @param  string $check Ending to check for
	 * @param  string $repl  Replacement string
	 * @param  int    $m     Optional minimum number of m() to meet
	 * @return bool          Whether the $check string was at the end
	 *                       of the $str string. True does not necessarily mean
	 *                       that it was replaced.
	 */
	function replace(&$str, $check, $repl, $m = null)
	{
		$len = 0 - strlen($check);

		if (substr($str, $len) == $check) {
			$substr = substr($str, 0, $len);
			if (is_null($m) OR $this->m($substr) > $m) {
				$str = $substr . $repl;
			}

			return true;
		}

		return false;
	}


	/**
	 * What, you mean it's not obvious from the name?
	 *
	 * m() measures the number of consonant sequences in $str. if c is
	 * a consonant sequence and v a vowel sequence, and <..> indicates arbitrary
	 * presence,
	 *
	 * <c><v>       gives 0
	 * <c>vc<v>     gives 1
	 * <c>vcvc<v>   gives 2
	 * <c>vcvcvc<v> gives 3
	 *
	 * @param  string $str The string to return the m count for
	 * @return int         The m count
	 */
	function m($str)
	{
		$c = $this->regex_consonant;
		$v = $this->regex_vowel;

		$str = preg_replace("#^$c+#", '', $str);
		$str = preg_replace("#$v+$#", '', $str);

		preg_match_all("#($v+$c+)#", $str, $matches);

		return count($matches[1]);
	}


	/**
	 * Returns true/false as to whether the given string contains two
	 * of the same consonant next to each other at the end of the string.
	 *
	 * @param  string $str String to check
	 * @return bool        Result
	 */
	function doubleConsonant($str)
	{
		$c = $this->regex_consonant;

		return preg_match("#$c{2}$#", $str, $matches) AND $matches[0][0] == $matches[0][1];
	}


	/**
	 * Checks for ending CVC sequence where second C is not W, X or Y
	 *
	 * @param  string $str String to check
	 * @return bool        Result
	 */
	function cvc($str)
	{
		$c = $this->regex_consonant;
		$v = $this->regex_vowel;

		return     preg_match("#($c$v$c)$#", $str, $matches)
		AND strlen($matches[1]) == 3
		AND $matches[1][2] != 'w'
		AND $matches[1][2] != 'x'
		AND $matches[1][2] != 'y';
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit