Files
WPS3Media/classes/pro/as3cf-async-request.php

141 lines
2.6 KiB
PHP
Raw Permalink Normal View History

<?php
abstract class AS3CF_Async_Request {
/**
* @var string
*/
protected $prefix = 'as3cf';
/**
* @var string
*/
protected $action = 'async_request';
/**
* @var string
*/
protected $identifier;
/**
* @var Amazon_S3_And_CloudFront_Pro
*/
protected $as3cf;
/**
* @var array
*/
protected $data = array();
/**
* Initiate new async request
*
* @param Amazon_S3_And_CloudFront $as3cf Instance of calling class
*/
public function __construct( $as3cf ) {
$this->as3cf = $as3cf;
$this->identifier = $this->prefix . '_' . $this->action;
add_action( 'wp_ajax_' . $this->identifier, array( $this, 'maybe_handle' ) );
add_action( 'wp_ajax_nopriv_' . $this->identifier, array( $this, 'maybe_handle' ) );
}
/**
* Set data used during the request
*
* @param array $data
*
* @return $this
*/
public function data( $data ) {
$this->data = $data;
return $this;
}
/**
* Dispatch the async request
*
* @return array|WP_Error
*/
public function dispatch() {
$url = add_query_arg( $this->get_query_args(), $this->get_query_url() );
$args = $this->get_post_args();
return wp_remote_post( esc_url_raw( $url ), $args );
}
/**
* Get query args
*
* @return array
*/
protected function get_query_args() {
if ( property_exists( $this, 'query_args' ) ) {
return $this->query_args;
}
return array(
'action' => $this->identifier,
'nonce' => wp_create_nonce( $this->identifier ),
);
}
/**
* Get query URL
*
* @return string
*/
protected function get_query_url() {
if ( property_exists( $this, 'query_url' ) ) {
return $this->query_url;
}
return admin_url( 'admin-ajax.php' );
}
/**
* Get post args
*
* @return array
*/
protected function get_post_args() {
if ( property_exists( $this, 'post_args' ) ) {
return $this->post_args;
}
return array(
'timeout' => 0.01,
'blocking' => false,
'cookies' => $_COOKIE, // Passing cookies ensures request is performed as initiating user
'body' => $this->data,
'sslverify' => apply_filters( 'https_local_ssl_verify', false ), // Local requests, fine to pass false
);
}
/**
* Maybe handle
*
* Check for correct nonce and pass to handler.
*/
public function maybe_handle() {
// Don't lock up other requests while processing
session_write_close();
check_ajax_referer( $this->identifier, 'nonce' );
$this->handle();
wp_die();
}
/**
* Handle
*
* Override this method to perform any actions required
* during the async request.
*/
abstract protected function handle();
}