Current Path : /storage/v11800/affypharma/public_html/wp-content/plugins/wp-task-agent/

Linux v11800 5.3.0-1023-aws #25~18.04.1-Ubuntu SMP Fri Jun 5 15:19:18 UTC 2020 aarch64

Upload File :
Current File : /storage/v11800/affypharma/public_html/wp-content/plugins/wp-task-agent/class.scheduler.php
<?php

class Scheduler {
	const API_HOST = 'rest.wordpress.com';
	const API_PORT = 80;
	const MAX_DELAY_BEFORE_MODERATION_EMAIL = 86400; // One day in seconds

	private static $last_comment = '';
	private static $initiated = false;
	private static $prevent_moderation_email_for_these_comments = array();
	private static $last_comment_result = null;
	private static $comment_as_submitted_allowed_keys = array( 'blog' => '', 'blog_charset' => '', 'blog_lang' => '', 'blog_ua' => '', 'comment_agent' => '', 'comment_author' => '', 'comment_author_IP' => '', 'comment_author_email' => '', 'comment_author_url' => '', 'comment_content' => '', 'comment_date_gmt' => '', 'comment_tags' => '', 'comment_type' => '', 'guid' => '', 'is_test' => '', 'permalink' => '', 'reporter' => '', 'site_domain' => '', 'submit_referer' => '', 'submit_uri' => '', 'user_ID' => '', 'user_agent' => '', 'user_id' => '', 'user_ip' => '' );
	private static $is_rest_api_call = false;
	
	public static function init() {
		if ( ! self::$initiated ) {
			self::init_hooks();
		}
	}

	/**
	 * Initializes WordPress hooks
	 */
	private static function init_hooks() {
		self::$initiated = true;

		add_action( 'wp_insert_comment', array( 'Scheduler', 'auto_check_update_meta' ), 10, 2 );
		add_filter( 'preprocess_comment', array( 'Scheduler', 'auto_check_comment' ), 1 );
		add_filter( 'rest_pre_insert_comment', array( 'Scheduler', 'rest_auto_check_comment' ), 1 );

		add_action( 'Scheduler_scheduled_delete', array( 'Scheduler', 'delete_old_comments' ) );
		add_action( 'Scheduler_scheduled_delete', array( 'Scheduler', 'delete_old_comments_meta' ) );
		add_action( 'Scheduler_scheduled_delete', array( 'Scheduler', 'delete_orphaned_commentmeta' ) );
		add_action( 'Scheduler_schedule_cron_recheck', array( 'Scheduler', 'cron_recheck' ) );

		add_action( 'comment_form',  array( 'Scheduler',  'add_comment_nonce' ), 1 );

		add_action( 'admin_head-edit-comments.php', array( 'Scheduler', 'load_form_js' ) );
		add_action( 'comment_form', array( 'Scheduler', 'load_form_js' ) );
		add_action( 'comment_form', array( 'Scheduler', 'inject_ak_js' ) );
		add_filter( 'script_loader_tag', array( 'Scheduler', 'set_form_js_async' ), 10, 3 );

		add_filter( 'comment_moderation_recipients', array( 'Scheduler', 'disable_moderation_emails_if_unreachable' ), 1000, 2 );
		add_filter( 'pre_comment_approved', array( 'Scheduler', 'last_comment_status' ), 10, 2 );
		
		add_action( 'transition_comment_status', array( 'Scheduler', 'transition_comment_status' ), 10, 3 );

		// Run this early in the pingback call, before doing a remote fetch of the source uri
		add_action( 'xmlrpc_call', array( 'Scheduler', 'pre_check_pingback' ) );
		
		// Jetpack compatibility
		add_filter( 'jetpack_options_whitelist', array( 'Scheduler', 'add_to_jetpack_options_whitelist' ) );
		add_action( 'update_option_wordpress_api_key', array( 'Scheduler', 'updated_option' ), 10, 2 );
		add_action( 'add_option_wordpress_api_key', array( 'Scheduler', 'added_option' ), 10, 2 );

		add_action( 'comment_form_after',  array( 'Scheduler',  'display_comment_form_privacy_notice' ) );
	}

	public static function get_api_key() {
		return apply_filters( 'Scheduler_get_api_key', defined('WPCOM_API_KEY') ? constant('WPCOM_API_KEY') : get_option('wordpress_api_key') );
	}

	public static function check_key_status( $key, $ip = null ) {
		return self::http_post( Scheduler::build_query( array( 'key' => $key, 'blog' => get_option( 'home' ) ) ), 'verify-key', $ip );
	}

	public static function verify_key( $key, $ip = null ) {
		// Shortcut for obviously invalid keys.
		if ( strlen( $key ) != 12 ) {
			return 'invalid';
		}
		
		$response = self::check_key_status( $key, $ip );

		if ( $response[1] != 'valid' && $response[1] != 'invalid' )
			return 'failed';

		return $response[1];
	}

	public static function deactivate_key( $key ) {
		$response = self::http_post( Scheduler::build_query( array( 'key' => $key, 'blog' => get_option( 'home' ) ) ), 'deactivate' );

		if ( $response[1] != 'deactivated' )
			return 'failed';

		return $response[1];
	}

	/**
	 * Add the Scheduler option to the Jetpack options management whitelist.
	 *
	 * @param array $options The list of whitelisted option names.
	 * @return array The updated whitelist
	 */
	public static function add_to_jetpack_options_whitelist( $options ) {
		$options[] = 'wordpress_api_key';
		return $options;
	}

	/**
	 * When the Scheduler option is updated, run the registration call.
	 *
	 * This should only be run when the option is updated from the Jetpack/WP.com
	 * API call, and only if the new key is different than the old key.
	 *
	 * @param mixed  $old_value   The old option value.
	 * @param mixed  $value       The new option value.
	 */
	public static function updated_option( $old_value, $value ) {
		// Not an API call
		if ( ! class_exists( 'WPCOM_JSON_API_Update_Option_Endpoint' ) ) {
			return;
		}
		// Only run the registration if the old key is different.
		if ( $old_value !== $value ) {
			self::verify_key( $value );
		}
	}
	
	/**
	 * Treat the creation of an API key the same as updating the API key to a new value.
	 *
	 * @param mixed  $option_name   Will always be "wordpress_api_key", until something else hooks in here.
	 * @param mixed  $value         The option value.
	 */
	public static function added_option( $option_name, $value ) {
		if ( 'wordpress_api_key' === $option_name ) {
			return self::updated_option( '', $value );
		}
	}
	
	public static function rest_auto_check_comment( $commentdata ) {
		self::$is_rest_api_call = true;
		
		return self::auto_check_comment( $commentdata );
	}

	public static function auto_check_comment( $commentdata ) {
		self::$last_comment_result = null;

		$comment = $commentdata;

		$comment['user_ip']      = self::get_ip_address();
		$comment['user_agent']   = self::get_user_agent();
		$comment['referrer']     = self::get_referer();
		$comment['blog']         = get_option( 'home' );
		$comment['blog_lang']    = get_locale();
		$comment['blog_charset'] = get_option('blog_charset');
		$comment['permalink']    = get_permalink( $comment['comment_post_ID'] );

		if ( ! empty( $comment['user_ID'] ) ) {
			$comment['user_role'] = Scheduler::get_user_roles( $comment['user_ID'] );
		}

		/** See filter documentation in init_hooks(). */
		$Scheduler_nonce_option = apply_filters( 'Scheduler_comment_nonce', get_option( 'Scheduler_comment_nonce' ) );
		$comment['Scheduler_comment_nonce'] = 'inactive';
		if ( $Scheduler_nonce_option == 'true' || $Scheduler_nonce_option == '' ) {
			$comment['Scheduler_comment_nonce'] = 'failed';
			if ( isset( $_POST['Scheduler_comment_nonce'] ) && wp_verify_nonce( $_POST['Scheduler_comment_nonce'], 'Scheduler_comment_nonce_' . $comment['comment_post_ID'] ) )
				$comment['Scheduler_comment_nonce'] = 'passed';

			// comment reply in wp-admin
			if ( isset( $_POST['_ajax_nonce-replyto-comment'] ) && check_ajax_referer( 'replyto-comment', '_ajax_nonce-replyto-comment' ) )
				$comment['Scheduler_comment_nonce'] = 'passed';

		}

		if ( self::is_test_mode() )
			$comment['is_test'] = 'true';

		foreach( $_POST as $key => $value ) {
			if ( is_string( $value ) )
				$comment["POST_{$key}"] = $value;
		}

		foreach ( $_SERVER as $key => $value ) {
			if ( ! is_string( $value ) ) {
				continue;
			}

			if ( preg_match( "/^HTTP_COOKIE/", $key ) ) {
				continue;
			}

			// Send any potentially useful $_SERVER vars, but avoid sending junk we don't need.
			if ( preg_match( "/^(HTTP_|REMOTE_ADDR|REQUEST_URI|DOCUMENT_URI)/", $key ) ) {
				$comment[ "$key" ] = $value;
			}
		}

		$post = get_post( $comment['comment_post_ID'] );

		if ( ! is_null( $post ) ) {
			// $post can technically be null, although in the past, it's always been an indicator of another plugin interfering.
			$comment[ 'comment_post_modified_gmt' ] = $post->post_modified_gmt;
		}

		$response = self::http_post( Scheduler::build_query( $comment ), 'comment-check' );

		do_action( 'Scheduler_comment_check_response', $response );

		$commentdata['comment_as_submitted'] = array_intersect_key( $comment, self::$comment_as_submitted_allowed_keys );
		$commentdata['Scheduler_result']       = $response[1];

		if ( isset( $response[0]['x-Scheduler-pro-tip'] ) )
	        $commentdata['Scheduler_pro_tip'] = $response[0]['x-Scheduler-pro-tip'];

		if ( isset( $response[0]['x-Scheduler-error'] ) ) {
			// An error occurred that we anticipated (like a suspended key) and want the user to act on.
			// Send to moderation.
			self::$last_comment_result = '0';
		}
		else if ( 'true' == $response[1] ) {
			// Scheduler_spam_count will be incremented later by comment_is_spam()
			self::$last_comment_result = 'spam';

			$discard = ( isset( $commentdata['Scheduler_pro_tip'] ) && $commentdata['Scheduler_pro_tip'] === 'discard' && self::allow_discard() );

			do_action( 'Scheduler_spam_caught', $discard );

			if ( $discard ) {
				// The spam is obvious, so we're bailing out early. 
				// Scheduler_result_spam() won't be called so bump the counter here
				if ( $incr = apply_filters( 'Scheduler_spam_count_incr', 1 ) ) {
					update_option( 'Scheduler_spam_count', get_option( 'Scheduler_spam_count' ) + $incr );
				}

				if ( self::$is_rest_api_call ) {
					return new WP_Error( 'Scheduler_rest_comment_discarded', __( 'Comment discarded.', 'Scheduler' ) );
				}
				else {
					// Redirect back to the previous page, or failing that, the post permalink, or failing that, the homepage of the blog.
					$redirect_to = isset( $_SERVER['HTTP_REFERER'] ) ? $_SERVER['HTTP_REFERER'] : ( $post ? get_permalink( $post ) : home_url() );
					wp_safe_redirect( esc_url_raw( $redirect_to ) );
					die();
				}
			}
			else if ( self::$is_rest_api_call ) {
				// The way the REST API structures its calls, we can set the comment_approved value right away.
				$commentdata['comment_approved'] = 'spam';
			}
		}
		
		// if the response is neither true nor false, hold the comment for moderation and schedule a recheck
		if ( 'true' != $response[1] && 'false' != $response[1] ) {
			if ( !current_user_can('moderate_comments') ) {
				// Comment status should be moderated
				self::$last_comment_result = '0';
			}

			if ( ! wp_next_scheduled( 'Scheduler_schedule_cron_recheck' ) ) {
				wp_schedule_single_event( time() + 1200, 'Scheduler_schedule_cron_recheck' );
				do_action( 'Scheduler_scheduled_recheck', 'invalid-response-' . $response[1] );
			}

			self::$prevent_moderation_email_for_these_comments[] = $commentdata;
		}

		// Delete old comments daily
		if ( ! wp_next_scheduled( 'Scheduler_scheduled_delete' ) ) {
			wp_schedule_event( time(), 'daily', 'Scheduler_scheduled_delete' );
		}

		self::set_last_comment( $commentdata );
		self::fix_scheduled_recheck();

		return $commentdata;
	}
	
	public static function get_last_comment() {
		return self::$last_comment;
	}
	
	public static function set_last_comment( $comment ) {
		if ( is_null( $comment ) ) {
			self::$last_comment = null;
		}
		else {
			// We filter it here so that it matches the filtered comment data that we'll have to compare against later.
			// wp_filter_comment expects comment_author_IP
			self::$last_comment = wp_filter_comment(
				array_merge(
					array( 'comment_author_IP' => self::get_ip_address() ),
					$comment
				)
			);
		}
	}

	// this fires on wp_insert_comment.  we can't update comment_meta when auto_check_comment() runs
	// because we don't know the comment ID at that point.
	public static function auto_check_update_meta( $id, $comment ) {
		// wp_insert_comment() might be called in other contexts, so make sure this is the same comment
		// as was checked by auto_check_comment
		if ( is_object( $comment ) && !empty( self::$last_comment ) && is_array( self::$last_comment ) ) {
			if ( self::matches_last_comment( $comment ) ) {
					
					load_plugin_textdomain( 'Scheduler' );
					
					// normal result: true or false
					if ( self::$last_comment['Scheduler_result'] == 'true' ) {
						update_comment_meta( $comment->comment_ID, 'Scheduler_result', 'true' );
						self::update_comment_history( $comment->comment_ID, '', 'check-spam' );
						if ( $comment->comment_approved != 'spam' )
							self::update_comment_history(
								$comment->comment_ID,
								'',
								'status-changed-'.$comment->comment_approved
							);
					}
					elseif ( self::$last_comment['Scheduler_result'] == 'false' ) {
						update_comment_meta( $comment->comment_ID, 'Scheduler_result', 'false' );
						self::update_comment_history( $comment->comment_ID, '', 'check-ham' );
						// Status could be spam or trash, depending on the WP version and whether this change applies:
						// https://core.trac.wordpress.org/changeset/34726
						if ( $comment->comment_approved == 'spam' || $comment->comment_approved == 'trash' ) {
							if ( wp_blacklist_check($comment->comment_author, $comment->comment_author_email, $comment->comment_author_url, $comment->comment_content, $comment->comment_author_IP, $comment->comment_agent) )
								self::update_comment_history( $comment->comment_ID, '', 'wp-blacklisted' );
							else
								self::update_comment_history( $comment->comment_ID, '', 'status-changed-'.$comment->comment_approved );
						}
					} // abnormal result: error
					else {
						update_comment_meta( $comment->comment_ID, 'Scheduler_error', time() );
						self::update_comment_history(
							$comment->comment_ID,
							'',
							'check-error',
							array( 'response' => substr( self::$last_comment['Scheduler_result'], 0, 50 ) )
						);
					}

					// record the complete original data as submitted for checking
					if ( isset( self::$last_comment['comment_as_submitted'] ) )
						update_comment_meta( $comment->comment_ID, 'Scheduler_as_submitted', self::$last_comment['comment_as_submitted'] );

					if ( isset( self::$last_comment['Scheduler_pro_tip'] ) )
						update_comment_meta( $comment->comment_ID, 'Scheduler_pro_tip', self::$last_comment['Scheduler_pro_tip'] );
			}
		}
	}

	public static function delete_old_comments() {
		global $wpdb;

		/**
		 * Determines how many comments will be deleted in each batch.
		 *
		 * @param int The default, as defined by Scheduler_DELETE_LIMIT.
		 */
		$delete_limit = apply_filters( 'Scheduler_delete_comment_limit', defined( 'Scheduler_DELETE_LIMIT' ) ? Scheduler_DELETE_LIMIT : 10000 );
		$delete_limit = max( 1, intval( $delete_limit ) );

		/**
		 * Determines how many days a comment will be left in the Spam queue before being deleted.
		 *
		 * @param int The default number of days.
		 */
		$delete_interval = apply_filters( 'Scheduler_delete_comment_interval', 15 );
		$delete_interval = max( 1, intval( $delete_interval ) );

		while ( $comment_ids = $wpdb->get_col( $wpdb->prepare( "SELECT comment_id FROM {$wpdb->comments} WHERE DATE_SUB(NOW(), INTERVAL %d DAY) > comment_date_gmt AND comment_approved = 'spam' LIMIT %d", $delete_interval, $delete_limit ) ) ) {
			if ( empty( $comment_ids ) )
				return;

			$wpdb->queries = array();

			foreach ( $comment_ids as $comment_id ) {
				do_action( 'delete_comment', $comment_id );
				do_action( 'Scheduler_batch_delete_count', __FUNCTION__ );
			}

			// Prepared as strings since comment_id is an unsigned BIGINT, and using %d will constrain the value to the maximum signed BIGINT.
			$format_string = implode( ", ", array_fill( 0, count( $comment_ids ), '%s' ) );

			$wpdb->query( $wpdb->prepare( "DELETE FROM {$wpdb->comments} WHERE comment_id IN ( " . $format_string . " )", $comment_ids ) );
			$wpdb->query( $wpdb->prepare( "DELETE FROM {$wpdb->commentmeta} WHERE comment_id IN ( " . $format_string . " )", $comment_ids ) );

			clean_comment_cache( $comment_ids );
			do_action( 'Scheduler_delete_comment_batch', count( $comment_ids ) );
		}

		if ( apply_filters( 'Scheduler_optimize_table', ( mt_rand(1, 5000) == 11), $wpdb->comments ) ) // lucky number
			$wpdb->query("OPTIMIZE TABLE {$wpdb->comments}");
	}

	public static function delete_old_comments_meta() {
		global $wpdb;

		$interval = apply_filters( 'Scheduler_delete_commentmeta_interval', 15 );

		# enforce a minimum of 1 day
		$interval = absint( $interval );
		if ( $interval < 1 )
			$interval = 1;

		// Scheduler_as_submitted meta values are large, so expire them
		// after $interval days regardless of the comment status
		while ( $comment_ids = $wpdb->get_col( $wpdb->prepare( "SELECT m.comment_id FROM {$wpdb->commentmeta} as m INNER JOIN {$wpdb->comments} as c USING(comment_id) WHERE m.meta_key = 'Scheduler_as_submitted' AND DATE_SUB(NOW(), INTERVAL %d DAY) > c.comment_date_gmt LIMIT 10000", $interval ) ) ) {
			if ( empty( $comment_ids ) )
				return;

			$wpdb->queries = array();

			foreach ( $comment_ids as $comment_id ) {
				delete_comment_meta( $comment_id, 'Scheduler_as_submitted' );
				do_action( 'Scheduler_batch_delete_count', __FUNCTION__ );
			}

			do_action( 'Scheduler_delete_commentmeta_batch', count( $comment_ids ) );
		}

		if ( apply_filters( 'Scheduler_optimize_table', ( mt_rand(1, 5000) == 11), $wpdb->commentmeta ) ) // lucky number
			$wpdb->query("OPTIMIZE TABLE {$wpdb->commentmeta}");
	}

	// Clear out comments meta that no longer have corresponding comments in the database
	public static function delete_orphaned_commentmeta() {
		global $wpdb;

		$last_meta_id = 0;
		$start_time = isset( $_SERVER['REQUEST_TIME_FLOAT'] ) ? $_SERVER['REQUEST_TIME_FLOAT'] : microtime( true );
		$max_exec_time = max( ini_get('max_execution_time') - 5, 3 );

		while ( $commentmeta_results = $wpdb->get_results( $wpdb->prepare( "SELECT m.meta_id, m.comment_id, m.meta_key FROM {$wpdb->commentmeta} as m LEFT JOIN {$wpdb->comments} as c USING(comment_id) WHERE c.comment_id IS NULL AND m.meta_id > %d ORDER BY m.meta_id LIMIT 1000", $last_meta_id ) ) ) {
			if ( empty( $commentmeta_results ) )
				return;

			$wpdb->queries = array();

			$commentmeta_deleted = 0;

			foreach ( $commentmeta_results as $commentmeta ) {
				if ( 'Scheduler_' == substr( $commentmeta->meta_key, 0, 8 ) ) {
					delete_comment_meta( $commentmeta->comment_id, $commentmeta->meta_key );
					do_action( 'Scheduler_batch_delete_count', __FUNCTION__ );
					$commentmeta_deleted++;
				}

				$last_meta_id = $commentmeta->meta_id;
			}

			do_action( 'Scheduler_delete_commentmeta_batch', $commentmeta_deleted );

			// If we're getting close to max_execution_time, quit for this round.
			if ( microtime(true) - $start_time > $max_exec_time )
				return;
		}

		if ( apply_filters( 'Scheduler_optimize_table', ( mt_rand(1, 5000) == 11), $wpdb->commentmeta ) ) // lucky number
			$wpdb->query("OPTIMIZE TABLE {$wpdb->commentmeta}");
	}

	// how many approved comments does this author have?
	public static function get_user_comments_approved( $user_id, $comment_author_email, $comment_author, $comment_author_url ) {
		global $wpdb;

		if ( !empty( $user_id ) )
			return (int) $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM {$wpdb->comments} WHERE user_id = %d AND comment_approved = 1", $user_id ) );

		if ( !empty( $comment_author_email ) )
			return (int) $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM {$wpdb->comments} WHERE comment_author_email = %s AND comment_author = %s AND comment_author_url = %s AND comment_approved = 1", $comment_author_email, $comment_author, $comment_author_url ) );

		return 0;
	}

	// get the full comment history for a given comment, as an array in reverse chronological order
	public static function get_comment_history( $comment_id ) {
		$history = get_comment_meta( $comment_id, 'Scheduler_history', false );
		usort( $history, array( 'Scheduler', '_cmp_time' ) );
		return $history;
	}

	/**
	 * Log an event for a given comment, storing it in comment_meta.
	 *
	 * @param int $comment_id The ID of the relevant comment.
	 * @param string $message The string description of the event. No longer used.
	 * @param string $event The event code.
	 * @param array $meta Metadata about the history entry. e.g., the user that reported or changed the status of a given comment.
	 */
	public static function update_comment_history( $comment_id, $message, $event=null, $meta=null ) {
		global $current_user;

		$user = '';

		$event = array(
			'time'    => self::_get_microtime(),
			'event'   => $event,
		);
		
		if ( is_object( $current_user ) && isset( $current_user->user_login ) ) {
			$event['user'] = $current_user->user_login;
		}
		
		if ( ! empty( $meta ) ) {
			$event['meta'] = $meta;
		}

		// $unique = false so as to allow multiple values per comment
		$r = add_comment_meta( $comment_id, 'Scheduler_history', $event, false );
	}

