403Webshell
Server IP : 130.225.57.55  /  Your IP : 216.73.216.60
Web Server : Apache
System : Linux wp-vhost07 5.15.0-173-generic #183-Ubuntu SMP Fri Mar 6 13:29:34 UTC 2026 x86_64
User : root ( 0)
PHP Version : 8.1.2-1ubuntu2.25
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /srv/www/reco2st.eu/https/wp-content/plugins/w3-total-cache/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /srv/www/reco2st.eu/https/wp-content/plugins/w3-total-cache/Extension_CloudFlare_Plugin_Admin.php
<?php
/**
 * File: Extension_CloudFlare_Plugin_Admin.php
 *
 * @package W3TC
 */

namespace W3TC;

/**
 * Class Extension_CloudFlare_Plugin_Admin
 *
 * phpcs:disable PSR2.Classes.PropertyDeclaration.Underscore
 * phpcs:disable WordPress.PHP.NoSilencedErrors.Discouraged
 * phpcs:disable Generic.CodeAnalysis.UnusedFunctionParameter
 */
class Extension_CloudFlare_Plugin_Admin {
	/**
	 * Config
	 *
	 * @var Config
	 */
	private $_config;

	/**
	 * CloudFlare API
	 *
	 * @var Extension_CloudFlare_Api
	 */
	private $api;

	/**
	 * Adds Cloudflare to the list of extensions.
	 *
	 * @param array $extensions Existing extensions.
	 * @param mixed $w3tc_config     Current configuration.
	 *
	 * @return array Updated extensions list.
	 */
	public static function w3tc_extensions( $extensions, $w3tc_config ) {
		$current_user            = wp_get_current_user();
		$w3tc_message            = array( 'Cloudflare' );
		$cloudflare_signup_email = '';
		$cloudflare_signup_user  = '';

		if ( is_a( $current_user, 'WP_User' ) ) {
			if ( $current_user->user_email ) {
				$cloudflare_signup_email = $current_user->user_email;
			}

			if ( $current_user->user_login && 'admin' !== $current_user->user_login ) {
				$cloudflare_signup_user = $current_user->user_login;
			}
		}

		$extensions['cloudflare'] = array(
			'name'            => 'Cloudflare',
			'author'          => 'W3 EDGE',
			'description'     => wp_kses(
				sprintf(
					/* translators: 1 opening HTML a tag to Cloudflare signup page with affiliate association, 2 closing HTML a tag, 3 opening HTML abbr tag, 4 closing HTML abbr tag, 5 opening HTML a tag to Cloudflare account page, 6 closing HTML a tag, 7 opening HTML a tag to Cloudflare help page, 8 closing HTML a tag. */
					__(
						'Cloudflare protects and accelerates websites. %1$sSign up now for free%2$s to get started, or if you have an account simply log in to obtain your %3$sAPI%4$s token / global key from the %5$saccount page%6$s to enter it on the General Settings box that appears after plugin activation. Contact the Cloudflare %7$ssupport team%8$s with any questions.',
						'w3-total-cache'
					),
					'<a href="' . esc_url( 'https://www.cloudflare.com/sign-up.html?affiliate=w3edge&amp;seed_domain=' . Util_Environment::host() . '&amp;email=' . $cloudflare_signup_email . '&amp;username=' . $cloudflare_signup_user ) . '" target="_blank">',
					'</a>',
					'<abbr title="' . esc_attr__( 'Application Programming Interface', 'w3-total-cache' ) . '">',
					'</abbr>',
					'<a target="_blank" href="https://www.cloudflare.com/my-account">',
					'</a>',
					'<a href="http://www.cloudflare.com/help.html" target="_blank">',
					'</a>'
				),
				array(
					'a'    => array(
						'href'   => array(),
						'target' => array(),
					),
					'abbr' => array(
						'title' => array(),
					),
				)
			),
			'author_uri'      => 'https://www.w3-edge.com/',
			'extension_uri'   => 'https://www.w3-edge.com/',
			'extension_id'    => 'cloudflare',
			'settings_exists' => true,
			'version'         => '0.3',
			'enabled'         => true,
			'requirements'    => implode( ', ', $w3tc_message ),
			'path'            => 'w3-total-cache/Extension_CloudFlare_Plugin.php',
		);

		return $extensions;
	}

