????JFIF??x?x????'403WebShell
403Webshell
Server IP : 104.21.112.1  /  Your IP : 216.73.216.145
Web Server : LiteSpeed
System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
User : tempvsty ( 647)
PHP Version : 8.0.30
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/tempvsty/./eaabusiness.com/wp-content/plugins/redirection/models/url/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/tempvsty/./eaabusiness.com/wp-content/plugins/redirection/models/url/url-flags.php
<?php

/**
 * Represent URL source flags.
 */
class Red_Source_Flags {
	const QUERY_IGNORE = 'ignore';
	const QUERY_EXACT = 'exact';
	const QUERY_PASS = 'pass';
	const QUERY_EXACT_ORDER = 'exactorder';

	const FLAG_QUERY = 'flag_query';
	const FLAG_CASE = 'flag_case';
	const FLAG_TRAILING = 'flag_trailing';
	const FLAG_REGEX = 'flag_regex';

	/**
	 * Case insensitive matching
	 *
	 * @var boolean
	 */
	private $flag_case = false;

	/**
	 * Ignored trailing slashes
	 *
	 * @var boolean
	 */
	private $flag_trailing = false;

	/**
	 * Regular expression
	 *
	 * @var boolean
	 */
	private $flag_regex = false;

	/**
	 * Query parameter matching
	 *
	 * @var self::QUERY_EXACT|self::QUERY_IGNORE|self::QUERY_PASS|self::QUERY_EXACT_ORDER
	 */
	private $flag_query = self::QUERY_EXACT;

	/**
	 * Values that have been set
	 *
	 * @var array
	 */
	private $values_set = [];

	/**
	 * Constructor
	 *
	 * @param array|null $json JSON object.
	 */
	public function __construct( $json = null ) {
		if ( $json !== null ) {
			$this->set_flags( $json );
		}
	}

	/**
	 * Get list of valid query types as an array
	 *
	 * @return string[]
	 */
	private function get_allowed_query() {
		return [
			self::QUERY_IGNORE,
			self::QUERY_EXACT,
			self::QUERY_PASS,
			self::QUERY_EXACT_ORDER,
		];
	}

	/**
	 * Parse flag data.
	 *
	 * @param array $json Flag data.
	 * @return void
	 */
	public function set_flags( array $json ) {
		if ( isset( $json[ self::FLAG_QUERY ] ) && in_array( $json[ self::FLAG_QUERY ], $this->get_allowed_query(), true ) ) {
			$this->flag_query = $json[ self::FLAG_QUERY ];
		}

		if ( isset( $json[ self::FLAG_CASE ] ) && is_bool( $json[ self::FLAG_CASE ] ) ) {
			$this->flag_case = $json[ self::FLAG_CASE ] ? true : false;
		}

		if ( isset( $json[ self::FLAG_TRAILING ] ) && is_bool( $json[ self::FLAG_TRAILING ] ) ) {
			$this->flag_trailing = $json[ self::FLAG_TRAILING ] ? true : false;
		}

		if ( isset( $json[ self::FLAG_REGEX ] ) && is_bool( $json[ self::FLAG_REGEX ] ) ) {
			$this->flag_regex = $json[ self::FLAG_REGEX ] ? true : false;

			if ( $this->flag_regex ) {
				// Regex auto-disables other things
				$this->flag_query = self::QUERY_EXACT;
			}
		}

		// Keep track of what values have been set, so we know what to override with defaults later
		$this->values_set = array_intersect( array_keys( $json ), array_keys( $this->get_json() ) );
	}

	/**
	 * Return `true` if ignore trailing slash, `false` otherwise
	 *
	 * @return boolean
	 */
	public function is_ignore_trailing() {
		return $this->flag_trailing;
	}

	/**
	 * Return `true` if ignore case, `false` otherwise
	 *
	 * @return boolean
	 */
	public function is_ignore_case() {
		return $this->flag_case;
	}

	/**
	 * Return `true` if ignore trailing slash, `false` otherwise
	 *
	 * @return boolean
	 */
	public function is_regex() {
		return $this->flag_regex;
	}

	/**
	 * Return `true` if exact query match, `false` otherwise
	 *
	 * @return boolean
	 */
	public function is_query_exact() {
		return $this->flag_query === self::QUERY_EXACT;
	}

	/**
	 * Return `true` if exact query match in set order, `false` otherwise
	 *
	 * @return boolean
	 */
	public function is_query_exact_order() {
		return $this->flag_query === self::QUERY_EXACT_ORDER;
	}

	/**
	 * Return `true` if ignore query params, `false` otherwise
	 *
	 * @return boolean
	 */
	public function is_query_ignore() {
		return $this->flag_query === self::QUERY_IGNORE;
	}

	/**
	 * Return `true` if ignore and pass query params, `false` otherwise
	 *
	 * @return boolean
	 */
	public function is_query_pass() {
		return $this->flag_query === self::QUERY_PASS;
	}

	/**
	 * Return the flags as a JSON object
	 *
	 * @return array
	 */
	public function get_json() {
		return [
			self::FLAG_QUERY => $this->flag_query,
			self::FLAG_CASE => $this->is_ignore_case(),
			self::FLAG_TRAILING => $this->is_ignore_trailing(),
			self::FLAG_REGEX => $this->is_regex(),
		];
	}

	/**
	 * Return flag data, with defaults removed from the data.
	 *
	 * @param array $defaults Defaults to remove.
	 * @return array
	 */
	public function get_json_without_defaults( $defaults ) {
		$json = $this->get_json();

		if ( count( $defaults ) > 0 ) {
			foreach ( $json as $key => $value ) {
				if ( isset( $defaults[ $key ] ) && $value === $defaults[ $key ] ) {
					unset( $json[ $key ] );
				}
			}
		}

		return $json;
	}

	/**
	 * Return flag data, with defaults filling in any gaps not set.
	 *
	 * @return array
	 */
	public function get_json_with_defaults() {
		$settings = red_get_options();
		$json = $this->get_json();
		$defaults = [
			self::FLAG_QUERY => $settings[ self::FLAG_QUERY ],
			self::FLAG_CASE => $settings[ self::FLAG_CASE ],
			self::FLAG_TRAILING => $settings[ self::FLAG_TRAILING ],
			self::FLAG_REGEX => $settings[ self::FLAG_REGEX ],
		];

		foreach ( $this->values_set as $key ) {
			if ( ! isset( $json[ $key ] ) ) {
				$json[ $key ] = $defaults[ $key ];
			}
		}

		return $json;
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit