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
OAuth.php
94 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Stripe; |
| 4 | |
| 5 | abstract class OAuth |
| 6 | { |
| 7 | /** |
| 8 | * Generates a URL to Stripe's OAuth form. |
| 9 | * |
| 10 | * @param array|null $params |
| 11 | * @param array|null $opts |
| 12 | * |
| 13 | * @return string The URL to Stripe's OAuth form. |
| 14 | */ |
| 15 | public static function authorizeUrl($params = null, $opts = null) |
| 16 | { |
| 17 | $params = $params ?: []; |
| 18 | |
| 19 | $base = ($opts && array_key_exists('connect_base', $opts)) ? $opts['connect_base'] : Stripe::$connectBase; |
| 20 | |
| 21 | $params['client_id'] = self::_getClientId($params); |
| 22 | if (!array_key_exists('response_type', $params)) { |
| 23 | $params['response_type'] = 'code'; |
| 24 | } |
| 25 | $query = Util\Util::encodeParameters($params); |
| 26 | |
| 27 | return $base . '/oauth/authorize?' . $query; |
| 28 | } |
| 29 | |
| 30 | /** |
| 31 | * Use an authoriztion code to connect an account to your platform and |
| 32 | * fetch the user's credentials. |
| 33 | * |
| 34 | * @param array|null $params |
| 35 | * @param array|null $opts |
| 36 | * |
| 37 | * @return StripeObject Object containing the response from the API. |
| 38 | */ |
| 39 | public static function token($params = null, $opts = null) |
| 40 | { |
| 41 | $base = ($opts && array_key_exists('connect_base', $opts)) ? $opts['connect_base'] : Stripe::$connectBase; |
| 42 | $requestor = new ApiRequestor(null, $base); |
| 43 | list($response, $apiKey) = $requestor->request( |
| 44 | 'post', |
| 45 | '/oauth/token', |
| 46 | $params, |
| 47 | null |
| 48 | ); |
| 49 | return Util\Util::convertToStripeObject($response->json, $opts); |
| 50 | } |
| 51 | |
| 52 | /** |
| 53 | * Disconnects an account from your platform. |
| 54 | * |
| 55 | * @param array|null $params |
| 56 | * @param array|null $opts |
| 57 | * |
| 58 | * @return StripeObject Object containing the response from the API. |
| 59 | */ |
| 60 | public static function deauthorize($params = null, $opts = null) |
| 61 | { |
| 62 | $params = $params ?: []; |
| 63 | $base = ($opts && array_key_exists('connect_base', $opts)) ? $opts['connect_base'] : Stripe::$connectBase; |
| 64 | $requestor = new ApiRequestor(null, $base); |
| 65 | $params['client_id'] = self::_getClientId($params); |
| 66 | list($response, $apiKey) = $requestor->request( |
| 67 | 'post', |
| 68 | '/oauth/deauthorize', |
| 69 | $params, |
| 70 | null |
| 71 | ); |
| 72 | return Util\Util::convertToStripeObject($response->json, $opts); |
| 73 | } |
| 74 | |
| 75 | private static function _getClientId($params = null) |
| 76 | { |
| 77 | $clientId = ($params && array_key_exists('client_id', $params)) ? $params['client_id'] : null; |
| 78 | if ($clientId === null) { |
| 79 | $clientId = Stripe::getClientId(); |
| 80 | } |
| 81 | if ($clientId === null) { |
| 82 | $msg = 'No client_id provided. (HINT: set your client_id using ' |
| 83 | . '"Stripe::setClientId(<CLIENT-ID>)". You can find your client_ids ' |
| 84 | . 'in your Stripe dashboard at ' |
| 85 | . 'https://dashboard.stripe.com/account/applications/settings, ' |
| 86 | . 'after registering your account as a platform. See ' |
| 87 | . 'https://stripe.com/docs/connect/standard-accounts for details, ' |
| 88 | . 'or email support@stripe.com if you have any questions.'; |
| 89 | throw new Error\Authentication($msg); |
| 90 | } |
| 91 | return $clientId; |
| 92 | } |
| 93 | } |
| 94 |