	/**
	 * Initializes and runs the Cloudflare extension.
	 *
	 * @return void
	 */
	public function run() {
		$w3tc_c        = Dispatcher::config();
		$this->api     = new Extension_CloudFlare_Api(
			array(
				'email'                 => $w3tc_c->get_string( array( 'cloudflare', 'email' ) ),
				'key'                   => $w3tc_c->get_string( array( 'cloudflare', 'key' ) ),
				'zone_id'               => $w3tc_c->get_string( array( 'cloudflare', 'zone_id' ) ),
				'timelimit_api_request' => $w3tc_c->get_integer( array( 'cloudflare', 'timelimit.api_request' ) ),
			)
		);
		$this->_config = $w3tc_c;

		add_action( 'w3tc_config_ui_save-w3tc_extensions', array( $this, 'w3tc_save_options' ), 10, 0 );

		add_filter( 'w3tc_dashboard_actions', array( $this, 'w3tc_dashboard_actions' ) );

		$widget = new Extension_CloudFlare_Widget();
		$widget->init();

		// modify settings page.
		add_filter( 'w3tc_ui_config_item_cdnfsd.enabled', array( $this, 'w3tc_ui_config_item_cdnfsd_enabled' ) );
		add_filter( 'w3tc_ui_config_item_cdnfsd.engine', array( $this, 'w3tc_ui_config_item_cdnfsd_engine' ) );

		add_filter( 'w3tc_settings_general_anchors', array( $this, 'w3tc_settings_general_anchors' ) );
		add_action( 'w3tc_settings_general_boxarea_cloudflare', array( $this, 'w3tc_settings_general_boxarea_cloudflare' ) );

		// modify main menu.
		add_filter( 'w3tc_admin_bar_menu', array( $this, 'w3tc_admin_bar_menu' ) );

		// dashboard.
		add_action( 'admin_print_scripts-toplevel_page_w3tc_dashboard', array( $this, 'admin_print_scripts_w3tc_dashboard' ) );
		add_filter( 'w3tc_admin_actions', array( $this, 'w3tc_admin_actions' ) );

		// own settings page.
		add_action( 'w3tc_extension_page_cloudflare', array( '\W3TC\Extension_CloudFlare_Page', 'w3tc_extension_page_cloudflare' ) );

		add_action( 'w3tc_ajax', array( '\W3TC\Extension_CloudFlare_Popup', 'w3tc_ajax' ) );

		$w3tc_cdnfsd_engine = $w3tc_c->get_string( 'cdnfsd.engine' );

		if ( empty( $w3tc_cdnfsd_engine ) || 'cloudflare' === $w3tc_cdnfsd_engine ) {
			add_action( 'w3tc_settings_box_cdnfsd', array( '\W3TC\Extension_CloudFlare_Page', 'w3tc_settings_box_cdnfsd' ) );
		}

		// add notices about api health.
		if ( Util_Admin::is_w3tc_admin_page() ) {
			add_action( 'admin_notices', array( $this, 'admin_notices' ) );
			add_action( 'network_admin_notices', array( $this, 'admin_notices' ) );
		}

		$this->check_ip_versions();
	}

	/**
	 * Displays admin notices related to Cloudflare.
	 *
	 * @return void
	 */
	public function admin_notices() {
		$plugins = get_plugins();
		if ( array_key_exists( 'cloudflare/cloudflare.php', $plugins ) && $this->_config->get_boolean( 'notes.cloudflare_plugin' ) ) {
			echo wp_kses(
				sprintf(
					/* translators: 1 opening HTML div tag with class "error" followed by opening HTML p tag, 2 HTML button with lable "Hide this message" that will hide the error message, 3 closing HTML p tag followed by closing HTML div tag. */
					__(
						'%1$sCloudflare plugin detected. We recommend removing the plugin as it offers no additional capabilities when W3 Total Cache is installed. This message will disappear when Cloudflare is removed. %2$s%3$s',
						'w3-total-cache'
					),
					'<div class="error"><p>',
					Util_Ui::button_hide_note( 'Hide this message', 'cloudflare_plugin' ),
					'</p></div>'
				),
				array(
					'div'   => array(
						'class' => array(),
					),
					'input' => array(
						'class'   => array(),
						'value'   => array(),
						'type'    => array(),
						'onclick' => array(),
					),
					'p'     => array(),
				)
			);
		}
	}

