Current File : /home/bdmcricketindia.in/public_html/wp-includes/class-wp-recovery-mode.php
<?php
/**
 * Error Protection API: WP_Recovery_Mode class
 *
 * @package WordPress
 * @since 5.2.0
 */

/**
 * Core class used to implement Recovery Mode.
 *
 * @since 5.2.0
 */
#[AllowDynamicProperties]
class WP_Recovery_Mode {

	const EXIT_ACTION = 'exit_recovery_mode';

	/**
	 * Service to handle cookies.
	 *
	 * @since 5.2.0
	 * @var WP_Recovery_Mode_Cookie_Service
	 */
	private $cookie_service;

	/**
	 * Service to generate a recovery mode key.
	 *
	 * @since 5.2.0
	 * @var WP_Recovery_Mode_Key_Service
	 */
	private $key_service;

	/**
	 * Service to generate and validate recovery mode links.
	 *
	 * @since 5.2.0
	 * @var WP_Recovery_Mode_Link_Service
	 */
	private $link_service;

	/**
	 * Service to handle sending an email with a recovery mode link.
	 *
	 * @since 5.2.0
	 * @var WP_Recovery_Mode_Email_Service
	 */
	private $email_service;

	/**
	 * Is recovery mode initialized.
	 *
	 * @since 5.2.0
	 * @var bool
	 */
	private $is_initialized = false;

	/**
	 * Is recovery mode active in this session.
	 *
	 * @since 5.2.0
	 * @var bool
	 */
	private $is_active = false;

	/**
	 * Get an ID representing the current recovery mode session.
	 *
	 * @since 5.2.0
	 * @var string
	 */
	private $session_id = '';

	/**
	 * WP_Recovery_Mode constructor.
	 *
	 * @since 5.2.0
	 */
	public function __construct() {
		$this->cookie_service = new WP_Recovery_Mode_Cookie_Service();
		$this->key_service    = new WP_Recovery_Mode_Key_Service();
		$this->link_service   = new WP_Recovery_Mode_Link_Service( $this->cookie_service, $this->key_service );
		$this->email_service  = new WP_Recovery_Mode_Email_Service( $this->link_service );
	}

	/**
	 * Initialize recovery mode for the current request.
	 *
	 * @since 5.2.0
	 */
	public function initialize() {
		$this->is_initialized = true;

		add_action( 'wp_logout', array( $this, 'exit_recovery_mode' ) );
		add_action( 'login_form_' . self::EXIT_ACTION, array( $this, 'handle_exit_recovery_mode' ) );
		add_action( 'recovery_mode_clean_expired_keys', array( $this, 'clean_expired_keys' ) );

		if ( ! wp_next_scheduled( 'recovery_mode_clean_expired_keys' ) && ! wp_installing() ) {
			wp_schedule_event( time(), 'daily', 'recovery_mode_clean_expired_keys' );
		}

		if ( defined( 'WP_RECOVERY_MODE_SESSION_ID' ) ) {
			$this->is_active  = true;
			$this->session_id = WP_RECOVERY_MODE_SESSION_ID;

			return;
		}

		if ( $this->cookie_service->is_cookie_set() ) {
			$this->handle_cookie();

			return;
		}

		$this->link_service->handle_begin_link( $this->get_link_ttl() );
	}

	/**
	 * Checks whether recovery mode is active.
	 *
	 * This will not change after recovery mode has been initialized. {@see WP_Recovery_Mode::run()}.
	 *
	 * @since 5.2.0
	 *
	 * @return bool True if recovery mode is active, false otherwise.
	 */
	public function is_active() {
		return $this->is_active;
	}

	/**
	 * Gets the recovery mode session ID.
	 *
	 * @since 5.2.0
	 *
	 * @return string The session ID if recovery mode is active, empty string otherwise.
	 */
	public function get_session_id() {
		return $this->session_id;
	}

	/**
	 * Checks whether recovery mode has been initialized.
	 *
	 * Recovery mode should not be used until this point. Initialization happens immediately before loading plugins.
	 *
	 * @since 5.2.0
	 *
	 * @return bool
	 */
	public function is_initialized() {
		return $this->is_initialized;
	}

	/**
	 * Handles a fatal error occurring.
	 *
	 * The calling API should immediately die() after calling this function.
	 *
	 * @since 5.2.0
	 *
	 * @param array $error Error details from `error_get_last()`.
	 * @return true|WP_Error|void True if the error was handled and headers have already been sent.
	 *                            Or the request will exit to try and catch multiple errors at once.
	 *                            WP_Error if an error occurred preventing it from being handled.
	 */
	public function handle_error( array $error ) {

		$extension = $this->get_extension_for_error( $error );

		if ( ! $extension || $this->is_network_plugin( $extension ) ) {
			return new WP_Error( 'invalid_source', __( 'Error not caused by a plugin or theme.' ) );
		}

		if ( ! $this->is_active() ) {
			if ( ! is_protected_endpoint() ) {
				return new WP_Error( 'non_protected_endpoint', __( 'Error occurred on a non-protected endpoint.' ) );
			}

			if ( ! function_exists( 'wp_generate_password' ) ) {
				require_once ABSPATH . WPINC . '/pluggable.php';
			}

			return $this->email_service->maybe_send_recovery_mode_email( $this->get_email_rate_limit(), $error, $extension );
		}

		if ( ! $this->store_error( $error ) ) {
			return new WP_Error( 'storage_error', __( 'Failed to store the error.' ) );
		}

		if ( headers_sent() ) {
			return true;
		}

		$this->redirect_protected();
	}

	/**
	 * Ends the current recovery mode session.
	 *
	 * @since 5.2.0
	 *
	 * @return bool True on success, false on failure.
	 */
	public function exit_recovery_mode() {
		if ( ! $this->is_active() ) {
			return false;
		}

		$this->email_service->clear_rate_limit();
		$this->cookie_service->clear_cookie();

		wp_paused_plugins()->delete_all();
		wp_paused_themes()->delete_all();

		return true;
	}

	/**
	 * Handles a request to exit Recovery Mode.
	 *
	 * @since 5.2.0
	 */
	public function handle_exit_recovery_mode() {
		$redirect_to = wp_get_referer();

		// Safety check in case referrer returns false.
		if ( ! $redirect_to ) {
			$redirect_to = is_user_logged_in() ? admin_url() : home_url();
		}

		if ( ! $this->is_active() ) {
			wp_safe_redirect( $redirect_to );
			die;
		}

		if ( ! isset( $_GET['action'] ) || self::EXIT_ACTION !== $_GET['action'] ) {
			return;
		}

		if ( ! isset( $_GET['_wpnonce'] ) || ! wp_verify_nonce( $_GET['_wpnonce'], self::EXIT_ACTION ) ) {
			wp_die( __( 'Exit recovery mode link expired.' ), 403 );
		}

		if ( ! $this->exit_recovery_mode() ) {
			wp_die( __( 'Failed to exit recovery mode. Please try again later.' ) );
		}

		wp_safe_redirect( $redirect_to );
		die;
	}

	/**
	 * Cleans any recovery mode keys that have expired according to the link TTL.
	 *
	 * Executes on a daily cron schedule.
	 *
	 * @since 5.2.0
	 */
	public function clean_expired_keys() {
		$this->key_service->clean_expired_keys( $this->get_link_ttl() );
	}

	/**
	 * Handles checking for the recovery mode cookie and validating it.
	 *
	 * @since 5.2.0
	 */
	protected function handle_cookie() {
		$validated = $this->cookie_service->validate_cookie();

		if ( is_wp_error( $validated ) ) {
			$this->cookie_service->clear_cookie();

			$validated->add_data( array( 'status' => 403 ) );
			wp_die( $validated );
		}

		$session_id = $this->cookie_service->get_session_id_from_cookie();
		if ( is_wp_error( $session_id ) ) {
			$this->cookie_service->clear_cookie();

			$session_id->add_data( array( 'status' => 403 ) );
			wp_die( $session_id );
		}

		$this->is_active  = true;
		$this->session_id = $session_id;
	}

	/**
	 * Gets the rate limit between sending new recovery mode email links.
	 *
	 * @since 5.2.0
	 *
	 * @return int Rate limit in seconds.
	 */
	protected function get_email_rate_limit() {
		/**
		 * Filters the rate limit between sending new recovery mode email links.
		 *
		 * @since 5.2.0
		 *
		 * @param int $rate_limit Time to wait in seconds. Defaults to 1 day.
		 */
		return apply_filters( 'recovery_mode_email_rate_limit', DAY_IN_SECONDS );
	}