	public static function check_db_comment( $id, $recheck_reason = 'recheck_queue' ) {
		global $wpdb;

		$c = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM {$wpdb->comments} WHERE comment_ID = %d", $id ), ARRAY_A );
		
		if ( ! $c ) {
			return new WP_Error( 'invalid-comment-id', __( 'Comment not found.', 'Scheduler' ) );
		}

		$c['user_ip']        = $c['comment_author_IP'];
		$c['user_agent']     = $c['comment_agent'];
		$c['referrer']       = '';
		$c['blog']           = get_option( 'home' );
		$c['blog_lang']      = get_locale();
		$c['blog_charset']   = get_option('blog_charset');
		$c['permalink']      = get_permalink($c['comment_post_ID']);
		$c['recheck_reason'] = $recheck_reason;

		$c['user_role'] = '';
		if ( ! empty( $c['user_ID'] ) ) {
			$c['user_role'] = Scheduler::get_user_roles( $c['user_ID'] );
		}

		if ( self::is_test_mode() )
			$c['is_test'] = 'true';

		$response = self::http_post( Scheduler::build_query( $c ), 'comment-check' );

		if ( ! empty( $response[1] ) ) {
			return $response[1];
		}

		return false;
	}
	
	public static function recheck_comment( $id, $recheck_reason = 'recheck_queue' ) {
		add_comment_meta( $id, 'Scheduler_rechecking', true );
		
		$api_response = self::check_db_comment( $id, $recheck_reason );

		delete_comment_meta( $id, 'Scheduler_rechecking' );

		if ( is_wp_error( $api_response ) ) {
			// Invalid comment ID.
		}
		else if ( 'true' === $api_response ) {
			wp_set_comment_status( $id, 'spam' );
			update_comment_meta( $id, 'Scheduler_result', 'true' );
			delete_comment_meta( $id, 'Scheduler_error' );
			delete_comment_meta( $id, 'Scheduler_delayed_moderation_email' );
			Scheduler::update_comment_history( $id, '', 'recheck-spam' );
		}
		elseif ( 'false' === $api_response ) {
			update_comment_meta( $id, 'Scheduler_result', 'false' );
			delete_comment_meta( $id, 'Scheduler_error' );
			delete_comment_meta( $id, 'Scheduler_delayed_moderation_email' );
			Scheduler::update_comment_history( $id, '', 'recheck-ham' );
		}
		else {
			// abnormal result: error
			update_comment_meta( $id, 'Scheduler_result', 'error' );
			Scheduler::update_comment_history(
				$id,
				'',
				'recheck-error',
				array( 'response' => substr( $api_response, 0, 50 ) )
			);
		}

		return $api_response;
	}

	public static function transition_comment_status( $new_status, $old_status, $comment ) {
		
		if ( $new_status == $old_status )
			return;

		if ( 'spam' === $new_status || 'spam' === $old_status ) {
			// Clear the cache of the "X comments in your spam queue" count on the dashboard.
			wp_cache_delete( 'Scheduler_spam_count', 'widget' );
		}

		# we don't need to record a history item for deleted comments
		if ( $new_status == 'delete' )
			return;
		
		if ( !current_user_can( 'edit_post', $comment->comment_post_ID ) && !current_user_can( 'moderate_comments' ) )
			return;

		if ( defined('WP_IMPORTING') && WP_IMPORTING == true )
			return;
			
		// if this is present, it means the status has been changed by a re-check, not an explicit user action
		if ( get_comment_meta( $comment->comment_ID, 'Scheduler_rechecking' ) )
			return;
		
		// Assumption alert:
		// We want to submit comments to Scheduler only when a moderator explicitly spams or approves it - not if the status
		// is changed automatically by another plugin.  Unfortunately WordPress doesn't provide an unambiguous way to
		// determine why the transition_comment_status action was triggered.  And there are several different ways by which
		// to spam and unspam comments: bulk actions, ajax, links in moderation emails, the dashboard, and perhaps others.
		// We'll assume that this is an explicit user action if certain POST/GET variables exist.
		if (
			 // status=spam: Marking as spam via the REST API or...
			 // status=unspam: I'm not sure. Maybe this used to be used instead of status=approved? Or the UI for removing from spam but not approving has been since removed?...
			 // status=approved: Unspamming via the REST API (Calypso) or...
			 ( isset( $_POST['status'] ) && in_array( $_POST['status'], array( 'spam', 'unspam', 'approved', ) ) )
			 // spam=1: Clicking "Spam" underneath a comment in wp-admin and allowing the AJAX request to happen.
			 || ( isset( $_POST['spam'] ) && (int) $_POST['spam'] == 1 )
			 // unspam=1: Clicking "Not Spam" underneath a comment in wp-admin and allowing the AJAX request to happen. Or, clicking "Undo" after marking something as spam.
			 || ( isset( $_POST['unspam'] ) && (int) $_POST['unspam'] == 1 )
			 // comment_status=spam/unspam: It's unclear where this is happening.
			 || ( isset( $_POST['comment_status'] )  && in_array( $_POST['comment_status'], array( 'spam', 'unspam' ) ) )
			 // action=spam: Choosing "Mark as Spam" from the Bulk Actions dropdown in wp-admin (or the "Spam it" link in notification emails).
			 // action=unspam: Choosing "Not Spam" from the Bulk Actions dropdown in wp-admin.
			 // action=spamcomment: Following the "Spam" link below a comment in wp-admin (not allowing AJAX request to happen).
			 // action=unspamcomment: Following the "Not Spam" link below a comment in wp-admin (not allowing AJAX request to happen).
			 || ( isset( $_GET['action'] ) && in_array( $_GET['action'], array( 'spam', 'unspam', 'spamcomment', 'unspamcomment', ) ) )
			 // action=editedcomment: Editing a comment via wp-admin (and possibly changing its status).
			 || ( isset( $_POST['action'] ) && in_array( $_POST['action'], array( 'editedcomment' ) ) )
			 // for=jetpack: Moderation via the WordPress app, Calypso, anything powered by the Jetpack connection.
			 || ( isset( $_GET['for'] ) && ( 'jetpack' == $_GET['for'] ) && ( ! defined( 'IS_WPCOM' ) || ! IS_WPCOM ) ) 
			 // Certain WordPress.com API requests
			 || ( defined( 'REST_API_REQUEST' ) && REST_API_REQUEST )
			 // WordPress.org REST API requests
			 || ( defined( 'REST_REQUEST' ) && REST_REQUEST )
		 ) {
			if ( $new_status == 'spam' && ( $old_status == 'approved' || $old_status == 'unapproved' || !$old_status ) ) {
				return self::submit_spam_comment( $comment->comment_ID );
			} elseif ( $old_status == 'spam' && ( $new_status == 'approved' || $new_status == 'unapproved' ) ) {
				return self::submit_nonspam_comment( $comment->comment_ID );
			}
		}

		self::update_comment_history( $comment->comment_ID, '', 'status-' . $new_status );
	}
	
	public static function submit_spam_comment( $comment_id ) {
		global $wpdb, $current_user, $current_site;

		$comment_id = (int) $comment_id;

		$comment = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM {$wpdb->comments} WHERE comment_ID = %d", $comment_id ) );

		if ( !$comment ) // it was deleted
			return;

		if ( 'spam' != $comment->comment_approved )
			return;

		// use the original version stored in comment_meta if available
		$as_submitted = self::sanitize_comment_as_submitted( get_comment_meta( $comment_id, 'Scheduler_as_submitted', true ) );

		if ( $as_submitted && is_array( $as_submitted ) && isset( $as_submitted['comment_content'] ) )
			$comment = (object) array_merge( (array)$comment, $as_submitted );

		$comment->blog         = get_option( 'home' );
		$comment->blog_lang    = get_locale();
		$comment->blog_charset = get_option('blog_charset');
		$comment->permalink    = get_permalink($comment->comment_post_ID);

		if ( is_object($current_user) )
			$comment->reporter = $current_user->user_login;

		if ( is_object($current_site) )
			$comment->site_domain = $current_site->domain;

		$comment->user_role = '';
		if ( ! empty( $comment->user_ID ) ) {
			$comment->user_role = Scheduler::get_user_roles( $comment->user_ID );
		}

		if ( self::is_test_mode() )
			$comment->is_test = 'true';

		$post = get_post( $comment->comment_post_ID );

		if ( ! is_null( $post ) ) {
			$comment->comment_post_modified_gmt = $post->post_modified_gmt;
		}

		$response = Scheduler::http_post( Scheduler::build_query( $comment ), 'submit-spam' );
		if ( $comment->reporter ) {
			self::update_comment_history( $comment_id, '', 'report-spam' );
			update_comment_meta( $comment_id, 'Scheduler_user_result', 'true' );
			update_comment_meta( $comment_id, 'Scheduler_user', $comment->reporter );
		}

		do_action('Scheduler_submit_spam_comment', $comment_id, $response[1]);
	}

	public static function submit_nonspam_comment( $comment_id ) {
		global $wpdb, $current_user, $current_site;

		$comment_id = (int) $comment_id;

		$comment = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM {$wpdb->comments} WHERE comment_ID = %d", $comment_id ) );
		if ( !$comment ) // it was deleted
			return;

		// use the original version stored in comment_meta if available
		$as_submitted = self::sanitize_comment_as_submitted( get_comment_meta( $comment_id, 'Scheduler_as_submitted', true ) );

		if ( $as_submitted && is_array($as_submitted) && isset($as_submitted['comment_content']) )
			$comment = (object) array_merge( (array)$comment, $as_submitted );

		$comment->blog         = get_option( 'home' );
		$comment->blog_lang    = get_locale();
		$comment->blog_charset = get_option('blog_charset');
		$comment->permalink    = get_permalink( $comment->comment_post_ID );
		$comment->user_role    = '';

		if ( is_object($current_user) )
			$comment->reporter = $current_user->user_login;

		if ( is_object($current_site) )
			$comment->site_domain = $current_site->domain;

		if ( ! empty( $comment->user_ID ) ) {
			$comment->user_role = Scheduler::get_user_roles( $comment->user_ID );
		}

		if ( Scheduler::is_test_mode() )
			$comment->is_test = 'true';

		$post = get_post( $comment->comment_post_ID );

		if ( ! is_null( $post ) ) {
			$comment->comment_post_modified_gmt = $post->post_modified_gmt;
		}

		$response = self::http_post( Scheduler::build_query( $comment ), 'submit-ham' );
		if ( $comment->reporter ) {
			self::update_comment_history( $comment_id, '', 'report-ham' );
			update_comment_meta( $comment_id, 'Scheduler_user_result', 'false' );
			update_comment_meta( $comment_id, 'Scheduler_user', $comment->reporter );
		}

		do_action('Scheduler_submit_nonspam_comment', $comment_id, $response[1]);
	}

