2026-03-27 15:53:29 +00:00

197 lines
4.5 KiB
PHP

<?php
class ASP_Stripe_API {
protected static $instance;
protected $api_key;
protected $api_url = 'https://api.stripe.com/v1/';
protected $last_error = array();
//Since 2.0.44t2
protected $throw_exception = false;
//If true, throws PHP exception when error occurs
protected $app_info = array(
'name' => 'Stripe Payments',
'partner_id' => 'pp_partner_Fvas9OJ0jQ2oNQ',
'url' => 'https://wordpress.org/plugins/stripe-payments/',
'version' => WP_ASP_PLUGIN_VERSION,
);
public static function get_instance() {
if ( null === self::$instance ) {
self::$instance = new self();
}
return self::$instance;
}
public function set_api_key( $key ) {
$this->api_key = $key;
}
public function set_param( $param, $value ) {
$this->$param = $value;
}
private function encode_params( $d ) {
if ( true === $d ) {
return 'true';
}
if ( false === $d ) {
return 'false';
}
if ( is_array( $d ) ) {
$res = array();
foreach ( $d as $k => $v ) {
$res[ $k ] = $this->encode_params( $v );
}
return $res;
}
return $d;
}
private function before_request() {
$this->last_error = array();
}
private function get_headers() {
$ua_string = 'Stripe/v1 PhpBindings/0.0.0';
$ua_string .= ' ' . $this->format_app_info( $this->app_info );
$lang_version = PHP_VERSION;
$uname_disabled = in_array( 'php_uname', explode( ',', ini_get( 'disable_functions' ) ), true );
$uname = $uname_disabled ? '(disabled)' : php_uname();
$ua = array(
'bindings_version' => '0.0.0',
'lang' => 'php',
'lang_version' => $lang_version,
'publisher' => 'stripe',
'uname' => $uname,
'application' => $this->app_info,
);
$headers = array(
'X-Stripe-Client-User-Agent' => json_encode( $ua ),
'User-Agent' => $ua_string,
'Authorization' => 'Basic ' . base64_encode( $this->api_key . ':' ),
'Stripe-Version' => ASPMain::$stripe_api_ver,
);
return $headers;
}
private function process_result( $res ) {
if ( is_wp_error( $res ) ) {
$this->last_error['message'] = $res->get_error_message();
$this->last_error['error_code'] = $res->get_error_code();
if ( $this->throw_exception ) {
throw new \Exception( $res->get_error_message(), $res->get_error_code() );
}
return false;
}
if ( 200 !== $res['response']['code'] ) {
if ( ! empty( $res['body'] ) ) {
$body = json_decode( $res['body'], true );
if ( isset( $body['error'] ) ) {
$this->last_error = $body['error'];
$this->last_error['http_code'] = $res['response']['code'];
if ( $this->throw_exception ) {
throw new \Exception( $body['error']['message'], $res['response']['code'] );
}
}
}
return false;
}
$return = json_decode( $res['body'] );
return $return;
}
/**
* Make GET API request
*
* @param string $endpoint
* Endpoint to make request to. Example: 'customers/'
* @param array $params
* Parameters to send. Was ignored before 2.0.44
* @return mixed
* `object` on success, `false` on error
*/
public function get( $endpoint, $params = array() ) {
$this->before_request();
$headers = $this->get_headers();
$res = wp_remote_get(
$this->api_url . $endpoint,
array(
'headers' => $headers,
'body' => $this->encode_params( $params ),
)
);
$return = $this->process_result( $res );
return $return;
}
/**
* Make POST API request
*
* @param string $endpoint
* Endpoint to make request to. Example: 'customers/'
* @param array $params
* Parameters to send
* @param string $method
* Since 2.0.51
* Request method. Default is 'POST'
* @return mixed
* `object` on success, `false` on error
*/
public function post( $endpoint, $params = array(), $method = 'POST' ) {
$this->before_request();
$headers = $this->get_headers();
$res = wp_remote_get(
$this->api_url . $endpoint,
array(
'method' => $method,
'headers' => $headers,
'body' => $this->encode_params( $params ),
)
);
$return = $this->process_result( $res );
return $return;
}
public function get_last_error() {
return $this->last_error;
}
private function format_app_info( $app_info ) {
if ( null !== $app_info ) {
$string = $app_info['name'];
if ( null !== $app_info['version'] ) {
$string .= '/' . $app_info['version'];
}
if ( null !== $app_info['url'] ) {
$string .= ' (' . $app_info['url'] . ')';
}
return $string;
}
return null;
}
}