ApiOperations
6 years ago
Checkout
6 years ago
Error
6 years ago
HttpClient
6 years ago
Issuing
6 years ago
Radar
6 years ago
Reporting
6 years ago
Sigma
6 years ago
Terminal
6 years ago
Util
6 years ago
Account.php
6 years ago
AccountLink.php
6 years ago
AlipayAccount.php
6 years ago
ApiRequestor.php
6 years ago
ApiResource.php
6 years ago
ApiResponse.php
6 years ago
ApplePayDomain.php
6 years ago
ApplicationFee.php
6 years ago
ApplicationFeeRefund.php
6 years ago
Balance.php
6 years ago
BalanceTransaction.php
6 years ago
BankAccount.php
6 years ago
BitcoinReceiver.php
6 years ago
BitcoinTransaction.php
6 years ago
Capability.php
6 years ago
Card.php
6 years ago
Charge.php
6 years ago
Collection.php
6 years ago
CountrySpec.php
6 years ago
Coupon.php
6 years ago
CreditNote.php
6 years ago
Customer.php
6 years ago
CustomerBalanceTransaction.php
6 years ago
Discount.php
6 years ago
Dispute.php
6 years ago
EphemeralKey.php
6 years ago
Event.php
6 years ago
ExchangeRate.php
6 years ago
File.php
6 years ago
FileLink.php
6 years ago
FileUpload.php
6 years ago
Invoice.php
6 years ago
InvoiceItem.php
6 years ago
InvoiceLineItem.php
6 years ago
IssuerFraudRecord.php
6 years ago
LoginLink.php
6 years ago
OAuth.php
6 years ago
Order.php
6 years ago
OrderItem.php
6 years ago
OrderReturn.php
6 years ago
PaymentIntent.php
6 years ago
PaymentMethod.php
6 years ago
Payout.php
6 years ago
Person.php
6 years ago
Plan.php
6 years ago
Product.php
6 years ago
Recipient.php
6 years ago
RecipientTransfer.php
6 years ago
Refund.php
6 years ago
RequestTelemetry.php
6 years ago
Review.php
6 years ago
SKU.php
6 years ago
SetupIntent.php
6 years ago
SingletonApiResource.php
6 years ago
Source.php
6 years ago
SourceTransaction.php
6 years ago
Stripe.php
6 years ago
StripeObject.php
6 years ago
Subscription.php
6 years ago
SubscriptionItem.php
6 years ago
SubscriptionSchedule.php
6 years ago
TaxId.php
6 years ago
TaxRate.php
6 years ago
ThreeDSecure.php
6 years ago
Token.php
6 years ago
Topup.php
6 years ago
Transfer.php
6 years ago
TransferReversal.php
6 years ago
UsageRecord.php
6 years ago
UsageRecordSummary.php
6 years ago
Webhook.php
6 years ago
WebhookEndpoint.php
6 years ago
WebhookSignature.php
6 years ago
Stripe.php
266 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Stripe; |
| 4 | |
| 5 | /** |
| 6 | * Class Stripe |
| 7 | * |
| 8 | * @package Stripe |
| 9 | */ |
| 10 | class Stripe |
| 11 | { |
| 12 | // @var string The Stripe API key to be used for requests. |
| 13 | public static $apiKey; |
| 14 | |
| 15 | // @var string The Stripe client_id to be used for Connect requests. |
| 16 | public static $clientId; |
| 17 | |
| 18 | // @var string The base URL for the Stripe API. |
| 19 | public static $apiBase = 'https://api.stripe.com'; |
| 20 | |
| 21 | // @var string The base URL for the OAuth API. |
| 22 | public static $connectBase = 'https://connect.stripe.com'; |
| 23 | |
| 24 | // @var string The base URL for the Stripe API uploads endpoint. |
| 25 | public static $apiUploadBase = 'https://files.stripe.com'; |
| 26 | |
| 27 | // @var string|null The version of the Stripe API to use for requests. |
| 28 | public static $apiVersion = null; |
| 29 | |
| 30 | // @var string|null The account ID for connected accounts requests. |
| 31 | public static $accountId = null; |
| 32 | |
| 33 | // @var string Path to the CA bundle used to verify SSL certificates |
| 34 | public static $caBundlePath = null; |
| 35 | |
| 36 | // @var boolean Defaults to true. |
| 37 | public static $verifySslCerts = true; |
| 38 | |
| 39 | // @var array The application's information (name, version, URL) |
| 40 | public static $appInfo = null; |
| 41 | |
| 42 | // @var Util\LoggerInterface|null The logger to which the library will |
| 43 | // produce messages. |
| 44 | public static $logger = null; |
| 45 | |
| 46 | // @var int Maximum number of request retries |
| 47 | public static $maxNetworkRetries = 0; |
| 48 | |
| 49 | // @var boolean Whether client telemetry is enabled. Defaults to true. |
| 50 | public static $enableTelemetry = true; |
| 51 | |
| 52 | // @var float Maximum delay between retries, in seconds |
| 53 | private static $maxNetworkRetryDelay = 2.0; |
| 54 | |
| 55 | // @var float Initial delay between retries, in seconds |
| 56 | private static $initialNetworkRetryDelay = 0.5; |
| 57 | |
| 58 | const VERSION = '6.43.1'; |
| 59 | |
| 60 | /** |
| 61 | * @return string The API key used for requests. |
| 62 | */ |
| 63 | public static function getApiKey() |
| 64 | { |
| 65 | return self::$apiKey; |
| 66 | } |
| 67 | |
| 68 | /** |
| 69 | * @return string The client_id used for Connect requests. |
| 70 | */ |
| 71 | public static function getClientId() |
| 72 | { |
| 73 | return self::$clientId; |
| 74 | } |
| 75 | |
| 76 | /** |
| 77 | * @return Util\LoggerInterface The logger to which the library will |
| 78 | * produce messages. |
| 79 | */ |
| 80 | public static function getLogger() |
| 81 | { |
| 82 | if (self::$logger == null) { |
| 83 | return new Util\DefaultLogger(); |
| 84 | } |
| 85 | return self::$logger; |
| 86 | } |
| 87 | |
| 88 | /** |
| 89 | * @param Util\LoggerInterface $logger The logger to which the library |
| 90 | * will produce messages. |
| 91 | */ |
| 92 | public static function setLogger($logger) |
| 93 | { |
| 94 | self::$logger = $logger; |
| 95 | } |
| 96 | |
| 97 | /** |
| 98 | * Sets the API key to be used for requests. |
| 99 | * |
| 100 | * @param string $apiKey |
| 101 | */ |
| 102 | public static function setApiKey($apiKey) |
| 103 | { |
| 104 | self::$apiKey = $apiKey; |
| 105 | } |
| 106 | |
| 107 | /** |
| 108 | * Sets the client_id to be used for Connect requests. |
| 109 | * |
| 110 | * @param string $clientId |
| 111 | */ |
| 112 | public static function setClientId($clientId) |
| 113 | { |
| 114 | self::$clientId = $clientId; |
| 115 | } |
| 116 | |
| 117 | /** |
| 118 | * @return string The API version used for requests. null if we're using the |
| 119 | * latest version. |
| 120 | */ |
| 121 | public static function getApiVersion() |
| 122 | { |
| 123 | return self::$apiVersion; |
| 124 | } |
| 125 | |
| 126 | /** |
| 127 | * @param string $apiVersion The API version to use for requests. |
| 128 | */ |
| 129 | public static function setApiVersion($apiVersion) |
| 130 | { |
| 131 | self::$apiVersion = $apiVersion; |
| 132 | } |
| 133 | |
| 134 | /** |
| 135 | * @return string |
| 136 | */ |
| 137 | private static function getDefaultCABundlePath() |
| 138 | { |
| 139 | return realpath(dirname(__FILE__) . '/../data/ca-certificates.crt'); |
| 140 | } |
| 141 | |
| 142 | /** |
| 143 | * @return string |
| 144 | */ |
| 145 | public static function getCABundlePath() |
| 146 | { |
| 147 | return self::$caBundlePath ?: self::getDefaultCABundlePath(); |
| 148 | } |
| 149 | |
| 150 | /** |
| 151 | * @param string $caBundlePath |
| 152 | */ |
| 153 | public static function setCABundlePath($caBundlePath) |
| 154 | { |
| 155 | self::$caBundlePath = $caBundlePath; |
| 156 | } |
| 157 | |
| 158 | /** |
| 159 | * @return boolean |
| 160 | */ |
| 161 | public static function getVerifySslCerts() |
| 162 | { |
| 163 | return self::$verifySslCerts; |
| 164 | } |
| 165 | |
| 166 | /** |
| 167 | * @param boolean $verify |
| 168 | */ |
| 169 | public static function setVerifySslCerts($verify) |
| 170 | { |
| 171 | self::$verifySslCerts = $verify; |
| 172 | } |
| 173 | |
| 174 | /** |
| 175 | * @return string | null The Stripe account ID for connected account |
| 176 | * requests. |
| 177 | */ |
| 178 | public static function getAccountId() |
| 179 | { |
| 180 | return self::$accountId; |
| 181 | } |
| 182 | |
| 183 | /** |
| 184 | * @param string $accountId The Stripe account ID to set for connected |
| 185 | * account requests. |
| 186 | */ |
| 187 | public static function setAccountId($accountId) |
| 188 | { |
| 189 | self::$accountId = $accountId; |
| 190 | } |
| 191 | |
| 192 | /** |
| 193 | * @return array | null The application's information |
| 194 | */ |
| 195 | public static function getAppInfo() |
| 196 | { |
| 197 | return self::$appInfo; |
| 198 | } |
| 199 | |
| 200 | /** |
| 201 | * @param string $appName The application's name |
| 202 | * @param string $appVersion The application's version |
| 203 | * @param string $appUrl The application's URL |
| 204 | */ |
| 205 | public static function setAppInfo($appName, $appVersion = null, $appUrl = null, $appPartnerId = null) |
| 206 | { |
| 207 | self::$appInfo = self::$appInfo ?: []; |
| 208 | self::$appInfo['name'] = $appName; |
| 209 | self::$appInfo['partner_id'] = $appPartnerId; |
| 210 | self::$appInfo['url'] = $appUrl; |
| 211 | self::$appInfo['version'] = $appVersion; |
| 212 | } |
| 213 | |
| 214 | /** |
| 215 | * @return int Maximum number of request retries |
| 216 | */ |
| 217 | public static function getMaxNetworkRetries() |
| 218 | { |
| 219 | return self::$maxNetworkRetries; |
| 220 | } |
| 221 | |
| 222 | /** |
| 223 | * @param int $maxNetworkRetries Maximum number of request retries |
| 224 | */ |
| 225 | public static function setMaxNetworkRetries($maxNetworkRetries) |
| 226 | { |
| 227 | self::$maxNetworkRetries = $maxNetworkRetries; |
| 228 | } |
| 229 | |
| 230 | /** |
| 231 | * @return float Maximum delay between retries, in seconds |
| 232 | */ |
| 233 | public static function getMaxNetworkRetryDelay() |
| 234 | { |
| 235 | return self::$maxNetworkRetryDelay; |
| 236 | } |
| 237 | |
| 238 | /** |
| 239 | * @return float Initial delay between retries, in seconds |
| 240 | */ |
| 241 | public static function getInitialNetworkRetryDelay() |
| 242 | { |
| 243 | return self::$initialNetworkRetryDelay; |
| 244 | } |
| 245 | |
| 246 | /** |
| 247 | * @return bool Whether client telemetry is enabled |
| 248 | */ |
| 249 | public static function getEnableTelemetry() |
| 250 | { |
| 251 | return self::$enableTelemetry; |
| 252 | } |
| 253 | |
| 254 | /** |
| 255 | * @param bool $enableTelemetry Enables client telemetry. |
| 256 | * |
| 257 | * Client telemetry enables timing and request metrics to be sent back to Stripe as an HTTP Header |
| 258 | * with the current request. This enables Stripe to do latency and metrics analysis without adding extra |
| 259 | * overhead (such as extra network calls) on the client. |
| 260 | */ |
| 261 | public static function setEnableTelemetry($enableTelemetry) |
| 262 | { |
| 263 | self::$enableTelemetry = $enableTelemetry; |
| 264 | } |
| 265 | } |
| 266 |