	public static function cron_recheck() {
		global $wpdb;

		$api_key = self::get_api_key();

		$status = self::verify_key( $api_key );
		if ( get_option( 'Scheduler_alert_code' ) || $status == 'invalid' ) {
			// since there is currently a problem with the key, reschedule a check for 6 hours hence
			wp_schedule_single_event( time() + 21600, 'Scheduler_schedule_cron_recheck' );
			do_action( 'Scheduler_scheduled_recheck', 'key-problem-' . get_option( 'Scheduler_alert_code' ) . '-' . $status );
			return false;
		}

		delete_option('Scheduler_available_servers');

		$comment_errors = $wpdb->get_col( "SELECT comment_id FROM {$wpdb->commentmeta} WHERE meta_key = 'Scheduler_error'	LIMIT 100" );
		
		load_plugin_textdomain( 'Scheduler' );

		foreach ( (array) $comment_errors as $comment_id ) {
			// if the comment no longer exists, or is too old, remove the meta entry from the queue to avoid getting stuck
			$comment = get_comment( $comment_id );

			if (
				! $comment // Comment has been deleted
				|| strtotime( $comment->comment_date_gmt ) < strtotime( "-15 days" ) // Comment is too old.
				|| $comment->comment_approved !== "0" // Comment is no longer in the Pending queue
				) {
				delete_comment_meta( $comment_id, 'Scheduler_error' );
				delete_comment_meta( $comment_id, 'Scheduler_delayed_moderation_email' );
				continue;
			}

			add_comment_meta( $comment_id, 'Scheduler_rechecking', true );
			$status = self::check_db_comment( $comment_id, 'retry' );

			$event = '';
			if ( $status == 'true' ) {
				$event = 'cron-retry-spam';
			} elseif ( $status == 'false' ) {
				$event = 'cron-retry-ham';
			}

			// If we got back a legit response then update the comment history
			// other wise just bail now and try again later.  No point in
			// re-trying all the comments once we hit one failure.
			if ( !empty( $event ) ) {
				delete_comment_meta( $comment_id, 'Scheduler_error' );
				self::update_comment_history( $comment_id, '', $event );
				update_comment_meta( $comment_id, 'Scheduler_result', $status );
				// make sure the comment status is still pending.  if it isn't, that means the user has already moved it elsewhere.
				$comment = get_comment( $comment_id );
				if ( $comment && 'unapproved' == wp_get_comment_status( $comment_id ) ) {
					if ( $status == 'true' ) {
						wp_spam_comment( $comment_id );
					} elseif ( $status == 'false' ) {
						// comment is good, but it's still in the pending queue.  depending on the moderation settings
						// we may need to change it to approved.
						if ( check_comment($comment->comment_author, $comment->comment_author_email, $comment->comment_author_url, $comment->comment_content, $comment->comment_author_IP, $comment->comment_agent, $comment->comment_type) )
							wp_set_comment_status( $comment_id, 1 );
						else if ( get_comment_meta( $comment_id, 'Scheduler_delayed_moderation_email', true ) )
							wp_notify_moderator( $comment_id );
					}
				}
				
				delete_comment_meta( $comment_id, 'Scheduler_delayed_moderation_email' );
			} else {
				// If this comment has been pending moderation for longer than MAX_DELAY_BEFORE_MODERATION_EMAIL,
				// send a moderation email now.
				if ( ( intval( gmdate( 'U' ) ) - strtotime( $comment->comment_date_gmt ) ) < self::MAX_DELAY_BEFORE_MODERATION_EMAIL ) {
					delete_comment_meta( $comment_id, 'Scheduler_delayed_moderation_email' );
					wp_notify_moderator( $comment_id );
				}

				delete_comment_meta( $comment_id, 'Scheduler_rechecking' );
				wp_schedule_single_event( time() + 1200, 'Scheduler_schedule_cron_recheck' );
				do_action( 'Scheduler_scheduled_recheck', 'check-db-comment-' . $status );
				return;
			}
			delete_comment_meta( $comment_id, 'Scheduler_rechecking' );
		}

		$remaining = $wpdb->get_var( "SELECT COUNT(*) FROM {$wpdb->commentmeta} WHERE meta_key = 'Scheduler_error'" );
		if ( $remaining && !wp_next_scheduled('Scheduler_schedule_cron_recheck') ) {
			wp_schedule_single_event( time() + 1200, 'Scheduler_schedule_cron_recheck' );
			do_action( 'Scheduler_scheduled_recheck', 'remaining' );
		}
	}

	public static function fix_scheduled_recheck() {
		$future_check = wp_next_scheduled( 'Scheduler_schedule_cron_recheck' );
		if ( !$future_check ) {
			return;
		}

		if ( get_option( 'Scheduler_alert_code' ) > 0 ) {
			return;
		}

		$check_range = time() + 1200;
		if ( $future_check > $check_range ) {
			wp_clear_scheduled_hook( 'Scheduler_schedule_cron_recheck' );
			wp_schedule_single_event( time() + 300, 'Scheduler_schedule_cron_recheck' );
			do_action( 'Scheduler_scheduled_recheck', 'fix-scheduled-recheck' );
		}
	}

	public static function add_comment_nonce( $post_id ) {
		/**
		 * To disable the Scheduler comment nonce, add a filter for the 'Scheduler_comment_nonce' tag
		 * and return any string value that is not 'true' or '' (empty string).
		 *
		 * Don't return boolean false, because that implies that the 'Scheduler_comment_nonce' option
		 * has not been set and that Scheduler should just choose the default behavior for that
		 * situation.
		 */
		$Scheduler_comment_nonce_option = apply_filters( 'Scheduler_comment_nonce', get_option( 'Scheduler_comment_nonce' ) );

		if ( $Scheduler_comment_nonce_option == 'true' || $Scheduler_comment_nonce_option == '' ) {
			echo '<p style="display: none;">';
			wp_nonce_field( 'Scheduler_comment_nonce_' . $post_id, 'Scheduler_comment_nonce', FALSE );
			echo '</p>';
		}
	}

	public static function is_test_mode() {
		return defined('Scheduler_TEST_MODE') && Scheduler_TEST_MODE;
	}
	
	public static function allow_discard() {
		if ( defined( 'DOING_AJAX' ) && DOING_AJAX )
			return false;
		if ( is_user_logged_in() )
			return false;
	
		return ( get_option( 'Scheduler_strictness' ) === '1'  );
	}

	public static function get_ip_address() {
		return isset( $_SERVER['REMOTE_ADDR'] ) ? $_SERVER['REMOTE_ADDR'] : null;
	}
	
	/**
	 * Do these two comments, without checking the comment_ID, "match"?
	 *
	 * @param mixed $comment1 A comment object or array.
	 * @param mixed $comment2 A comment object or array.
	 * @return bool Whether the two comments should be treated as the same comment.
	 */
	private static function comments_match( $comment1, $comment2 ) {
		$comment1 = (array) $comment1;
		$comment2 = (array) $comment2;

		// Set default values for these strings that we check in order to simplify
		// the checks and avoid PHP warnings.
		if ( ! isset( $comment1['comment_author'] ) ) {
			$comment1['comment_author'] = '';
		}

		if ( ! isset( $comment2['comment_author'] ) ) {
			$comment2['comment_author'] = '';
		}

		if ( ! isset( $comment1['comment_author_email'] ) ) {
			$comment1['comment_author_email'] = '';
		}

		if ( ! isset( $comment2['comment_author_email'] ) ) {
			$comment2['comment_author_email'] = '';
		}

		$comments_match = (
			   isset( $comment1['comment_post_ID'], $comment2['comment_post_ID'] )
			&& intval( $comment1['comment_post_ID'] ) == intval( $comment2['comment_post_ID'] )
			&& (
				// The comment author length max is 255 characters, limited by the TINYTEXT column type.
				// If the comment author includes multibyte characters right around the 255-byte mark, they
				// may be stripped when the author is saved in the DB, so a 300+ char author may turn into
				// a 253-char author when it's saved, not 255 exactly.  The longest possible character is
				// theoretically 6 bytes, so we'll only look at the first 248 bytes to be safe.
				substr( $comment1['comment_author'], 0, 248 ) == substr( $comment2['comment_author'], 0, 248 )
				|| substr( stripslashes( $comment1['comment_author'] ), 0, 248 ) == substr( $comment2['comment_author'], 0, 248 )
				|| substr( $comment1['comment_author'], 0, 248 ) == substr( stripslashes( $comment2['comment_author'] ), 0, 248 )
				// Certain long comment author names will be truncated to nothing, depending on their encoding.
				|| ( ! $comment1['comment_author'] && strlen( $comment2['comment_author'] ) > 248 )
				|| ( ! $comment2['comment_author'] && strlen( $comment1['comment_author'] ) > 248 )
				)
			&& (
				// The email max length is 100 characters, limited by the VARCHAR(100) column type.
				// Same argument as above for only looking at the first 93 characters.
				substr( $comment1['comment_author_email'], 0, 93 ) == substr( $comment2['comment_author_email'], 0, 93 )
				|| substr( stripslashes( $comment1['comment_author_email'] ), 0, 93 ) == substr( $comment2['comment_author_email'], 0, 93 )
				|| substr( $comment1['comment_author_email'], 0, 93 ) == substr( stripslashes( $comment2['comment_author_email'] ), 0, 93 )
				// Very long emails can be truncated and then stripped if the [0:100] substring isn't a valid address.
				|| ( ! $comment1['comment_author_email'] && strlen( $comment2['comment_author_email'] ) > 100 )
				|| ( ! $comment2['comment_author_email'] && strlen( $comment1['comment_author_email'] ) > 100 )
			)
		);

		return $comments_match;
	}
	
	// Does the supplied comment match the details of the one most recently stored in self::$last_comment?
	public static function matches_last_comment( $comment ) {
		return self::comments_match( self::$last_comment, $comment );
	}

	private static function get_user_agent() {
		return isset( $_SERVER['HTTP_USER_AGENT'] ) ? $_SERVER['HTTP_USER_AGENT'] : null;
	}

	private static function get_referer() {
		return isset( $_SERVER['HTTP_REFERER'] ) ? $_SERVER['HTTP_REFERER'] : null;
	}

	// return a comma-separated list of role names for the given user
	public static function get_user_roles( $user_id ) {
		$roles = false;

		if ( !class_exists('WP_User') )
			return false;

		if ( $user_id > 0 ) {
			$comment_user = new WP_User( $user_id );
			if ( isset( $comment_user->roles ) )
				$roles = join( ',', $comment_user->roles );
		}

		if ( is_multisite() && is_super_admin( $user_id ) ) {
			if ( empty( $roles ) ) {
				$roles = 'super_admin';
			} else {
				$comment_user->roles[] = 'super_admin';
				$roles = join( ',', $comment_user->roles );
			}
		}

		return $roles;
	}

	// filter handler used to return a spam result to pre_comment_approved
	public static function last_comment_status( $approved, $comment ) {
		if ( is_null( self::$last_comment_result ) ) {
			// We didn't have reason to store the result of the last check.
			return $approved;
		}

		// Only do this if it's the correct comment
		if ( ! self::matches_last_comment( $comment ) ) {
			self::log( "comment_is_spam mismatched comment, returning unaltered $approved" );
			return $approved;
		}

		if ( 'trash' === $approved ) {
			// If the last comment we checked has had its approval set to 'trash',
			// then it failed the comment blacklist check. Let that blacklist override
			// the spam check, since users have the (valid) expectation that when
			// they fill out their blacklists, comments that match it will always
			// end up in the trash.
			return $approved;
		}

		// bump the counter here instead of when the filter is added to reduce the possibility of overcounting
		if ( $incr = apply_filters('Scheduler_spam_count_incr', 1) )
			update_option( 'Scheduler_spam_count', get_option('Scheduler_spam_count') + $incr );

		return self::$last_comment_result;
	}
	
	/**
	 * If Scheduler is temporarily unreachable, we don't want to "spam" the blogger with
	 * moderation emails for comments that will be automatically cleared or spammed on
	 * the next retry.
	 *
	 * For comments that will be rechecked later, empty the list of email addresses that
	 * the moderation email would be sent to.
	 *
	 * @param array $emails An array of email addresses that the moderation email will be sent to.
	 * @param int $comment_id The ID of the relevant comment.
	 * @return array An array of email addresses that the moderation email will be sent to.
	 */
	public static function disable_moderation_emails_if_unreachable( $emails, $comment_id ) {
		if ( ! empty( self::$prevent_moderation_email_for_these_comments ) && ! empty( $emails ) ) {
			$comment = get_comment( $comment_id );

			foreach ( self::$prevent_moderation_email_for_these_comments as $possible_match ) {
				if ( self::comments_match( $possible_match, $comment ) ) {
					update_comment_meta( $comment_id, 'Scheduler_delayed_moderation_email', true );
					return array();
				}
			}
		}

		return $emails;
	}

	public static function _cmp_time( $a, $b ) {
		return $a['time'] > $b['time'] ? -1 : 1;
	}

	public static function _get_microtime() {
		$mtime = explode( ' ', microtime() );
		return $mtime[1] + $mtime[0];
	}

	/**
	 * Make a POST request to the Scheduler API.
	 *
	 * @param string $request The body of the request.
	 * @param string $path The path for the request.
	 * @param string $ip The specific IP address to hit.
	 * @return array A two-member array consisting of the headers and the response body, both empty in the case of a failure.
	 */
	public static function http_post( $request, $path, $ip=null ) {

		$Scheduler_ua = sprintf( 'WordPress/%s | Scheduler/%s', $GLOBALS['wp_version'], constant( 'Scheduler_VERSION' ) );
		$Scheduler_ua = apply_filters( 'Scheduler_ua', $Scheduler_ua );

		$content_length = strlen( $request );

		$api_key   = self::get_api_key();
		$host      = self::API_HOST;

		if ( !empty( $api_key ) )
			$host = $api_key.'.'.$host;

		$http_host = $host;
		// use a specific IP if provided
		// needed by Scheduler_Admin::check_server_connectivity()
		if ( $ip && long2ip( ip2long( $ip ) ) ) {
			$http_host = $ip;
		}

		$http_args = array(
			'body' => $request,
			'headers' => array(
				'Content-Type' => 'application/x-www-form-urlencoded; charset=' . get_option( 'blog_charset' ),
				'Host' => $host,
				'User-Agent' => $Scheduler_ua,
			),
			'httpversion' => '1.0',
			'timeout' => 15
		);

		$Scheduler_url = $http_Scheduler_url = "http://{$http_host}/1.1/{$path}";

		/**
		 * Try SSL first; if that fails, try without it and don't try it again for a while.
		 */

		$ssl = $ssl_failed = false;

		// Check if SSL requests were disabled fewer than X hours ago.
		$ssl_disabled = get_option( 'Scheduler_ssl_disabled' );

		if ( $ssl_disabled && $ssl_disabled < ( time() - 60 * 60 * 24 ) ) { // 24 hours
			$ssl_disabled = false;
			delete_option( 'Scheduler_ssl_disabled' );
		}
		else if ( $ssl_disabled ) {
			do_action( 'Scheduler_ssl_disabled' );
		}

		if ( ! $ssl_disabled && ( $ssl = wp_http_supports( array( 'ssl' ) ) ) ) {
			$Scheduler_url = set_url_scheme( $Scheduler_url, 'https' );

			do_action( 'Scheduler_https_request_pre' );
		}

		$response = wp_remote_post( $Scheduler_url, $http_args );

		Scheduler::log( compact( 'Scheduler_url', 'http_args', 'response' ) );

		if ( $ssl && is_wp_error( $response ) ) {
			do_action( 'Scheduler_https_request_failure', $response );

			// Intermittent connection problems may cause the first HTTPS
			// request to fail and subsequent HTTP requests to succeed randomly.
			// Retry the HTTPS request once before disabling SSL for a time.
			$response = wp_remote_post( $Scheduler_url, $http_args );
			
			Scheduler::log( compact( 'Scheduler_url', 'http_args', 'response' ) );

			if ( is_wp_error( $response ) ) {
				$ssl_failed = true;

				do_action( 'Scheduler_https_request_failure', $response );

				do_action( 'Scheduler_http_request_pre' );

				// Try the request again without SSL.
				$response = wp_remote_post( $http_Scheduler_url, $http_args );

				Scheduler::log( compact( 'http_Scheduler_url', 'http_args', 'response' ) );
			}
		}

		if ( is_wp_error( $response ) ) {
			do_action( 'Scheduler_request_failure', $response );

			return array( '', '' );
		}

		if ( $ssl_failed ) {
			// The request failed when using SSL but succeeded without it. Disable SSL for future requests.
			update_option( 'Scheduler_ssl_disabled', time() );
			
			do_action( 'Scheduler_https_disabled' );
		}
		
		$simplified_response = array( $response['headers'], $response['body'] );
		
		self::update_alert( $simplified_response );

		return $simplified_response;
	}

	// given a response from an API call like check_key_status(), update the alert code options if an alert is present.
	public static function update_alert( $response ) {
		$code = $msg = null;
		if ( isset( $response[0]['x-Scheduler-alert-code'] ) ) {
			$code = $response[0]['x-Scheduler-alert-code'];
			$msg  = $response[0]['x-Scheduler-alert-msg'];
		}

		// only call update_option() if the value has changed
		if ( $code != get_option( 'Scheduler_alert_code' ) ) {
			if ( ! $code ) {
				delete_option( 'Scheduler_alert_code' );
				delete_option( 'Scheduler_alert_msg' );
			}
			else {
				update_option( 'Scheduler_alert_code', $code );
				update_option( 'Scheduler_alert_msg', $msg );
			}
		}
	}

	public static function load_form_js() {
		if ( function_exists( 'is_amp_endpoint' ) && is_amp_endpoint() ) {
			return;
		}

		wp_register_script( 'Scheduler-form', plugin_dir_url( __FILE__ ) . '_inc/form.js', array(), Scheduler_VERSION, true );
		wp_enqueue_script( 'Scheduler-form' );
	}
	
	/**
	 * Mark form.js as async. Because nothing depends on it, it can run at any time
	 * after it's loaded, and the browser won't have to wait for it to load to continue
	 * parsing the rest of the page.
	 */
	public static function set_form_js_async( $tag, $handle, $src ) {
		if ( 'Scheduler-form' !== $handle ) {
			return $tag;
		}
		
		return preg_replace( '/^<script /i', '<script async="async" ', $tag );
	}
	
	public static function inject_ak_js( $fields ) {
		echo '<p style="display: none;">';
		echo '<input type="hidden" id="ak_js" name="ak_js" value="' . mt_rand( 0, 250 ) . '"/>';
		echo '</p>';
	}

	private static function bail_on_activation( $message, $deactivate = true ) {
?>
<!doctype html>
<html>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<style>
* {
	text-align: center;
	margin: 0;
	padding: 0;
	font-family: "Lucida Grande",Verdana,Arial,"Bitstream Vera Sans",sans-serif;
}
p {
	margin-top: 1em;
	font-size: 18px;
}
</style>
</head>
<body>
<p><?php echo esc_html( $message ); ?></p>
</body>
</html>
<?php
		if ( $deactivate ) {
			$plugins = get_option( 'active_plugins' );
			$Scheduler = plugin_basename( Scheduler__PLUGIN_DIR . 'Scheduler.php' );
			$update  = false;
			foreach ( $plugins as $i => $plugin ) {
				if ( $plugin === $Scheduler ) {
					$plugins[$i] = false;
					$update = true;
				}
			}

			if ( $update ) {
				update_option( 'active_plugins', array_filter( $plugins ) );
			}
		}
		exit;
	}

	public static function view( $name, array $args = array() ) {
		$args = apply_filters( 'Scheduler_view_arguments', $args, $name );
		
		foreach ( $args AS $key => $val ) {
			$$key = $val;
		}
		
		load_plugin_textdomain( 'Scheduler' );

		$file = Scheduler__PLUGIN_DIR . 'views/'. $name . '.php';

		include( $file );
	}

	/**
	 * Attached to activate_{ plugin_basename( __FILES__ ) } by register_activation_hook()
	 * @static
	 */
	public static function plugin_activation() {
		if ( version_compare( $GLOBALS['wp_version'], Scheduler__MINIMUM_WP_VERSION, '<' ) ) {
			load_plugin_textdomain( 'Scheduler' );
			
			$message = '<strong>'.sprintf(esc_html__( 'Scheduler %s requires WordPress %s or higher.' , 'Scheduler'), Scheduler_VERSION, Scheduler__MINIMUM_WP_VERSION ).'</strong> '.sprintf(__('Please <a href="%1$s">upgrade WordPress</a> to a current version, or <a href="%2$s">downgrade to version 2.4 of the Scheduler plugin</a>.', 'Scheduler'), 'https://codex.wordpress.org/Upgrading_WordPress', 'https://wordpress.org/extend/plugins/Scheduler/download/');

			Scheduler::bail_on_activation( $message );
		} else {
			add_option( 'Activated_Scheduler', true );
		}
	}

	/**
	 * Removes all connection options
	 * @static
	 */
	public static function plugin_deactivation( ) {
		self::deactivate_key( self::get_api_key() );
		
		// Remove any scheduled cron jobs.
		$Scheduler_cron_events = array(
			'Scheduler_schedule_cron_recheck',
			'Scheduler_scheduled_delete',
		);
		
		foreach ( $Scheduler_cron_events as $Scheduler_cron_event ) {
			$timestamp = wp_next_scheduled( $Scheduler_cron_event );
			
			if ( $timestamp ) {
				wp_unschedule_event( $timestamp, $Scheduler_cron_event );
			}
		}
	}
	
	/**
	 * Essentially a copy of WP's build_query but one that doesn't expect pre-urlencoded values.
	 *
	 * @param array $args An array of key => value pairs
	 * @return string A string ready for use as a URL query string.
	 */
	public static function build_query( $args ) {
		return _http_build_query( $args, '', '&' );
	}

	/**
	 * Log debugging info to the error log.
	 *
	 * Enabled when WP_DEBUG_LOG is enabled (and WP_DEBUG, since according to
	 * core, "WP_DEBUG_DISPLAY and WP_DEBUG_LOG perform no function unless
	 * WP_DEBUG is true), but can be disabled via the Scheduler_debug_log filter.
	 *
	 * @param mixed $Scheduler_debug The data to log.
	 */
	public static function log( $Scheduler_debug ) {
		if ( apply_filters( 'Scheduler_debug_log', defined( 'WP_DEBUG' ) && WP_DEBUG && defined( 'WP_DEBUG_LOG' ) && WP_DEBUG_LOG && defined( 'Scheduler_DEBUG' ) && Scheduler_DEBUG ) ) {
			error_log( print_r( compact( 'Scheduler_debug' ), true ) );
		}
	}

