| 1 |
<?php |
| 2 |
|
| 3 |
namespace FluentCart\App\Modules\PaymentMethods\StripeGateway\API; |
| 4 |
|
| 5 |
use FluentCart\App\Modules\PaymentMethods\StripeGateway\StripeSettingsBase; |
| 6 |
use FluentCart\Framework\Support\Arr; |
| 7 |
|
| 8 |
class API |
| 9 |
{ |
| 10 |
private $createSessionUrl; |
| 11 |
|
| 12 |
private $apiUrl = 'https://api.stripe.com/v1/'; |
| 13 |
|
| 14 |
public function makeRequest($path, $data = [], $apiKey = null, $method = 'GET') |
| 15 |
{ |
| 16 |
if (!$apiKey) { |
| 17 |
$apiKey = $this->getApiKey(); |
| 18 |
} |
| 19 |
|
| 20 |
return $this->remoteRequest($path, $data, $apiKey, $method); |
| 21 |
} |
| 22 |
|
| 23 |
public function getStripeObject($path, $data = [], $mode = 'current') |
| 24 |
{ |
| 25 |
$apiKey = (new StripeSettingsBase())->getApiKey($mode); |
| 26 |
|
| 27 |
return $this->remoteRequest($path, $data, $apiKey, 'GET'); |
| 28 |
} |
| 29 |
|
| 30 |
public function createStripeObject($path, $data = [], $mode = 'current', $headers = []) |
| 31 |
{ |
| 32 |
$apiKey = (new StripeSettingsBase())->getApiKey($mode); |
| 33 |
return $this->remoteRequest($path, $data, $apiKey, 'POST', $headers); |
| 34 |
} |
| 35 |
|
| 36 |
public function deleteStripeObject($path, $data = [], $mode = 'current') |
| 37 |
{ |
| 38 |
$apiKey = (new StripeSettingsBase())->getApiKey($mode); |
| 39 |
return $this->remoteRequest($path, $data, $apiKey, 'DELETE'); |
| 40 |
} |
| 41 |
|
| 42 |
public function remoteRequest($path, $data, $apiKey, $method, $extraHeaders = []) |
| 43 |
{ |
| 44 |
$stripeApiKey = $apiKey; |
| 45 |
|
| 46 |
// Never fire a request with an empty Authorization header — Stripe replies |
| 47 |
// with the cryptic "You did not provide an API key" error. This happens when |
| 48 |
// the secret key for the requested mode is not configured (e.g. a store in |
| 49 |
// test mode charging a live-mode order, or unconfigured keys). Fail early |
| 50 |
// with an actionable message instead. |
| 51 |
if (empty($stripeApiKey)) { |
| 52 |
return new \WP_Error( |
| 53 |
'stripe_missing_api_key', |
| 54 |
__('Stripe API key is not configured for this payment mode. Please add your Stripe keys in Payment Settings.', 'fluent-cart') |
| 55 |
); |
| 56 |
} |
| 57 |
|
| 58 |
$apiVersion = '2025-02-24.acacia'; |
| 59 |
$sessionHeaders = array( |
| 60 |
'Authorization' => 'Bearer ' . $stripeApiKey, |
| 61 |
'Content-Type' => 'application/x-www-form-urlencoded', |
| 62 |
'Stripe-Version' => $apiVersion |
| 63 |
); |
| 64 |
|
| 65 |
// Per-request headers (e.g. Idempotency-Key for off-session renewal charges) |
| 66 |
if ($extraHeaders && is_array($extraHeaders)) { |
| 67 |
$sessionHeaders = array_merge($sessionHeaders, $extraHeaders); |
| 68 |
} |
| 69 |
|
| 70 |
$url = $this->apiUrl . $path; |
| 71 |
|
| 72 |
if ($method === 'GET' && is_array($data) && !empty($data)) { |
| 73 |
$url .= '?' . http_build_query($data); |
| 74 |
$requestData = array( |
| 75 |
'headers' => $sessionHeaders, |
| 76 |
'method' => $method, |
| 77 |
); |
| 78 |
} else { |
| 79 |
$requestData = array( |
| 80 |
'headers' => $sessionHeaders, |
| 81 |
'body' => is_array($data) ? http_build_query($data) : $data, |
| 82 |
'method' => $method, |
| 83 |
); |
| 84 |
} |
| 85 |
|
| 86 |
$sessionResponse = wp_remote_request($url, $requestData); |
| 87 |
|
| 88 |
if (is_wp_error($sessionResponse)) { |
| 89 |
return $sessionResponse; |
| 90 |
} |
| 91 |
|
| 92 |
$sessionResponseData = wp_remote_retrieve_body($sessionResponse); |
| 93 |
$responseBodyArray = json_decode($sessionResponseData, true); |
| 94 |
|
| 95 |
$statusCode = wp_remote_retrieve_response_code($sessionResponse); |
| 96 |
|
| 97 |
if ($statusCode >= 300) { |
| 98 |
|
| 99 |
$message = Arr::get($responseBodyArray, 'detail'); |
| 100 |
if (!$message) { |
| 101 |
$message = Arr::get($responseBodyArray, 'error.message'); |
| 102 |
} |
| 103 |
if (!$message) { |
| 104 |
$message = __('Unknown Stripe API request error', 'fluent-cart'); |
| 105 |
} |
| 106 |
|
| 107 |
return new \WP_Error('api_error', $message, $responseBodyArray); |
| 108 |
} |
| 109 |
|
| 110 |
return $responseBodyArray; |
| 111 |
} |
| 112 |
|
| 113 |
public function verifyIPN() |
| 114 |
{ |
| 115 |
$rawPayload = @file_get_contents('php://input'); |
| 116 |
|
| 117 |
$data = $rawPayload ? json_decode($rawPayload) : null; |
| 118 |
|
| 119 |
if (empty($data) && !empty($_POST)) { |
| 120 |
$postArray = stripslashes_deep($_POST); |
| 121 |
$data = json_decode(wp_json_encode($postArray)); |
| 122 |
} |
| 123 |
|
| 124 |
if (!$data || empty($data->id)) { |
| 125 |
return new \WP_Error('invalid_data', __('Invalid or empty payload received from Stripe', 'fluent-cart')); |
| 126 |
} |
| 127 |
|
| 128 |
return $data; |
| 129 |
} |
| 130 |
|
| 131 |
public function getEvent($eventId) |
| 132 |
{ |
| 133 |
$api = $this->getApi(); |
| 134 |
return $api::request([], 'events/' . $eventId, 'GET'); |
| 135 |
} |
| 136 |
|
| 137 |
public function getApi() |
| 138 |
{ |
| 139 |
$api = new ApiRequest(); |
| 140 |
$api::set_secret_key((new StripeSettingsBase())->getApiKey()); |
| 141 |
return $api; |
| 142 |
} |
| 143 |
|
| 144 |
public function getApiKey($mode = 'current') |
| 145 |
{ |
| 146 |
return (new StripeSettingsBase())->getApiKey($mode); |
| 147 |
} |
| 148 |
|
| 149 |
public function addWebhookEndpoint() |
| 150 |
{ |
| 151 |
// get all the webhook endpoints first |
| 152 |
|
| 153 |
} |
| 154 |
|
| 155 |
public function getWebhookEndpoints() |
| 156 |
{ |
| 157 |
return $this->getStripeObject('webhooks'); |
| 158 |
} |
| 159 |
|
| 160 |
public function getActivatedPaymentMethodsConfigs($mode = 'live') |
| 161 |
{ |
| 162 |
$apiKey = (new StripeSettingsBase())->getApiKey($mode); |
| 163 |
|
| 164 |
if (!$apiKey) { |
| 165 |
return []; |
| 166 |
} |
| 167 |
|
| 168 |
$clientId = 'ca_TDs9okG0Jy8gY5GWbwmsDWHmIpOlyIoc'; |
| 169 |
if ($mode == 'test') { |
| 170 |
$clientId = 'ca_TDs9NGCHtEcklwK4EFKHe72TAxC2kQap'; |
| 171 |
} |
| 172 |
|
| 173 |
$stripeGateways = (new \FluentCart\App\Modules\PaymentMethods\StripeGateway\API\API)->makeRequest('payment_method_configurations', [ |
| 174 |
'application' => $clientId, |
| 175 |
], $apiKey); |
| 176 |
|
| 177 |
if (is_wp_error($stripeGateways) || empty($stripeGateways['data'])) { |
| 178 |
return []; |
| 179 |
} |
| 180 |
|
| 181 |
$gateway = Arr::first($stripeGateways['data']); |
| 182 |
|
| 183 |
$stripeGateways = [ |
| 184 |
'acss_debit' => 'ACSS Debit', |
| 185 |
'affirm' => 'Affirm', |
| 186 |
'afterpay_clearpay' => 'Afterpay / Clearpay', |
| 187 |
'alipay' => 'Alipay', |
| 188 |
'amazon_pay' => 'Amazon Pay', |
| 189 |
'apple_pay' => 'Apple Pay', |
| 190 |
'bacs_debit' => 'BACS Debit', |
| 191 |
'bancontact' => 'Bancontact', |
| 192 |
'blik' => 'BLIK', |
| 193 |
'card' => 'Credit/Debit Card', |
| 194 |
'cartes_bancaires' => 'Cartes Bancaires', |
| 195 |
'cashapp' => 'Cash App', |
| 196 |
'crypto' => 'Cryptocurrency', |
| 197 |
'eps' => 'EPS', |
| 198 |
'giropay' => 'Giropay', |
| 199 |
'google_pay' => 'Google Pay', |
| 200 |
'ideal' => 'iDEAL', |
| 201 |
'kakao_pay' => 'Kakao Pay', |
| 202 |
'klarna' => 'Klarna', |
| 203 |
'kr_card' => 'Korea Card', |
| 204 |
'link' => 'Link', |
| 205 |
'mb_way' => 'MB Way', |
| 206 |
'multibanco' => 'Multibanco', |
| 207 |
'naver_pay' => 'Naver Pay', |
| 208 |
'p24' => 'Przelewy24', |
| 209 |
'payco' => 'Payco', |
| 210 |
'pix' => 'Pix', |
| 211 |
'samsung_pay' => 'Samsung Pay', |
| 212 |
'sepa_debit' => 'SEPA Debit', |
| 213 |
'sofort' => 'Sofort', |
| 214 |
'us_bank_account' => 'US Bank Account', |
| 215 |
'wechat_pay' => 'WeChat Pay', |
| 216 |
'zip' => 'Zip' |
| 217 |
]; |
| 218 |
|
| 219 |
$allMethods = Arr::only($gateway, array_keys($stripeGateways)); |
| 220 |
|
| 221 |
$activatedMethods = array_filter($allMethods, function ($method) { |
| 222 |
return !!Arr::get($method, 'available'); |
| 223 |
}); |
| 224 |
|
| 225 |
$stripeGateways = Arr::only($stripeGateways, array_keys($activatedMethods)); |
| 226 |
$settings = (new StripeSettingsBase())->settings; |
| 227 |
$accountId = Arr::get($settings, $mode . '_account_id'); |
| 228 |
|
| 229 |
$liveMode = !!Arr::get($gateway, 'livemode'); |
| 230 |
|
| 231 |
return [ |
| 232 |
'id' => Arr::get($gateway, 'id'), |
| 233 |
'activated_methods' => $stripeGateways, |
| 234 |
'configure_url' => 'https://dashboard.stripe.com/' . $accountId . (!$liveMode ? '/test/' : '/') . 'settings/payment_methods/' . Arr::get($gateway, 'id'), |
| 235 |
]; |
| 236 |
} |
| 237 |
|
| 238 |
} |
| 239 |
|