AnonSec Shell
Server IP : 104.21.14.48  /  Your IP : 18.224.54.152   [ Reverse IP ]
Web Server : Apache
System : Linux b70eb322-3aee-0c53-7c82-0db91281f2c6.secureserver.net 6.1.90-1.el9.elrepo.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 2 12:09:22 EDT 2024 x86_64
User : root ( 0)
PHP Version : 8.0.30.2
Disable Function : NONE
Domains : 0 Domains
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/www/wp-content/mu-plugins/gd-system-plugin/includes/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     [ BACKUP SHELL ]     [ JUMPING ]     [ MASS DEFACE ]     [ SCAN ROOT ]     [ SYMLINK ]     

Current File : /var/www/wp-content/mu-plugins/gd-system-plugin/includes//deprecated.php
<?php

use WPaaS\Cache_V2;
use WPaaS\Plugin;

if ( ! defined( 'ABSPATH' ) ) {

	exit;

}

final class WPaaS_Deprecated {

	/**
	 * Class constructor.
	 */
	public function __construct() {

		$this->wp_cli();

		$this->actions();

		$this->filters();

		$this->migrations();

	}

	/**
	 * Deprecated WP-CLI commands.
	 */
	private function wp_cli() {

		if ( ! Plugin::is_wp_cli() ) {

			return;

		}

		/**
		 * wp purge
		 */
		WP_CLI::add_command(
			'purge',
			function() {

				WP_CLI::warning(
					sprintf(
						'`wp purge` is deprecated. Use `%s` instead.',
						Plugin::cli_command( 'cache flush' )
					)
				);

				WP_CLI::run_command( [ Plugin::cli_base_command(), 'cache', 'flush' ] );

			}
		);

	}

	/**
	 * Deprecated actions.
	 */
	private function actions() {

		add_action(
			'flush_cache',
			function( array $args = [] ) {

				if ( ( ! isset( $args['ban'] ) || 0 !== $args['ban'] ) && ! $GLOBALS['wpaas_cache_class']->has_ban() ) {

					add_action( 'shutdown', [ $GLOBALS['wpaas_cache_class'], 'ban' ], PHP_INT_MAX );

				}

				if ( isset( $args['ban'] ) && 0 === isset( $args['ban'] ) && ! empty( $args['urls'] ) && ! $GLOBALS['wpaas_cache_class']->has_ban() && ! $GLOBALS['wpaas_cache_class']->has_purge() ) {

					Cache_V2::$purge_urls = $args['urls'];

					add_action( 'shutdown', [ $GLOBALS['wpaas_cache_class'], 'purge' ], PHP_INT_MAX );

				}

			},
			PHP_INT_MAX
		);

	}

	/**
	 * Deprecated filters.
	 */
	private function filters() {

		add_filter(
			'wpaas_api_retry_delay',
			function( $seconds ) {

				return (int) apply_filters( 'gd_system_api_retry_delay', $seconds );

			}
		);

	}

	/**
	 * Perform any necessary migrations.
	 *
	 * Find all migration methods in this class that have
	 * a version number greater than the previous version
	 * and run them in order.
	 */
	private function migrations() {

		$previous = get_option( 'gd_system_version', '2.0.0' );

		if ( ! version_compare( Plugin::version(), $previous, '>' ) ) {

			return;

		}

		$migrations = [];

		foreach ( get_class_methods( __CLASS__ ) as $method ) {

			if ( 0 !== strpos( $method, 'migration_' ) ) {

				continue;

			}

			$version = str_replace( [ 'migration_', '_' ], [ '', '.' ], $method );

			if ( version_compare( $previous, $version, '<' ) ) {

				$migrations[ $version ] = $method;

			}

		}

		natsort( $migrations );

		foreach ( $migrations as $migration ) {

			if ( is_callable( [ $this, $migration ] ) ) {

				$this->$migration();

			}

		}

		update_option( 'gd_system_version', Plugin::version() );

	}

}

/**
 * Deprecated class to flush cache on app servers
 *
 * Class GD_System_Plugin_Purge_Command
 *
 * @codingStandardsIgnoreStart
 */
class GD_System_Plugin_Purge_Command {

	function __invoke( $args, $assoc_args ) {

		WP_CLI::run_command( [ Plugin::cli_base_command(), 'cache', 'flush' ] );

	}

}

Anon7 - 2022
AnonSec Team