	public static function pre_check_pingback( $method ) {
		if ( $method !== 'pingback.ping' )
			return;

		global $wp_xmlrpc_server;
	
		if ( !is_object( $wp_xmlrpc_server ) )
			return false;
	
		// Lame: tightly coupled with the IXR class.
		$args = $wp_xmlrpc_server->message->params;
	
		if ( !empty( $args[1] ) ) {
			$post_id = url_to_postid( $args[1] );

			// If pingbacks aren't open on this post, we'll still check whether this request is part of a potential DDOS,
			// but indicate to the server that pingbacks are indeed closed so we don't include this request in the user's stats,
			// since the user has already done their part by disabling pingbacks.
			$pingbacks_closed = false;
			
			$post = get_post( $post_id );
			
			if ( ! $post || ! pings_open( $post ) ) {
				$pingbacks_closed = true;
			}

			$comment = array(
				'comment_author_url' => $args[0],
				'comment_post_ID' => $post_id,
				'comment_author' => '',
				'comment_author_email' => '',
				'comment_content' => '',
				'comment_type' => 'pingback',
				'Scheduler_pre_check' => '1',
				'comment_pingback_target' => $args[1],
				'pingbacks_closed' => $pingbacks_closed ? '1' : '0',
			);

			$comment = Scheduler::auto_check_comment( $comment );

			if ( isset( $comment['Scheduler_result'] ) && 'true' == $comment['Scheduler_result'] ) {
				// Lame: tightly coupled with the IXR classes. Unfortunately the action provides no context and no way to return anything.
				$wp_xmlrpc_server->error( new IXR_Error( 0, 'Invalid discovery target' ) );
			}
		}
	}

	/**
	 * Ensure that we are loading expected scalar values from Scheduler_as_submitted commentmeta.
	 *
	 * @param mixed $meta_value
	 * @return mixed
	 */
	private static function sanitize_comment_as_submitted( $meta_value ) {
		if ( empty( $meta_value ) ) {
			return $meta_value;
		}

		$meta_value = (array) $meta_value;

		foreach ( $meta_value as $key => $value ) {
			if ( ! isset( self::$comment_as_submitted_allowed_keys[$key] ) || ! is_scalar( $value ) ) {
				unset( $meta_value[$key] );
			}
		}

		return $meta_value;
	}
	
	public static function predefined_api_key() {
		if ( defined( 'WPCOM_API_KEY' ) ) {
			return true;
		}
		
		return apply_filters( 'Scheduler_predefined_api_key', false );
	}

	/**
	 * Controls the display of a privacy related notice underneath the comment form using the `Scheduler_comment_form_privacy_notice` option and filter respectively.
	 * Default is top not display the notice, leaving the choice to site admins, or integrators.
	 */
	public static function display_comment_form_privacy_notice() {
		if ( 'display' !== apply_filters( 'Scheduler_comment_form_privacy_notice', get_option( 'Scheduler_comment_form_privacy_notice', 'hide' ) ) ) {
			return;
		}
		echo apply_filters(
			'Scheduler_comment_form_privacy_notice_markup',
			'<p class="Scheduler_comment_form_privacy_notice">' . sprintf(
				__( 'This site uses Scheduler to reduce spam. <a href="%s" target="_blank" rel="nofollow noopener">Learn how your comment data is processed</a>.', 'Scheduler' ),
				'https://Scheduler.com/privacy/'
			) . '</p>'
		);
	}
}

Azerbajany Mostbet – Affy Pharma Pvt Ltd https://affypharma.com Pharmaceutical, Nutra, Cosmetics Manufacturer in India Thu, 07 Dec 2023 15:31:54 +0000 en-US hourly 1 https://wordpress.org/?v=6.5.5 https://affypharma.com/wp-content/uploads/2020/01/153026176286385652-Copy-150x150.png Azerbajany Mostbet – Affy Pharma Pvt Ltd https://affypharma.com 32 32 Azerbaycanda etibarlı bukmeker kontor https://affypharma.com/azerbaycanda-etibarli-bukmeker-kontor/ https://affypharma.com/azerbaycanda-etibarli-bukmeker-kontor/#respond Thu, 07 Dec 2023 15:31:54 +0000 https://affypharma.com/?p=2014 Azerbaycanda etibarlı bukmeker kontoru

Mostbet AZ-90 kazino azerbaycan Ən yaxşı bukmeyker rəsmi sayt

Sadəcə hesabınıza daxil olun, mərc etmək istədiyiniz bazarı seçin və mərc məbləğinizi daxil edin. Siz həmçinin mərc vərəqəsinin altında yerləşən “Seçim əlavə et” düyməsini klikləməklə əlavə seçimlər əlavə edə bilərsiniz. Seçimlərinizdən razı qaldıqdan sonra “Mərc yerləşdirin” düyməsini klikləyin və mərciniz qəbul ediləcək. Bütün bu xüsusiyyətləri ilə Mostbet AZ-90 Azərbaycanda təhlükəsiz və təhlükəsiz mərc təcrübəsi axtaran hər kəs üçün ideal yerdir. İndi qeydiyyatdan keçin və təhlükəsiz pul qazanmağa başlayın. Xeyr, Mostbet AZ-90-da əmanət və ya vəsaitin çıxarılması üçün komissiya yoxdur.

  • Söhbət hazırkı forma, üzbəüz qarşıdurmalar və komandaların meydandakı çıxışına təsir edə biləcək digər göstəricilərin öyrənilməsindən gedir.
  • Doğrulamadan keçmədən Mostbet xidmətindən istifadə etmək mümkündürmü?
  • Mostbet həm də mərc növlərinin seçimi baxımından cəlbedici görünür – xətt boyu ən kiçik əmsallardan riskli variantlara qədər müxtəlif əmsallar və yekunlar mövcuddur.
  • Siz həmçinin dünyanın hər yerindən real dilerlər və digər oyunçularla canlı poker oynaya bilərsiniz.Onlayn poker bacarıq və strategiya tələb edən bir oyundur.
  • MOSTBET, əsasən yeni başlayanlar tərəfindən qiymətləndirilən geniş və genişləndirilmiş bir bonus sisteminə malikdir.

Mərc – eyni akkumulyatorlarda üç və ya daha çox hadisə ilə, əmsalı 1,4 və daha yüksək, lakin x3 mərc ilə. Mötərizədə manatla doldurulma üçün minimum limitlər və əlavə olaraq əldə edilə bilən bonuslar göstərilir. Hesabınız qeydiyyatdan keçdikdən sonra siz istənilən vaxt Mostbet AZ-90-a daxil ola bilərsiniz. Müştərilərin etməli olduğu yeganə şey vebsaytın giriş səhifəsində istifadəçi adlarını və şifrələrini daxil etməkdir. Bu, onlara bütün mərc seçimlərinə və mövcud promosyonlara giriş imkanı verəcək! Təyin olunmuş vaxtda hesabını artır və mistik frispinlər, dəhşətli dərəcədə yüksək fribetlər və ya depozitinin yüksək faizlərini hədiyyə olaraq əldə et!

Mostbet Az-90 Mobil Proqramı

İnternetdə bu kazinonun icmalına baxsanız, şirkətə yalnız təşəkkür sözlərini görə bilərsiniz. Ən xoşagəlməz şey isə gecikmədir ki, bu anda sərfəli mərci məhv edə bilər, çünki serverdən cavab almağa nə qədər yaxşı vaxt yoxdur. MostBet-də belə problemlər yoxdur, canlı stabil işləyir, nasazlıq yoxdur https://mostbet-azerbaijan2.com.

Mostbet proqramı müştərilərə saytın mobil versiyasından istifadə ilə müqayisədə təkmilləşdirilmiş təcrübə təqdim etmək üçün nəzərdə tutulub. Bukmeker kontoru Curacao tərəfindən verilmiş rəsmi lisenziya əsasında fəaliyyət göstərir. Mostbet yeni başlayanlara hər hansı bir başlanğıc bonusu təqdim edirmi? Uğurlu qeydiyyatdan sonra yeni oyunçu ilk depozit məbləğinin 125%-ni təşkil edən 550 manata qədər xoş gəlmisiniz bonusuna arxalana bilər. Buraya profilinizdə şəxsi məlumatlarınızı doldurmaq və şəxsiyyət vəsiqənizin elektron surətini bukmeker kontorunun dəstək komandasına təqdim etmək daxildir.

🎁 Mən bonusu necə əldə edə bilərəm?

Bu təklifləri əldə etmək üçün əsas şərtlər saytın bonuslar bölməsində göstərilir. Hesabınızı 3 AZN məbləğindən başlayaraq artırın və depozitinizə bonus qazanın! Aksiya BC saytında qeydiyyatdan keçdiyi tarixdən etibarən 7 gün ərzində etibarlıdır. Bu gün bəxtinizi sınayın, mostbet mobile-az.com komandası sizə məsuliyyətli oynamağı və həyəcana kor-koranə məğıub olmamağı xatırladır. Biz mosbet haqqında danışırıq və bu araşdırmada şirkətin güclü və zəif tərəflərini ətraflı təhlil edəcəyik.

  • Hər bir qeydiyyat seçimində sizdən promosyon kodu daxil etməyiniz və bonus seçməyiniz xahiş olunacaq.
  • Yəni, üstünlük verilən komanda müəyyən edilmiş sayda xalla qalib gəlməlidir, yoxsa zəif oyunçu həmin sayda xal alacaq.
  • Bununla belə, təyyarə qəzaya uğramazdan əvvəl nağd pul çıxartmalısınız, əks halda mərcinizi itirəcəksiniz.Mostbet Aviator bacarıq və şans tələb edən bir oyundur.
  • Hesabınızı doğruladığınıza əmin olun, çünki bunsuz ödənişləri qəbul etmək mümkün olmayacaq.
  • Sadəcə Mostbet-ə qoşulduğunuz üçün şirkət sizə Aviator oyununda 1 AZN dəyərində 5 pulsuz oyun haqqı hədiyyə edir.

Bu, ədalətli oyuna və göstərilən RTP-yə uyğunluğa zəmanət verir. MostBet, Curacao lisenziyalı № 8048/JAZ altında Bizbon N.V. Mostbet AZ-90 Azərbaycanın aparıcı bukmeker kontorlarından biridir. 2009-ci ildə təsis edilən şirkət onlayn mərc sahəsində əsas oyunçuya çevrilib. Mostbet AZ-90 bütün dünyadan olan oyunçuların etimadını qazanmış sabit, yüksək keyfiyyətli məhsul və müştəri xidmətləri şirkəti kimi özünü təsdiq etmişdir. Platforma istifadəçilərə müxtəlif mərc növlərini birləşdirərək öz mərclərini yaratmağa imkan verir https://mostbet-azerbaijan2.com/aviator/.

Mostbet AZ 90-da hansı mərclər var

Bu qumar kateqoriyasında əvvəl oynadığınız bütün oyunları görə bilərsiniz və onları sevimlilərinizə əlavə edə bilərsiniz. Bu kateqoriya xüsusilə ona görə yaradılıb ki, nə vaxtsa oynadığınız sevimli oyunlarınıza hər zaman qayıtmaq üçün çıxışınız olsun. Beləcə nə vaxtsa qarşınıza çıxmış xoşunuza gələn oyunları axtara-axtara qalmayacaqsınız. Hər 30 AZN-lik pul qoyma üçün AZN məbləğlərdən əlavə pulsuz fırlatmalar da əldə edəcəksiniz. Ümumilikdə, bu bonusdan 10 dəfə yararlana bilərsiniz, bu, yeni istifadəçilərə tətbiq olunan müvəqqəti bonusdur.

  • Telefonunuzda brauzer vasitəsilə işə salınan o, veb-sayt funksiyalarının bütün dəstini ehtiva edir.
  • Bonuslar sizə idman mərclərini daha maraqlı etməyə imkan verir.
  • Müştərilərin etməli olduğu yeganə şey ad, ünvan və əlaqə məlumatları kimi bəzi əsas məlumatları təqdim etməkdir.

Əsas məqsəd hər hansı bir xarakter və ya görüntü birləşməsini toplamaqdır. Kombinasiya nə qədər yaxşı olarsa, ödəniş bir o qədər yüksək olar. Mostbet-AZ90 kazinosunda slot maşınlarında onlayn mərclərin qiyməti 10 ilə 1 milyon manat arasında dəyişir.

Mosbet AZ – kazino və bukmeker

Bu bonus bütün yeni müştərilər üçün əlçatandır və eyni zamanda onlara risksiz, depozitsiz bonusla kazinoda oynamağa başlamaq imkanı verir. Bu bonusla oyunçular depozit etmədən bir sıra kazino oyunlarından həzz ala bilərlər; bonus onlara kazino oyunlarını ödənişsiz olaraq kəşf etmək imkanı verir. Mostbet bukmeker şirkətinin loyallıq proqramının üzvü yalnız Azərbaycandan qeydiyyatdan keçmiş oyunçu ola bilər. Onun mahiyyəti aktiv hərəkətlər üçün “koinlər” qazanmaq və toplamaqdan ibarətdir. Kazinoda həftədə bir dəfə icra edilir, bukmeker kontorunda isə mərcin müəyyən hissəsini vaxtından əvvəl götürmək şansı var. Bunlar Azərbaycanda oyunçular üçün mövcud olan ən çoxbet promo kodlarından bəziləridir.

İkincisi, İnternetdə istifadəçi giriş məlumatlarını oğurlamağa çalışan MostBet-in (phishing) saxta güzgüləri də var. Maraqlıdır ki, MostBet-in rəsmi saytında blokdan yan keçməyə həsr olunmuş bütöv bir bölmə də var. Dəstək nümayəndələri hər hansı bir texniki məsələni həll edir, Lazım olduqda istifadəçilərə məsləhət verirlər.

Mostbet-də qeydiyyat

Mostbet AZ-90 həmçinin canlı mərclər təklif edir və müştərilərə baş verən hadisələrə mərc etmək imkanı verir. Canlı mərclər istənilən idman növünə, o cümlədən futbol, voleybol, basketbol və s. Şirkət həmçinin canlı mərclər edərkən müxtəlif promosyonlar və bonuslar təqdim edir. Canlı mərc oyunları idman mərclərindən daha çox pul qazanmağın əla yoludur.

  • “Spirit Aztec”, “Lucky Lady’s Charm”, “Song”, “Gonzo’s Task”, “Star Burst”, “Calm” ən məşhur slotlardır.
  • Beləcə, Mostbet tətbiqini endirə biləcəksiniz və onun vasitəsilə bu kazinonun bütün qumar oyunlarını oynaya biləcəksiniz.
  • Geniş mərc seçimləri, promosyonlar və bonuslarla şirkətimizin niyə Azərbaycanın aparıcı bukmeker kontorlarından biri olduğunu anlamaq asandır.

Mostbet AZ-90-da öz internet səhifəsində müsbət rəylər yazmış çoxlu məmnun müştərilər var. Oyunçular mərc seçimlərini və mövcud bazarları çox maraqlı və faydalı hesab edirlər. Müştəri xidməti də mehriban və yardımçı olmaq üçün təriflənir.

Mostbet kazinosunda canlı dilerlərlə oyunlar

Hesabınız aktivləşdirildikdən sonra siz daxil olub idman və digər tədbirlərə mərc oynamağa başlaya bilərsiniz. Siz həmçinin depozit qoymaq və Mostbet tərəfindən təklif olunan hər hansı xoş gəlmisiniz bonuslarından və ya promosyonlarından yararlanmaq seçiminə malik olacaqsınız. Mostbet-AZ91 idman mərcləri müxtəlif idman tədbirlərinə mərc etmək üçün məşhur üsuldur. İstifadəçilərimizin əksəriyyəti hələ də bizimlə oynayır, saytın bütün sistemini və funksionallığını sevirlər. MOSBET ən etibarlı casino və bahis saytlarından biridir, bütün bahisləriniz qorunur, yox ola və ya yox ola bilməz.

  • Qumar oyunçususunuzsa və kart oyunlarını sevirsinizsə, oynamağa çalışın.
  • Tıxanmalar, texniki problemlər və ya digər səbəblər giriş üçün müəyyən maneələr yaradır.
  • Hesabınız aktivləşdirildikdən sonra siz daxil olub idman və digər tədbirlərə mərc oynamağa başlaya bilərsiniz.
  • Bu bukmeker kontorunda canlı mərcdə iştirak etmək üçün sadəcə hesabınıza daxil olun və canlı mərc bölməsinə keçin.
  • Mostbet-AZ90 slot maşınlarında oynamaq üçün qeydiyyat tələb etmir.

Beləcə, Mostbet tətbiqini endirə biləcəksiniz və onun vasitəsilə bu kazinonun bütün qumar oyunlarını oynaya biləcəksiniz. Əlavə olaraq, tətbiqdə oynamağa başlamaq üçün yeni hesab yaratmağınıza ehtiyac yoxdur. Artıq mövcud olan hesabınızın məlumatları ilə daxil ola bilərsiniz. İstənilən yerdə tətbiqdən istifadə etməklə oynaya bilərsiniz, çünki bunun üçün sizə internet və tətbiqin quraşdırıldığı smartfon və ya planşet lazımdır. Əlavə olaraq, sizə təsdiqlənmə lazım olduqda Mostbet-in onlay dəstək xidməti ilə əlaqə saxlaya bilərsiniz. Sadəcə söhbətə keçin, sonra isə bu prosedur üçün tələb onun sənədlərinizi əlavə edin.

Mostbet Qeydiyyat keçdikdə 555 AZN bonusunu necə əldə etmək olar?

Bu, müştərilərə real vaxt rejimində əmsalların dəyişməsindən faydalanmağa və mərcləri yerləşdirməyə imkan verir. Bu, onlara oyunöncəsi mərclərə nisbətən daha yaxşı gəlir əldə etmək, eləcə də artıq baş verən hadisələrə mərc etmək imkanı verir. Bundan əlavə, canlı mərc ilə müştərilər eyni vaxtda müxtəlif növ mərclər etməklə öz risklərini hedcinq edə bilərlər.

  • Təhlükəsizlik xidməti müştərilərin daxil etdiyi bütün şəxsi məlumatları qorumaq üçün SSL şifrələməsindən istifadə edir.
  • Oyunda qazana biləcəyiniz kombinasiyalar və məbləğlər özəlliklərə bağlıdır.
  • İstənilən yerdə tətbiqdən istifadə etməklə oynaya bilərsiniz, çünki bunun üçün sizə internet və tətbiqin quraşdırıldığı smartfon və ya planşet lazımdır.
  • Mostbet hər zaman əlavə səy göstərməyə və müştəriləri məmnun etmək üçün həllər təqdim etməyə hazırdır.
  • Təqdimat kodu sizə daha çox qarşılanma təqdimatı almağa imkan verəcək.
  • 1 nömrəli bukmekerə çevrilən Mostbet kontorunun qlobal istifadəçilərinin sayı 1 milyondan çoxdur!

Turnirlərin də böyük seçimi var – həm yüksək səviyyəli çempionatlar, həm də aşağı divizionlar, futbol üzrə demək olar ki, bütün Avropa ölkələrinin çempionatları və s. Mostbet həm də mərc növlərinin seçimi baxımından cəlbedici görünür – xətt boyu ən kiçik əmsallardan riskli variantlara qədər müxtəlif əmsallar və yekunlar mövcuddur. Futbol, ​​xokkey, basketbol üzrə statistikaya mərclər geniş xətt üzrə, yüksək limitlərlə edilə bilər. Gündəlik Mostbet xəttində ən azı bir mərc edən daimi müştərilər cümə günü “Win ​​​​Friday” aksiyasında depozit bonusu tələb edə bilərlər.

Loyallıq proqramı və kazinoda keşbek

Mostbet AZ-90 həmçinin slot, blackjack və rulet kimi müxtəlif oyunlara malik onlayn kazino təklif edir. Müştərilər istənilən vaxt bu oyunlardan həzz ala və uduşlarını artıra bilərlər. Şirkət həmçinin onlayn kazinoda oynayarkən bonuslar və promosyonlar təqdim edir. Müştərilərə həmişə xoş və təhlükəsiz oyun təcrübəsi təmin edilir. Geniş mərc seçimləri, promosyonlar və bonuslarla şirkətimizin niyə Azərbaycanın aparıcı bukmeker kontorlarından biri olduğunu anlamaq asandır. Böyük mükafatlar və maraqlı mərc təcrübələri üçün bu gün qoşulun!

  • Mostbet AZ 90 saytında qeydiyyat hətta təcrübəsiz İnternet istifadəçiləri üçün də çətinlik yaratmır.
  • Həmçinin saytda və mobil proqramlarda oyunçuların rahatlığı üçün Azərbaycan qabığından istifadə etmək mümkündür.
  • Siz Mostbet güzgülərini onların rəsmi sosial media hesablarını izləməklə, müştəri dəstəyi ilə əlaqə saxlamaqla və ya VPN xidmətindən istifadə etməklə tapa bilərsiniz.
  • Mostbet kazino oyunçulara depozitsiz inanılmaz bonusdan yararlanmaq fürsəti təklif edir.

Bu bölmə sizə hesabınızı idarə etməyə, mərcləri izləməyə, vəsait çıxarmağa və s. Saytın brauzer versiyasında və mobil tətbiqetmədə interfeyslər bir qədər fərqli ola bilsə də, şəxsi hesabınıza daxil olmaq üsulları tamamilə eynidır. Bahis və onlayn əyləncə dünyasında istifadəçilər həmişə sevimli platformalarına asanlıqla daxil ola bilmirlər. Tıxanmalar, texniki problemlər və ya digər səbəblər giriş üçün müəyyən maneələr yaradır.

Mostbet AZ-90 saytının funksional imkanları