	/**
	 * Gets the number of seconds the recovery mode link is valid for.
	 *
	 * @since 5.2.0
	 *
	 * @return int Interval in seconds.
	 */
	protected function get_link_ttl() {

		$rate_limit = $this->get_email_rate_limit();
		$valid_for  = $rate_limit;

		/**
		 * Filters the amount of time the recovery mode email link is valid for.
		 *
		 * The ttl must be at least as long as the email rate limit.
		 *
		 * @since 5.2.0
		 *
		 * @param int $valid_for The number of seconds the link is valid for.
		 */
		$valid_for = apply_filters( 'recovery_mode_email_link_ttl', $valid_for );

		return max( $valid_for, $rate_limit );
	}

	/**
	 * Gets the extension that the error occurred in.
	 *
	 * @since 5.2.0
	 *
	 * @global string[] $wp_theme_directories
	 *
	 * @param array $error Error details from `error_get_last()`.
	 * @return array|false {
	 *     Extension details.
	 *
	 *     @type string $slug The extension slug. This is the plugin or theme's directory.
	 *     @type string $type The extension type. Either 'plugin' or 'theme'.
	 * }
	 */
	protected function get_extension_for_error( $error ) {
		global $wp_theme_directories;

		if ( ! isset( $error['file'] ) ) {
			return false;
		}

		if ( ! defined( 'WP_PLUGIN_DIR' ) ) {
			return false;
		}

		$error_file    = wp_normalize_path( $error['file'] );
		$wp_plugin_dir = wp_normalize_path( WP_PLUGIN_DIR );

		if ( str_starts_with( $error_file, $wp_plugin_dir ) ) {
			$path  = str_replace( $wp_plugin_dir . '/', '', $error_file );
			$parts = explode( '/', $path );

			return array(
				'type' => 'plugin',
				'slug' => $parts[0],
			);
		}

		if ( empty( $wp_theme_directories ) ) {
			return false;
		}

		foreach ( $wp_theme_directories as $theme_directory ) {
			$theme_directory = wp_normalize_path( $theme_directory );

			if ( str_starts_with( $error_file, $theme_directory ) ) {
				$path  = str_replace( $theme_directory . '/', '', $error_file );
				$parts = explode( '/', $path );

				return array(
					'type' => 'theme',
					'slug' => $parts[0],
				);
			}
		}

		return false;
	}

	/**
	 * Checks whether the given extension a network activated plugin.
	 *
	 * @since 5.2.0
	 *
	 * @param array $extension Extension data.
	 * @return bool True if network plugin, false otherwise.
	 */
	protected function is_network_plugin( $extension ) {
		if ( 'plugin' !== $extension['type'] ) {
			return false;
		}

		if ( ! is_multisite() ) {
			return false;
		}

		$network_plugins = wp_get_active_network_plugins();

		foreach ( $network_plugins as $plugin ) {
			if ( str_starts_with( $plugin, $extension['slug'] . '/' ) ) {
				return true;
			}
		}

		return false;
	}

	/**
	 * Stores the given error so that the extension causing it is paused.
	 *
	 * @since 5.2.0
	 *
	 * @param array $error Error details from `error_get_last()`.
	 * @return bool True if the error was stored successfully, false otherwise.
	 */
	protected function store_error( $error ) {
		$extension = $this->get_extension_for_error( $error );

		if ( ! $extension ) {
			return false;
		}

		switch ( $extension['type'] ) {
			case 'plugin':
				return wp_paused_plugins()->set( $extension['slug'], $error );
			case 'theme':
				return wp_paused_themes()->set( $extension['slug'], $error );
			default:
				return false;
		}
	}

	/**
	 * Redirects the current request to allow recovering multiple errors in one go.
	 *
	 * The redirection will only happen when on a protected endpoint.
	 *
	 * It must be ensured that this method is only called when an error actually occurred and will not occur on the
	 * next request again. Otherwise it will create a redirect loop.
	 *
	 * @since 5.2.0
	 */
	protected function redirect_protected() {
		// Pluggable is usually loaded after plugins, so we manually include it here for redirection functionality.
		if ( ! function_exists( 'wp_safe_redirect' ) ) {
			require_once ABSPATH . WPINC . '/pluggable.php';
		}

		$scheme = is_ssl() ? 'https://' : 'http://';

		$url = "{$scheme}{$_SERVER['HTTP_HOST']}{$_SERVER['REQUEST_URI']}";
		wp_safe_redirect( $url );
		exit;
	}
}
n Yaxşı Azərbaycan Kazinoları 2025 Mobil Uyğun Oyun Saytları.976

n Yaxşı Azərbaycan Kazinoları 2025 Mobil Uyğun Oyun Saytları.976

Ən Yaxşı Azərbaycan Kazinoları 2025 – Mobil Uyğun Oyun Saytları

▶️ OYNA

Содержимое