	/**
	 * Adds Cloudflare-specific menu items to the WordPress admin bar.
	 *
	 * @param array $menu_items Existing admin bar menu items.
	 *
	 * @return array Updated admin bar menu items.
	 */
	public function w3tc_admin_bar_menu( $menu_items ) {
		if (
			$this->_config->get_boolean( array( 'cloudflare', 'enabled' ) ) &&
			Extension_CloudFlare_Api::are_api_credentials_usable(
				$this->_config->get_string( array( 'cloudflare', 'email' ) ),
				$this->_config->get_string( array( 'cloudflare', 'key' ) )
			) &&
			! empty( $this->_config->get_string( array( 'cloudflare', 'zone_id' ) ) )
		) {
			$current_page = Util_Request::get_string( 'page', 'w3tc_dashboard' );

			$menu_items['20810.cloudflare'] = array(
				'id'     => 'w3tc_flush_cloudflare',
				'parent' => 'w3tc_flush',
				'title'  => __( 'Cloudflare', 'w3-total-cache' ),
				'href'   => Util_Nonce::admin_nonce_url(
					admin_url(
						'admin.php?page=' . $current_page . '&amp;w3tc_cloudflare_flush'
					),
					'w3tc_cloudflare_flush'
				),
			);
		}

		return $menu_items;
	}

	/**
	 * Checks and updates IP versions for Cloudflare.
	 *
	 * @return void
	 */
	public function check_ip_versions() {
		$state = Dispatcher::config_state_master();

		if ( $state->get_integer( 'extension.cloudflare.next_ips_check' ) < time() ) {
			// update asap to avoid multiple processes entering the check.
			$state->set( 'extension.cloudflare.next_ips_check', time() + 7 * 24 * 60 * 60 );

			$w3tc_data = array();
			try {
				$w3tc_data = $this->api->get_ip_ranges();
			} catch ( \Exception $ex ) { // phpcs:ignore Generic.CodeAnalysis.EmptyStatement.DetectedCatch
				// Missing exception handling?
			}

			if ( isset( $w3tc_data['ip4'] ) ) {
				$state->set( 'extension.cloudflare.ips.ip4', $w3tc_data['ip4'] );
			}

			if ( isset( $w3tc_data['ip6'] ) ) {
				$state->set( 'extension.cloudflare.ips.ip6', $w3tc_data['ip6'] );
			}

			$state->save();
		}
	}

	/**
	 * Adds Cloudflare admin actions for handling configuration.
	 *
	 * @param array $handlers Existing handlers.
	 *
	 * @return array Updated handlers.
	 */
	public function w3tc_admin_actions( $handlers ) {
		$handlers['cloudflare'] = 'Extension_CloudFlare_AdminActions';
		return $handlers;
	}

	/**
	 * Enqueues scripts for the Cloudflare dashboard.
	 *
	 * @return void
	 */
	public function admin_print_scripts_w3tc_dashboard() {
		wp_enqueue_script(
			'w3tc_extension_cloudflare_dashboard',
			plugins_url( 'Extension_CloudFlare_View_Dashboard.js', W3TC_FILE ),
			array( 'jquery' ),
			'1.0',
			true
		);
	}

