allow vendord
All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 3m3s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 16s
Build, Push and Deploy / deploy-staging (push) Successful in 32s
Build, Push and Deploy / deploy-production (push) Has been skipped
Build, Push and Deploy / cleanup (push) Successful in 1s
All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 3m3s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 16s
Build, Push and Deploy / deploy-staging (push) Successful in 32s
Build, Push and Deploy / deploy-production (push) Has been skipped
Build, Push and Deploy / cleanup (push) Successful in 1s
This commit is contained in:
190
vendor/omnipay/stripe/src/PaymentIntentsGateway.php
vendored
Normal file
190
vendor/omnipay/stripe/src/PaymentIntentsGateway.php
vendored
Normal file
@@ -0,0 +1,190 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Stripe Payment Intents Gateway.
|
||||
*/
|
||||
|
||||
namespace Omnipay\Stripe;
|
||||
|
||||
/**
|
||||
* Stripe Payment Intents Gateway.
|
||||
*
|
||||
* @see \Omnipay\Stripe\AbstractGateway
|
||||
* @see \Omnipay\Stripe\Message\AbstractRequest
|
||||
*
|
||||
* @link https://stripe.com/docs/api
|
||||
*
|
||||
*/
|
||||
class PaymentIntentsGateway extends AbstractGateway
|
||||
{
|
||||
/**
|
||||
* @inheritdoc
|
||||
*/
|
||||
public function getName()
|
||||
{
|
||||
return 'Stripe Payment Intents';
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*
|
||||
* @return \Omnipay\Stripe\Message\PaymentIntents\AuthorizeRequest
|
||||
*/
|
||||
public function authorize(array $parameters = array())
|
||||
{
|
||||
return $this->createRequest('\Omnipay\Stripe\Message\PaymentIntents\AuthorizeRequest', $parameters);
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*
|
||||
* In reality, we're confirming the payment intent.
|
||||
* This method exists as an alias to in line with how Omnipay interfaces define things.
|
||||
*
|
||||
* @return \Omnipay\Stripe\Message\PaymentIntents\ConfirmPaymentIntentRequest
|
||||
*/
|
||||
public function completeAuthorize(array $options = [])
|
||||
{
|
||||
return $this->confirm($options);
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*
|
||||
* @return \Omnipay\Stripe\Message\PaymentIntents\CaptureRequest
|
||||
*/
|
||||
public function capture(array $parameters = array())
|
||||
{
|
||||
return $this->createRequest('\Omnipay\Stripe\Message\PaymentIntents\CaptureRequest', $parameters);
|
||||
}
|
||||
|
||||
/**
|
||||
* Confirm a Payment Intent. Use this to confirm a payment intent created by a Purchase or Authorize request.
|
||||
*
|
||||
* @param array $parameters
|
||||
* @return \Omnipay\Stripe\Message\PaymentIntents\ConfirmPaymentIntentRequest
|
||||
*/
|
||||
public function confirm(array $parameters = array())
|
||||
{
|
||||
return $this->createRequest('\Omnipay\Stripe\Message\PaymentIntents\ConfirmPaymentIntentRequest', $parameters);
|
||||
}
|
||||
|
||||
/**
|
||||
* Cancel a Payment Intent.
|
||||
*
|
||||
* @param array $parameters
|
||||
* @return \Omnipay\Stripe\Message\PaymentIntents\CancelPaymentIntentRequest
|
||||
*/
|
||||
public function cancel(array $parameters = array())
|
||||
{
|
||||
return $this->createRequest('\Omnipay\Stripe\Message\PaymentIntents\CancelPaymentIntentRequest', $parameters);
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*
|
||||
* @return \Omnipay\Stripe\Message\PaymentIntents\PurchaseRequest
|
||||
*/
|
||||
public function purchase(array $parameters = array())
|
||||
{
|
||||
return $this->createRequest('\Omnipay\Stripe\Message\PaymentIntents\PurchaseRequest', $parameters);
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*
|
||||
* In reality, we're confirming the payment intent.
|
||||
* This method exists as an alias to in line with how Omnipay interfaces define things.
|
||||
*
|
||||
* @return \Omnipay\Stripe\Message\PaymentIntents\ConfirmPaymentIntentRequest
|
||||
*/
|
||||
public function completePurchase(array $options = [])
|
||||
{
|
||||
return $this->confirm($options);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a payment intent. Use this to check the status of it.
|
||||
*
|
||||
* @return \Omnipay\Stripe\Message\PaymentIntents\FetchPaymentIntentRequest
|
||||
*/
|
||||
public function fetchPaymentIntent(array $parameters = array())
|
||||
{
|
||||
return $this->createRequest('\Omnipay\Stripe\Message\PaymentIntents\FetchPaymentIntentRequest', $parameters);
|
||||
}
|
||||
|
||||
//
|
||||
// Cards
|
||||
// @link https://stripe.com/docs/api/payment_methods
|
||||
//
|
||||
|
||||
/**
|
||||
* @return \Omnipay\Stripe\Message\PaymentIntents\FetchPaymentMethodRequest
|
||||
*/
|
||||
public function fetchCard(array $parameters = array())
|
||||
{
|
||||
return $this->createRequest('\Omnipay\Stripe\Message\PaymentIntents\FetchPaymentMethodRequest', $parameters);
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*
|
||||
* @return \Omnipay\Stripe\Message\PaymentIntents\CreatePaymentMethodRequest
|
||||
*/
|
||||
public function createCard(array $parameters = array())
|
||||
{
|
||||
return $this->createRequest('\Omnipay\Stripe\Message\PaymentIntents\CreatePaymentMethodRequest', $parameters);
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*
|
||||
* @return \Omnipay\Stripe\Message\PaymentIntents\CreatePaymentMethodRequest
|
||||
*/
|
||||
public function attachCard(array $parameters = array())
|
||||
{
|
||||
return $this->createRequest('\Omnipay\Stripe\Message\PaymentIntents\AttachPaymentMethodRequest', $parameters);
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*
|
||||
* @return \Omnipay\Stripe\Message\PaymentIntents\UpdatePaymentMethodRequest
|
||||
*/
|
||||
public function updateCard(array $parameters = array())
|
||||
{
|
||||
return $this->createRequest('\Omnipay\Stripe\Message\PaymentIntents\UpdatePaymentMethodRequest', $parameters);
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*
|
||||
* @return \Omnipay\Stripe\Message\PaymentIntents\DetachPaymentMethodRequest
|
||||
*/
|
||||
public function deleteCard(array $parameters = array())
|
||||
{
|
||||
return $this->createRequest('\Omnipay\Stripe\Message\PaymentIntents\DetachPaymentMethodRequest', $parameters);
|
||||
}
|
||||
|
||||
// Setup Intent
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*
|
||||
* @return \Omnipay\Stripe\Message\SetupIntents\CreateSetupIntentRequest
|
||||
*/
|
||||
public function createSetupIntent(array $parameters = array())
|
||||
{
|
||||
return $this->createRequest('\Omnipay\Stripe\Message\SetupIntents\CreateSetupIntentRequest', $parameters);
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
*
|
||||
* @return \Omnipay\Stripe\Message\SetupIntents\CreateSetupIntentRequest
|
||||
*/
|
||||
public function retrieveSetupIntent(array $parameters = array())
|
||||
{
|
||||
return $this->createRequest('\Omnipay\Stripe\Message\SetupIntents\RetrieveSetupIntentRequest', $parameters);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user