Azərbaycanda online casino sektoru son illərdə sürətli şəkildə inkişaf edir. Çoxsaylı kazino oyunları pərəstləri üçün azerbaycanda kazino saytlari ən yaxşı variantdır. Bu səbəbdən, biz kazino online saytlarını araşdıraraq, ən yaxşılardan ibarət siyahı hazırladıq.

kazino oyunlari pərəstləri üçün ən əhəmiyyətli məsələlərdən biri online kazino saytlarının etibarlılığı və təhlükəsizliyidir. Bizim siyahımızda yer alan kazino saytları bütün tələblərə cavab verən və oyunçulara yaxşı şərait yaradan saytlardan ibarətdir.

Kazino oyunlarından əlavə, casino pərəstləri üçün mobil uyğunluq da əhəmiyyətli bir amildir. Çünki, mobil cihazlar vasitəsilə online casino saytlarına daxil olmaq mümkündür. Bizim siyahımızda yer alan azerbaycanda kazino saytlari mobil uyğunluğa malikdir və oyunçulara rahat şərait yaradır.

Onlayn Kazinoların Ən Yaxşı Növləri

Azərbaycanda kazino saytları arasında ən yaxşı onlayn kazinoları seçmək üçün bir neçə məqamın nəzərə alınmasına ehtiyac vardır. Ən ilk növbədə, kazino oyunları və casino online xidmətləri təklif edən saytların lisenziyası və etibarlılığı yoxlanılmalıdır.

Kazino Oyunları Növləri

Onlayn kazino oyunları bir neçə növə bölünür. Bunlara misal olaraq slot maşınları, poker, rulet və başqa kazino oyunları göstərmək olar. Həmçinin, bir çox onlayn kazinolar canlı casino xidmətləri də təklif edir.

  • Slot maşınları: Bu, ən çox yayılmış kazino oyun növüdür və müxtəlif mövzularda təklif olunur.
  • Poker: Bu, kart oyunu olub, təcrübə və strategiya tələb edir.
  • Rulet: Bu, şans oyunu olub, rulet masasında bəzi rəqəmlərə və ya rənglərə qoyulan mərcə əsaslanır.

Onlayn Kazinoların Xüsusiyyətləri