	/**
	 * Adds Cloudflare-related actions to the W3 Total Cache dashboard.
	 *
	 * @param array $actions Existing actions.
	 *
	 * @return array Updated actions.
	 */
	public function w3tc_dashboard_actions( $actions ) {
		$email    = $this->_config->get_string( array( 'cloudflare', 'email' ) );
		$w3tc_key = $this->_config->get_string( array( 'cloudflare', 'key' ) );

		if ( ! Extension_CloudFlare_Api::are_api_credentials_usable( $email, $w3tc_key ) ) {
			return $actions;
		}

		$w3tc_modules       = Dispatcher::component( 'ModuleStatus' );
		$can_empty_memcache = $w3tc_modules->can_empty_memcache();
		$can_empty_opcode   = $w3tc_modules->can_empty_opcode();
		$can_empty_file     = $w3tc_modules->can_empty_file();
		$can_empty_varnish  = $w3tc_modules->can_empty_varnish();

		$actions[] = sprintf(
			'<input type="submit" class="dropdown-item" name="w3tc_cloudflare_flush_all_except_cf" value="%1$s"%2$s%3$s>',
			esc_attr__( 'Empty All Caches Except Cloudflare', 'w3-total-cache' ),
			( ! $can_empty_memcache && ! $can_empty_opcode && ! $can_empty_file && ! $can_empty_varnish ) ? ' disabled="disabled"' : '',
			Util_Ui::admin_submit_nonce_attr( 'w3tc_cloudflare_flush_all_except_cf' )
		);

		return $actions;
	}

	/**
	 * Modifies the configuration for enabling the CDN functionality.
	 *
	 * @param array $w3tc_a Configuration array.
	 *
	 * @return array Updated configuration.
	 */
	public function w3tc_ui_config_item_cdnfsd_enabled( $w3tc_a ) {
		$w3tc_c             = Dispatcher::config();
		$w3tc_cdnfsd_engine = $w3tc_c->get_string( 'cdnfsd.engine' );

		// overwrite behavior if controlled by extension.
		if ( empty( $w3tc_cdnfsd_engine ) || 'cloudflare' === $w3tc_cdnfsd_engine ) {
			$w3tc_a['value'] = true;
		}

		return $w3tc_a;
	}

	/**
	 * Modifies the engine configuration for the CDN functionality.
	 *
	 * @param array $w3tc_a Configuration array.
	 *
	 * @return array Updated configuration.
	 */
	public function w3tc_ui_config_item_cdnfsd_engine( $w3tc_a ) {
		$w3tc_c             = Dispatcher::config();
		$w3tc_cdnfsd_engine = $w3tc_c->get_string( 'cdnfsd.engine' );

		// overwrite behavior if controlled by extension.
		if ( empty( $w3tc_cdnfsd_engine ) || 'cloudflare' === $w3tc_cdnfsd_engine ) {
			$w3tc_a['value'] = 'cloudflare';
		}

		if ( isset( $w3tc_a['selectbox_values']['cloudflare'] ) ) {
			$w3tc_a['selectbox_values']['cloudflare']['label']    = 'Cloudflare';
			$w3tc_a['selectbox_values']['cloudflare']['disabled'] = null;
		}

		return $w3tc_a;
	}

	/**
	 * Adds Cloudflare anchors to the general settings page.
	 *
	 * @param array $anchors Existing anchors.
	 *
	 * @return array Updated anchors.
	 */
	public function w3tc_settings_general_anchors( $anchors ) {
		$anchors[] = array(
			'id'   => 'cloudflare',
			'text' => 'Cloudflare',
		);
		return $anchors;
	}

	/**
	 * Displays the Cloudflare box area in the general settings page.
	 *
	 * @return void
	 */
	public function w3tc_settings_general_boxarea_cloudflare() {
		$w3tc_config = $this->_config;
		include W3TC_DIR . '/Extension_CloudFlare_GeneralPage_View.php';
	}

	/**
	 * Saves Cloudflare-specific options.
	 *
	 * @return void
	 */
	public function w3tc_save_options() {
		if ( 'cloudflare' === Util_Request::get_string( 'extension' ) ) {
			$api    = Extension_CloudFlare_SettingsForUi::api();
			$errors = Extension_CloudFlare_SettingsForUi::settings_set( $api );

			if ( empty( $errors ) ) {
				Util_Admin::redirect_with_custom_messages2(
					array(
						'notes' => array(
							'cloudflare_save_done' => __( 'Cloudflare settings are successfully updated.', 'w3-total-cache' ),
						),
					)
				);
			} else {
				Util_Admin::redirect_with_custom_messages2(
					array(
						'errors' => array(
							'cloudflare_save_error' => __( 'Failed to update Cloudflare settings:', 'w3-total-cache' ) .
								"<br />\n" . implode( "<br />\n", $errors ),
						),
					)
				);
			}
		}
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit