| Current Path : /home/x/b/o/xbodynamge/namtation/wp-content/ |
| Current File : /home/x/b/o/xbodynamge/namtation/wp-content/class-request.php.tar |
xbodynamge/dev/wp-content/plugins/themeisle-companion/obfx_modules/image-cdn/inc/class-request.php 0000644 00000005123 15113722206 0030436 0 ustar 00 home <?php
namespace OrbitFox;
/**
* A class for building an Authorization header for http requests.
*
* @package \OrbitFox\Image_CDN_Replacer
* @author Themeisle <friends@themeisle.com>
*/
class Request {
/**
* The API key.
*
* @var null
*/
protected $api_key = null;
/**
* The api url where we are trying to connect.
*
* @var null
*/
protected $api_url = null;
/**
* Defines which header brings the authorization key.
*
* @var string
*/
protected $auth_header = 'Authorization';
/**
* A list of extra params in the current request.
*
* @var array
*/
protected $extra_params = array();
/**
* The HTTP method.
*
* @var null|string
*/
protected $method = null;
/**
* Request constructor.
*
* @param string $url The request url.
* @param string $method The request method type.
* @param string $api_key The client key.
* @param array $extra_params Any extra param to be signed.
*/
public function __construct( $url, $method = 'GET', $api_key = '', $extra_params = array() ) {
// The url for our custom endpoint, which returns network settings.
$this->url = esc_url( $url );
// All we really care about here is GET requests.
$this->method = $method;
if ( ! empty( $api_key ) ) {
$this->api_key = $api_key;
return;
}
$connect_data = get_option( 'obfx_connect_data' );
if ( isset( $connect_data['api_key'] ) ) {
$this->api_key = $connect_data['api_key'];
}
}
/**
* Make an oauth'd http request.
*
* @return string|object The result of an oauth'd http request.
*/
public function get_response() {
// Grab the url to which we'll be making the request.
$url = $this->url;
// If there is a extra, add that as a url var.
if ( 'GET' === $this->method && ! empty( $this->extra_params ) ) {
foreach ( $this->extra_params as $key => $val ) {
$url = add_query_arg( array( $key => $val ), $url );
}
}
// Args for wp_remote_*().
$args = array(
'method' => $this->method,
'timeout' => 45,
'httpversion' => '1.0',
'body' => $this->extra_params,
'sslverify' => false,
'headers' => array(
$this->auth_header => 'Bearer ' . $this->api_key,
),
);
$response = wp_remote_request( $url, $args );
if ( is_wp_error( $response ) ) {
return false;
}
$response = wp_remote_retrieve_body( $response );
if ( empty( $response ) ) {
return false;
}
$response = json_decode( $response, true );
if ( ! $response['code'] ) {
return false;
}
if ( intval( $response['code'] ) !== 200 ) {
return false;
}
return $response['data'];
}
}
lebauwcentre/wp-content/plugins/themeisle-companion/obfx_modules/image-cdn/inc/class-request.php 0000644 00000005123 15114076757 0032356 0 ustar 00 home/xbodynamge <?php
namespace OrbitFox;
/**
* A class for building an Authorization header for http requests.
*
* @package \OrbitFox\Image_CDN_Replacer
* @author Themeisle <friends@themeisle.com>
*/
class Request {
/**
* The API key.
*
* @var null
*/
protected $api_key = null;
/**
* The api url where we are trying to connect.
*
* @var null
*/
protected $api_url = null;
/**
* Defines which header brings the authorization key.
*
* @var string
*/
protected $auth_header = 'Authorization';
/**
* A list of extra params in the current request.
*
* @var array
*/
protected $extra_params = array();
/**
* The HTTP method.
*
* @var null|string
*/
protected $method = null;
/**
* Request constructor.
*
* @param string $url The request url.
* @param string $method The request method type.
* @param string $api_key The client key.
* @param array $extra_params Any extra param to be signed.
*/
public function __construct( $url, $method = 'GET', $api_key = '', $extra_params = array() ) {
// The url for our custom endpoint, which returns network settings.
$this->url = esc_url( $url );
// All we really care about here is GET requests.
$this->method = $method;
if ( ! empty( $api_key ) ) {
$this->api_key = $api_key;
return;
}
$connect_data = get_option( 'obfx_connect_data' );
if ( isset( $connect_data['api_key'] ) ) {
$this->api_key = $connect_data['api_key'];
}
}
/**
* Make an oauth'd http request.
*
* @return string|object The result of an oauth'd http request.
*/
public function get_response() {
// Grab the url to which we'll be making the request.
$url = $this->url;
// If there is a extra, add that as a url var.
if ( 'GET' === $this->method && ! empty( $this->extra_params ) ) {
foreach ( $this->extra_params as $key => $val ) {
$url = add_query_arg( array( $key => $val ), $url );
}
}
// Args for wp_remote_*().
$args = array(
'method' => $this->method,
'timeout' => 45,
'httpversion' => '1.0',
'body' => $this->extra_params,
'sslverify' => false,
'headers' => array(
$this->auth_header => 'Bearer ' . $this->api_key,
),
);
$response = wp_remote_request( $url, $args );
if ( is_wp_error( $response ) ) {
return false;
}
$response = wp_remote_retrieve_body( $response );
if ( empty( $response ) ) {
return false;
}
$response = json_decode( $response, true );
if ( ! $response['code'] ) {
return false;
}
if ( intval( $response['code'] ) !== 200 ) {
return false;
}
return $response['data'];
}
}
crosstraining/wp-content/plugins/themeisle-companion/obfx_modules/image-cdn/inc/class-request.php 0000604 00000005123 15114250640 0032540 0 ustar 00 home/xbodynamge <?php
namespace OrbitFox;
/**
* A class for building an Authorization header for http requests.
*
* @package \OrbitFox\Image_CDN_Replacer
* @author Themeisle <friends@themeisle.com>
*/
class Request {
/**
* The API key.
*
* @var null
*/
protected $api_key = null;
/**
* The api url where we are trying to connect.
*
* @var null
*/
protected $api_url = null;
/**
* Defines which header brings the authorization key.
*
* @var string
*/
protected $auth_header = 'Authorization';
/**
* A list of extra params in the current request.
*
* @var array
*/
protected $extra_params = array();
/**
* The HTTP method.
*
* @var null|string
*/
protected $method = null;
/**
* Request constructor.
*
* @param string $url The request url.
* @param string $method The request method type.
* @param string $api_key The client key.
* @param array $extra_params Any extra param to be signed.
*/
public function __construct( $url, $method = 'GET', $api_key = '', $extra_params = array() ) {
// The url for our custom endpoint, which returns network settings.
$this->url = esc_url( $url );
// All we really care about here is GET requests.
$this->method = $method;
if ( ! empty( $api_key ) ) {
$this->api_key = $api_key;
return;
}
$connect_data = get_option( 'obfx_connect_data' );
if ( isset( $connect_data['api_key'] ) ) {
$this->api_key = $connect_data['api_key'];
}
}
/**
* Make an oauth'd http request.
*
* @return string|object The result of an oauth'd http request.
*/
public function get_response() {
// Grab the url to which we'll be making the request.
$url = $this->url;
// If there is a extra, add that as a url var.
if ( 'GET' === $this->method && ! empty( $this->extra_params ) ) {
foreach ( $this->extra_params as $key => $val ) {
$url = add_query_arg( array( $key => $val ), $url );
}
}
// Args for wp_remote_*().
$args = array(
'method' => $this->method,
'timeout' => 45,
'httpversion' => '1.0',
'body' => $this->extra_params,
'sslverify' => false,
'headers' => array(
$this->auth_header => 'Bearer ' . $this->api_key,
),
);
$response = wp_remote_request( $url, $args );
if ( is_wp_error( $response ) ) {
return false;
}
$response = wp_remote_retrieve_body( $response );
if ( empty( $response ) ) {
return false;
}
$response = json_decode( $response, true );
if ( ! $response['code'] ) {
return false;
}
if ( intval( $response['code'] ) !== 200 ) {
return false;
}
return $response['data'];
}
}