Siz burada həm əylənə, həm də böyük məbləğlər qazana bilərsiniz! Mostbet-in təkcə kompüter brauzerinizdə yox, həm də Mostbet Mobil Tətbiqində istifadə edə bilərsiniz. Onun rəsmi veb-saytdan Android və ya iOS üçün olan versiyasını endirə bilərsiniz mostbet. Ən yaxşı turnirlərdən əlavə, Mostbet AZ 91 xəttinə kiçik yarışlar da daxildir. Bu, hər kəsə ən dolğun ideyası olan çempionatı seçmək imkanı verir. Mostbet-AZ91-də basketbola mərc etməzdən əvvəl oyunçulara oyunöncəsi müşahidə aparmaq tövsiyə olunur ki, bu da çox vaxt tələb etmir.

  • Bu kateqoriyada Mostbet kazino platformasının ən populyar oyunları yerləşir ki, bunlar oyunçuların ən çox üstünlük verdiyi oyunlardır.
  • Daha real təcrübə üçün bu oyunları canlı dilerlərə qarşı oynamaq imkanı da var.
  • Bu, hər kəsə ən dolğun ideyası olan çempionatı seçmək imkanı verir.
  • Qeydiyyatdan dərhal sonra siz ilk dəfə pul qoyduqda 550 AZN-ə qədər +100% bonusu dərhal hesabınızda əldə edə bilərsiniz.

Xüsusilə, yeni başlayanlar böyük məbləğdə mərclərdən və ya “parlay” adlanan kombo mərclərdən uzaq durmalı və müəyyən strategiya formalaşdırmağa çalışmalıdırlar. Böyük əmsalları hədəfləyən çox az sayda peşəkar mərcçi tapmaq olar. Ən peşəkar mərcçilər belə ilk mərcə başladıqları zaman kiçik məbləğlərdən başlayırlar.

Mostbet onlayn kazino

Mostbet AZ-90 müştəriləri üçün müxtəlif bonuslar və promosyonlar təklif edir. Bəli, Mostbet AZ-90 müştərilər üçün müəyyən məhdudiyyətlərə malikdir. Müştərilər hər hansı mərc etməzdən əvvəl şərtlərlə tanış olduqlarına əmin olmalıdırlar. Bəli, müştərilərin pulsuz yükləyə biləcəyi öz mobil proqramı var.

  • İnternetdə mövcud olan ən yaxşı Asiya handikap bazarlarından birini tapa bilərsiniz.
  • İstifadəçilərimizin əksəriyyəti hələ də bizimlə oynayır, saytın bütün sistemini və funksionallığını sevirlər.
  • Bu sadə addımları yerinə yetirməklə siz asanlıqla və tez bukmeker kontorunun və Mostbet onlayn kazinosunun tamhüquqlu üzvü ola bilərsiniz.
  • Bunlar provayderlər tərəfindən buraxılmış və artıq Mostbet kazino saytında yerləşdirilmiş ən yeni oyunlardır.
  • Xidmətin təhlükəsizliyi JAZ 9247 lisenziyası ilə təmin edilir.Sənəd Kyurakao Hökumətinin Oyun Fəaliyyətləri Komissiyası tərəfindən verilmişdir.

Mostbet AZ-90 müştərilərə seçim etmək üçün müxtəlif əmsallar və bazarlar təklif edir. Müştərilər hadisələrə mərc edərkən onluq, kəsr və ya Amerika əmsallarını seçə bilərlər. Şirkət həmçinin Handikaplar, Düzgün Hesab və Ümumi Məqsədlər də daxil olmaqla geniş çeşiddə bazarlar təqdim edir.

Lisenziya Və Əsasnamə Mostbet Az-90

Yüksək əmsalları, etibarlı pul çıxarma üsulları və idman tədbirlərinin geniş seçimi ilə Mostbet Azərbaycan digər bukmeker kontorlarını xeyli geridə qoyur. Yeni istifadəçilər Mostbet-in etibarlı olub-olmadığını soruşa bilərlər. Lisenziya mərclərin dəqiq hesablanması və uduşun çıxarılmasının ən dəqiq təminatıdır. Mostbet AZ 90 təklif etdiyi idman mərcləri ilə son zamanlar ən çox diqqət çəkən mərc saytları arasındadır. Bukmeker istifadəçilərinin rahatlığı üçün mobil versiya da təklif edir. Android və iOS cihazlarında Mostbet tətbiqini yükləyərək istənilən yerdə mərc qoya bilərsiniz.

  • Hesabı doldurduqdan sonra birbaşa təklif olunan xəttin öyrənilməsinə keçə bilərsiniz.
  • O, sürətli, təhlükəsiz və etibarlı mərc xidmətləri ilə tanınır.
  • Həmçinin canlı yayım funksiyası vasitəsilə meydançadakı oyunçuların fəaliyyətini izləyə də bilərsiniz.
  • Müştərilər hadisələrə mərc edərkən onluq, kəsr və ya Amerika əmsallarını seçə bilərlər.

Canlı çatın nümayəndələri hər zaman müştərilərin istənilən probleminin həllində kömək etməyə hazırdırlar. Bukmeker kontorunun rəsmi saytından istifadə asan və aydındır, habelə müştərilərə istədikləri oyunları asanlıqla tapmağa imkan verir. Bütün ödənişlər təhlükəsiz şəkildə işlənilir və bütün şəxsi məlumatlar ən son şifrələmə standartlarına uyğun olaraq saxlanılır. Sayt həmçinin saxtakarlıqları aşkar etmək və müştəriləri hər hansı potensial risklərdən qorumaq üçün qabaqcıl texnologiyalardan istifadə edir. Mostbet müxtəlif idman növlərinə, o cümlədən futbol, ​​basketbol, ​​tennis, xokkey və s.

Mostbet: Azərbaycan kazinosunun rəsmi saytı

Bəlkə də bonus üçün mərc etmə tələblərini yerinə yetirməmisiniz. Əgər bonusun şərtlərinə cavab vermirsinizsə, bonus məbləğiniz silinəcək, yalnız ilkin qoyduğunuz məbləğ qalacaq. Xeyr, ancaq tətbiqdə profilinizlə oynamaq üçün sizə veb-saytda yaradılmış hesab lazımdır. Buna görə də tətbiqi endirib veb-saytda əvvəlcədən yaratdığınız hesabın məlumatları ilə hesabınıza daxil olun. Bəli, əlbəttə, düzgün strategiya qurmaqla Mostbet slotları və digər qumar oyunlarında qazanan bir plan qura bilərsiniz. Nə qədər tez-tez oynasanız, qumarın mahiyyətinə o qədər tez vara biləcəksiniz.

  • Bundan əlavə, müştərilər tədbir başa çatmazdan əvvəl mənfəətlərini təmin etmək üçün nağd pul çıxarma seçimindən istifadə edə bilərlər.
  • Bu, onlara bütün mərc seçimlərinə və mövcud promosyonlara giriş imkanı verəcək!
  • Videonu izləmək üçün siz müsbət hesab balansı və ya həll olunmamış mərcləri olan qeydiyyatdan keçmiş Mostbet müştərisi olmalısınız.
  • Platforma istifadəçilərə müxtəlif mərc növlərini birləşdirərək öz mərclərini yaratmağa imkan verir.
  • Bu, müştərilərə real vaxt rejimində əmsalların dəyişməsindən faydalanmağa və mərcləri yerləşdirməyə imkan verir.
  • Komanda həmişə suallara cavab verməyə və lazım olduqda kömək etməyə hazırdır.

Bununla belə, Mostbet AZ-90 ödənişləri Azərbaycan manatı (AZN), həmçinin ABŞ dolları (USD) və avro (EUR) ilə qəbul edir. Hesabınızdan hər hansı pul çıxarmazdan əvvəl, hesabın yoxlanılması prosesini tamamlamalısınız. Bundan əlavə, seçilmiş pul çıxarma üsulundan asılı olaraq müəyyən mərc tələblərinə və ya digər şərtlərə cavab verməli ola bilərsiniz.

Mosbet az bonusları

Bu funksiya blackjack, rulet və baccarat kimi klassik stolüstü oyunlarda mövcuddur. Mostbet Aviator, Mostbet Azərbaycan onlayn kazinosunda oynaya biləcəyiniz pullu oyundur. Təyyarənin qəzaya uğramazdan əvvəl nə qədər yüksək uçacağına mərc etməli olduğunuz şans oyunudur. Təyyarə nə qədər yüksək uçsa, ödənişiniz bir o qədər yüksək olacaq.

  • Burada əsas məlumatlarla yanaşı, istifadəçi doğum tarixini, yaşayış ünvanını, poçt indeksini və digər məlumatları göstərir.
  • Bukmekerin ən populyar bonuslarından biri də doğum günü bonuslarıdır.
  • Mostbet daxil olmaqla istənilən idman növünə mərc edə bilərlər.
  • Hətta həvəskarlar arsında aşağı diviziolar və müsabiqələr belə var.
  • Bəli, müştərilər e-poçt, telefon və ya söhbət vasitəsilə müştəri xidməti komandası ilə asanlıqla əlaqə saxlaya bilərlər.

Mütləq bir dəfə oynayın, qazandıqda rulet oyunu ən parlaq hisləri insana yaşadan bir oyundur. Kart oyunları, əsas poker, blekcek və kart oyunlarının digər variantları müxtəlif rejimləri sınamaq istəyən kart oyunlarını sevənlər üçün çox maraqlı olacaq. Qumar oyunçususunuzsa və kart oyunlarını sevirsinizsə, oynamağa çalışın. Lotereya demək olar ki, hər zaman davam edən və ən sadə şəkildə keçirilən oyundur, burada sadəcə sizə bəxt lazımdır. Sonra isə barabanın fırlanıb rəqəmləri verməsini və qazanmağınızı gözləmək qalır.

✔ Mostbet nə ilə fərqlənir?

Rəsmi internet saytından və ya App Store vasitəsilə (iPhone üçün) Bu, dünyada ən aşağı qiymətlərdən biridir və bu platformada ən yüksək əmsalları göstərir Bəli, bütün yeni oyunçulara 550 AZN-ə qədər depozitlər üzrə pulsuz fırlanmalar və bonuslar verilir Bu, müasir kazinodur və ilk tanışlıqdan sizi qumar və əyləncə dünyasına qərq etməyə qadirdir.

  • Bundan əlavə, seçilmiş pul çıxarma üsulundan asılı olaraq müəyyən mərc tələblərinə və ya digər şərtlərə cavab verməli ola bilərsiniz.
  • Sonra qalan yalnız nəticəni kupona əlavə etmək və mərc ölçüsünü müəyyən etməkdir.
  • Mostbet slotları və digər qumar oyunlarını iOS və Android cihazları üçün əlçatan olan mobil tətbiq vasitəsilə də oynaya bilərsiniz.
  • Bu səbəbdən, mərc qoyarkən 11 manat artımla (22, 55, 110, 550 və s.) davam etmək lazımdır.

Mərcin səhv hesablanması, aşağı limitlər, hesabınıza daxil ola bilməmək və s. Qeydiyyat zamanı göstərdiyiniz metoddan asılı olaraq, e-poçt və ya telefon nömrəsini yazaraq 1 kliklə klubun saytına daxil ola bilərsiniz. Mostbet-in rəsmi saytında qeydiyyatdan keçərkən yalnız real istifadəçi məlumatlarını göstərməlisiniz. Qeydiyyatda daxil etdiyiniz məlumatlarla pasport arasında uyğunsuzluq olmamalıdır. Mostbet-in geniş tədbirlər kataloqundan seçim edib, kiçik məbləğdə mərc qoymaq tövsiyə olunur.

]]>
https://affypharma.com/azerbaycanda-etibarli-bukmeker-kontor/feed/ 0