Onlayn kazinoların bir neçə xüsusiyyəti vardır ki, bu xüsusiyyətlər onları ən yaxşı edir. Bunlara misal olaraq:

  • Etibarlılıq: Onlayn kazinonun lisenziyası və şəffaf olması lazımdır.
  • Mobil uyğunluq: Onlayn kazino saytının mobil cihazlarda işləməsi lazımdır.
  • Çoxsaylı oyun variantları: Onlayn kazinonun müxtəlif kazino oyunları təklif etməsi lazımdır.
  • Yaxşı dəstək xidməti: Onlayn kazinonun dəstək xidmətinin sürətli və effektiv olması lazımdır.
  • Əgər siz də onlayn kazino axtarırsinizsə, yuxarıdakı məqamları nəzərə alaraq ən yaxşı onlayn kazinoları seçə bilərsiniz. Casino online və kazino oyunları həvəskarları üçün bu, ən yaxşı variantdır.

    Mobil Uyğun Onlayn Kazinoların Xüsiyyətləri

    Mobil uyğun onlayn kazinoların xüsiyyətləri, ən yaxşı Azərbaycan kazinoları 2025-ci ildə daha da inkişaf edəcək. Bu kazinolar kazino oyunları, online casino, kazino oyunları, casino online və azerbaycanda kazino saytları üçün ən yaxşı variantlardır. Onlayn kazino oyunları, mobil uyğunluq sayəsində, istifadəçilərə hər yerdən, hər vaxt kazino oyunlarına daxil olmaq imkanı verir.

    Onlayn kazino, kazino oyunları və casino online kimi xidmətlər təklif edən saytlar, mobil uyğunluq xüsiyyətinə malik olaraq, istifadəçilərin mobil cihazlarından asanlıqla giriş etmələrinə imkan yaradır. Bu, kazino oyunlarını daha da əlçatan və rahat edir. Azerbaycanda kazino saytları, mobil uyğun onlayn kazinoların xüsiyyətlərini nəzərə alaraq, öz xidmətlərini təkmilləşdirir və istifadəçilərə daha yaxşı təcrübə təqdim edir.

    Kazino, kazino oyunları və online kazino xidmətləri, mobil uyğunluq sayəsində, daha da məşhur və əlçatan olur. Bu, istifadəçilərə daha çox seçim imkanı verir və onlayn kazino sənayesinin inkişafına töhfə verir. Ən yaxşı Azərbaycan kazinoları 2025-ci ildə, mobil uyğun onlayn kazinoların xüsiyyətlərini nəzərə alaraq, öz xidmətlərini daha da təkmilləşdirəcəklər.

    Ən Etibarlı Onlayn Kazinoların Seçimi

    Onlayn kazino seçimi zamanı, bir çox amilə diqqət edilməsi lazımdır. Ən əsası, kazino oyunları təklif edən saytın lisenziyası və etibarlılığıdır. Lisenziyası olan kazinolar, oyunsevərlərə daha etibarlı və təhlükəsiz bir mühit təmin edir. Casino online saytları, müxtəlif kazino oyunları təklif edir və bu oyunlar, mobil uyğunluqları ilə də fərqlənir.

    Etibarlı Onlayn Kazinoların Xüsusiyyətləri

    Etibarlı onlayn kazinolar, oyunsevərlərə yüksək keyfiyyətli xidmət təmin edir. Kazino online saytları, müştərilərinin məlumatlarının təhlükəsizliyini təmin etmək üçün müasir texnologiyalardan istifadə edir. Casino oyunları, müxtəlif janrlarda təklif edilir və bu, oyunsevərlərə daha geniş seçim imkanı verir. Onlayn kazino oyunları, həmçinin, müxtəlif bonus və təkliflərlə də fərqlənir.

    Kazino Oyunlarının Çeşidi

    Kazino oyunları, müxtəlif çeşidlərdə təklif edilir. Slot oyunları, poker, blackjack və rulet kimi klassik kazino oyunları, həmçinin, canlı krupiyerlərlə oynanan oyunlar da mövcuddur. Kazino oyunlari, müxtəlif dillərdə və valyutalarda təklif edilir, bu da oyunsevərlərə daha rahat oyun təcrübəsi verir. Online casino saytları, müxtəlif ödəniş üsulları da təklif edir, bu da oyunsevərlərə daha geniş seçim imkanı verir.

    Onlayn Kazinolarda Qeydiyyat və Oyunun Başlanğıcı

    Azərbaycanda kazino saytları arasında seçim edərkən, ən əhəmiyyətli məqamlardan biri onlayn kazinoda qeydiyyat prosesidir. Casino online saytlarında qeydiyyatdan keçmək üçün adətən sadə və sürətli prosedur tələb olunur. Əksər hallarda, istifadəçilər yalnız bir neçə dəqiqə ərzində qeydiyyatdan keçə bilərlər.

    Qeydiyyat Prosedi

    Kazino oyunları sevərlər üçün onlayn kazinolarda qeydiyyatdan keçmək, adətən, sadə bir prosesdir. İştirakçılar ad, soyad, e-poçt ünvanı və şifrə kimi məlumatları daxil edərək qeydiyyat formunu doldurmalıdırlar. Bəzi kazino saytları tələb olunan məlumatların daha da geniş olmasına səbəb ola bilər, lakin ümumiyyətlə, proses sürətli və asandır.

    Casino online dünyasında, kazino oyunlarından həzz alarkən, təhlükəsiz və etibarlı bir mühitdə olmaq əhəmiyyətlidir. Ona görə də, qeydiyyatdan əvvəl, saytın lisenziyası, təhlükəsizlik tədbirləri və müştəri dəstəyi xidmətləri haqqında məlumat toplamaq məqsədəuyğundur. Kazino online saytları müntəzəm olaraq təhlükəsizlik auditlərindən keçir və müştəri məlumatlarının məxfiliyini təmin edən güclü şifrələmə texnologiyaları ilə təchiz olunur.

    Oyunun Başlanğıcı

    Kazino oyunları ilə maraqlananlar, qeydiyyatdan sonra, kazino online saytlarında mövcud olan müxtəlif kazino oyunlarına giriş əldə edirlər. Bu, slot maşınlarından, poker və blackjack kimi kart oyunlarına qədər, həmçinin canlı krupiyerlərin iştirakı ilə keçirilən oyunlara qədər bir çox variantı əhatə edir. Ən yaxşı onlayn kazinolar, oyunçulara yüksək keyfiyyətli qrafika, realist atmosfer və əlverişli oyun şəraitini təklif edir.

    Check Also

    Mostbet Casino Online e Casa de Apostas em Portugal.2242

    Mostbet – Casino Online e Casa de Apostas em Portugal ▶️ JOGAR Содержимое Mostbet – …