class Stripe in Commerce Stripe 8
Provides the Stripe payment gateway.
Plugin annotation
@CommercePaymentGateway(
id = "stripe",
label = "Stripe",
display_label = "Stripe",
forms = {
"add-payment-method" = "Drupal\commerce_stripe\PluginForm\Stripe\PaymentMethodAddForm",
},
payment_method_types = {"credit_card"},
credit_card_types = {
"amex", "dinersclub", "discover", "jcb", "maestro", "mastercard", "visa", "unionpay"
},
js_library = "commerce_stripe/form",
requires_billing_information = FALSE,
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
- class \Drupal\commerce_payment\Plugin\Commerce\PaymentGateway\PaymentGatewayBase implements PaymentGatewayInterface, ContainerFactoryPluginInterface uses PluginWithFormsTrait
- class \Drupal\commerce_payment\Plugin\Commerce\PaymentGateway\OnsitePaymentGatewayBase implements OnsitePaymentGatewayInterface
- class \Drupal\commerce_stripe\Plugin\Commerce\PaymentGateway\Stripe implements StripeInterface
- class \Drupal\commerce_payment\Plugin\Commerce\PaymentGateway\OnsitePaymentGatewayBase implements OnsitePaymentGatewayInterface
- class \Drupal\commerce_payment\Plugin\Commerce\PaymentGateway\PaymentGatewayBase implements PaymentGatewayInterface, ContainerFactoryPluginInterface uses PluginWithFormsTrait
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of Stripe
1 file declares its use of Stripe
- AppInfoTest.php in tests/
src/ Kernel/ AppInfoTest.php
2 string references to 'Stripe'
- AppInfoTest::testStripeAppInfo in tests/
src/ Kernel/ AppInfoTest.php - Tests Stripe app info set during plugin initialization.
- CheckoutTest::setUp in tests/
src/ FunctionalJavascript/ CheckoutTest.php
File
- src/
Plugin/ Commerce/ PaymentGateway/ Stripe.php, line 57
Namespace
Drupal\commerce_stripe\Plugin\Commerce\PaymentGatewayView source
class Stripe extends OnsitePaymentGatewayBase implements StripeInterface {
/**
* The event dispatcher.
*
* @var \Symfony\Component\EventDispatcher\EventDispatcherInterface
*/
protected $eventDispatcher;
/**
* The module extension list.
*
* @var \Drupal\Core\Extension\ModuleExtensionList
*/
protected $moduleExtensionList;
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('entity_type.manager'), $container
->get('plugin.manager.commerce_payment_type'), $container
->get('plugin.manager.commerce_payment_method_type'), $container
->get('datetime.time'), $container
->get('commerce_price.minor_units_converter'), $container
->get('event_dispatcher'), $container
->get('extension.list.module'));
}
/**
* {@inheritdoc}
*/
public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityTypeManagerInterface $entity_type_manager, PaymentTypeManager $payment_type_manager, PaymentMethodTypeManager $payment_method_type_manager, TimeInterface $time, MinorUnitsConverterInterface $minor_units_converter, EventDispatcherInterface $event_dispatcher, ModuleExtensionList $module_extension_list) {
parent::__construct($configuration, $plugin_id, $plugin_definition, $entity_type_manager, $payment_type_manager, $payment_method_type_manager, $time, $minor_units_converter);
$this->eventDispatcher = $event_dispatcher;
$this->moduleExtensionList = $module_extension_list;
$this
->init();
}
/**
* Re-initializes the SDK after the plugin is unserialized.
*/
public function __wakeup() {
parent::__wakeup();
$this
->init();
}
/**
* Initializes the SDK.
*/
protected function init() {
$extension_info = $this->moduleExtensionList
->getExtensionInfo('commerce_stripe');
$version = !empty($extension_info['version']) ? $extension_info['version'] : '8.x-1.0-dev';
StripeLibrary::setAppInfo('Centarro Commerce for Drupal', $version, 'https://www.drupal.org/project/commerce_stripe', 'pp_partner_Fa3jTqCJqTDtHD');
// If Drupal is configured to use a proxy for outgoing requests, make sure
// that the proxy CURLOPT_PROXY setting is passed to the Stripe SDK client.
$http_client_config = Settings::get('http_client_config');
if (!empty($http_client_config['proxy']['https'])) {
$curl = new CurlClient([
CURLOPT_PROXY => $http_client_config['proxy']['https'],
]);
ApiRequestor::setHttpClient($curl);
}
StripeLibrary::setApiKey($this->configuration['secret_key']);
StripeLibrary::setApiVersion('2019-12-03');
}
/**
* {@inheritdoc}
*/
public function getPublishableKey() {
return $this->configuration['publishable_key'];
}
/**
* {@inheritdoc}
*/
public function defaultConfiguration() {
return [
'publishable_key' => '',
'secret_key' => '',
] + parent::defaultConfiguration();
}
/**
* {@inheritdoc}
*/
public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
$form = parent::buildConfigurationForm($form, $form_state);
$form['publishable_key'] = [
'#type' => 'textfield',
'#title' => $this
->t('Publishable Key'),
'#default_value' => $this->configuration['publishable_key'],
'#required' => TRUE,
];
$form['secret_key'] = [
'#type' => 'textfield',
'#title' => $this
->t('Secret Key'),
'#default_value' => $this->configuration['secret_key'],
'#required' => TRUE,
];
return $form;
}
/**
* {@inheritdoc}
*/
public function validateConfigurationForm(array &$form, FormStateInterface $form_state) {
parent::validateConfigurationForm($form, $form_state);
if (!$form_state
->getErrors()) {
$values = $form_state
->getValue($form['#parents']);
// Validate the secret key.
$expected_livemode = $values['mode'] == 'live' ? TRUE : FALSE;
if (!empty($values['secret_key'])) {
try {
StripeLibrary::setApiKey($values['secret_key']);
// Make sure we use the right mode for the secret keys.
if (Balance::retrieve()
->offsetGet('livemode') != $expected_livemode) {
$form_state
->setError($form['secret_key'], $this
->t('The provided secret key is not for the selected mode (@mode).', [
'@mode' => $values['mode'],
]));
}
} catch (ApiErrorException $e) {
$form_state
->setError($form['secret_key'], $this
->t('Invalid secret key.'));
}
}
}
}
/**
* {@inheritdoc}
*/
public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
parent::submitConfigurationForm($form, $form_state);
if (!$form_state
->getErrors()) {
$values = $form_state
->getValue($form['#parents']);
$this->configuration['publishable_key'] = $values['publishable_key'];
$this->configuration['secret_key'] = $values['secret_key'];
}
}
/**
* {@inheritdoc}
*/
public function createPayment(PaymentInterface $payment, $capture = TRUE) {
$this
->assertPaymentState($payment, [
'new',
]);
$payment_method = $payment
->getPaymentMethod();
assert($payment_method instanceof PaymentMethodInterface);
$this
->assertPaymentMethod($payment_method);
$order = $payment
->getOrder();
assert($order instanceof OrderInterface);
$intent_id = $order
->getData('stripe_intent');
try {
$intent = PaymentIntent::retrieve($intent_id);
if ($intent->status === PaymentIntent::STATUS_REQUIRES_CONFIRMATION) {
$intent = $intent
->confirm();
}
if ($intent->status === PaymentIntent::STATUS_REQUIRES_ACTION) {
throw new SoftDeclineException('The payment intent requires action by the customer for authentication');
}
if (!in_array($intent->status, [
PaymentIntent::STATUS_REQUIRES_CAPTURE,
PaymentIntent::STATUS_SUCCEEDED,
], TRUE)) {
$order
->set('payment_method', NULL);
$this
->deletePaymentMethod($payment_method);
if ($intent->status === PaymentIntent::STATUS_CANCELED) {
$order
->setData('stripe_intent', NULL);
}
if (is_object($intent->last_payment_error)) {
$error = $intent->last_payment_error;
$decline_message = sprintf('%s: %s', $error->type, isset($error->message) ? $error->message : '');
}
else {
$decline_message = $intent->last_payment_error;
}
throw new HardDeclineException($decline_message);
}
if (count($intent->charges->data) === 0) {
throw new HardDeclineException(sprintf('The payment intent %s did not have a charge object.', $intent_id));
}
$next_state = $capture ? 'completed' : 'authorization';
$payment
->setState($next_state);
$payment
->setRemoteId($intent->charges->data[0]->id);
$payment
->save();
// Add metadata and extra transaction data where required.
$event = new TransactionDataEvent($payment);
$this->eventDispatcher
->dispatch(StripeEvents::TRANSACTION_DATA, $event);
// Update the transaction data from additional information added through
// the event.
$metadata = $intent->metadata
->toArray();
$metadata += $event
->getMetadata();
PaymentIntent::update($intent->id, [
'metadata' => $metadata,
]);
$order
->unsetData('stripe_intent');
$order
->save();
} catch (ApiErrorException $e) {
ErrorHelper::handleException($e);
}
}
/**
* {@inheritdoc}
*/
public function capturePayment(PaymentInterface $payment, Price $amount = NULL) {
$this
->assertPaymentState($payment, [
'authorization',
]);
// If not specified, capture the entire amount.
$amount = $amount ?: $payment
->getAmount();
try {
$remote_id = $payment
->getRemoteId();
$charge = Charge::retrieve($remote_id);
$intent_id = $charge->payment_intent;
$amount_to_capture = $this->minorUnitsConverter
->toMinorUnits($amount);
if (!empty($intent_id)) {
$intent = PaymentIntent::retrieve($intent_id);
if ($intent->status != 'requires_capture') {
throw new PaymentGatewayException('Only requires_capture PaymentIntents can be captured.');
}
$intent
->capture([
'amount_to_capture' => $amount_to_capture,
]);
}
else {
$charge->amount = $amount_to_capture;
$transaction_data = [
'amount' => $charge->amount,
];
$charge
->capture($transaction_data);
}
} catch (ApiErrorException $e) {
ErrorHelper::handleException($e);
}
$payment
->setState('completed');
$payment
->setAmount($amount);
$payment
->save();
}
/**
* {@inheritdoc}
*/
public function voidPayment(PaymentInterface $payment) {
$this
->assertPaymentState($payment, [
'authorization',
]);
// Void Stripe payment - release uncaptured payment.
try {
$remote_id = $payment
->getRemoteId();
$charge = Charge::retrieve($remote_id);
$intent_id = $charge->payment_intent;
if (!empty($intent_id)) {
$intent = PaymentIntent::retrieve($intent_id);
$statuses_to_void = [
'requires_payment_method',
'requires_capture',
'requires_confirmation',
'requires_action',
];
if (!in_array($intent->status, $statuses_to_void)) {
throw new PaymentGatewayException('The PaymentIntent cannot be voided.');
}
$intent
->cancel();
}
else {
$data = [
'charge' => $remote_id,
];
// Voiding an authorized payment is done by creating a refund.
$release_refund = Refund::create($data);
ErrorHelper::handleErrors($release_refund);
}
} catch (ApiErrorException $e) {
ErrorHelper::handleException($e);
}
$payment
->setState('authorization_voided');
$payment
->save();
}
/**
* {@inheritdoc}
*/
public function refundPayment(PaymentInterface $payment, Price $amount = NULL) {
$this
->assertPaymentState($payment, [
'completed',
'partially_refunded',
]);
// If not specified, refund the entire amount.
$amount = $amount ?: $payment
->getAmount();
$this
->assertRefundAmount($payment, $amount);
try {
$remote_id = $payment
->getRemoteId();
$minor_units_amount = $this->minorUnitsConverter
->toMinorUnits($amount);
$data = [
'charge' => $remote_id,
'amount' => $minor_units_amount,
];
$refund = Refund::create($data, [
'idempotency_key' => \Drupal::getContainer()
->get('uuid')
->generate(),
]);
ErrorHelper::handleErrors($refund);
} catch (ApiErrorException $e) {
ErrorHelper::handleException($e);
}
$old_refunded_amount = $payment
->getRefundedAmount();
$new_refunded_amount = $old_refunded_amount
->add($amount);
if ($new_refunded_amount
->lessThan($payment
->getAmount())) {
$payment
->setState('partially_refunded');
}
else {
$payment
->setState('refunded');
}
$payment
->setRefundedAmount($new_refunded_amount);
$payment
->save();
}
/**
* {@inheritdoc}
*/
public function createPaymentMethod(PaymentMethodInterface $payment_method, array $payment_details) {
$required_keys = [
// The expected keys are payment gateway specific and usually match
// the PaymentMethodAddForm form elements. They are expected to be valid.
'stripe_payment_method_id',
];
foreach ($required_keys as $required_key) {
if (empty($payment_details[$required_key])) {
throw new InvalidRequestException(sprintf('$payment_details must contain the %s key.', $required_key));
}
}
$remote_payment_method = $this
->doCreatePaymentMethod($payment_method, $payment_details);
$payment_method->card_type = $this
->mapCreditCardType($remote_payment_method['brand']);
$payment_method->card_number = $remote_payment_method['last4'];
$payment_method->card_exp_month = $remote_payment_method['exp_month'];
$payment_method->card_exp_year = $remote_payment_method['exp_year'];
$expires = CreditCard::calculateExpirationTimestamp($remote_payment_method['exp_month'], $remote_payment_method['exp_year']);
$payment_method
->setRemoteId($payment_details['stripe_payment_method_id']);
$payment_method
->setExpiresTime($expires);
$payment_method
->save();
}
/**
* {@inheritdoc}
*/
public function deletePaymentMethod(PaymentMethodInterface $payment_method) {
// Delete the remote record.
$payment_method_remote_id = $payment_method
->getRemoteId();
try {
$remote_payment_method = PaymentMethod::retrieve($payment_method_remote_id);
if ($remote_payment_method->customer) {
$remote_payment_method
->detach();
}
} catch (ApiErrorException $e) {
ErrorHelper::handleException($e);
}
$payment_method
->delete();
}
/**
* {@inheritdoc}
*/
public function createPaymentIntent(OrderInterface $order, $capture = TRUE) {
/** @var \Drupal\commerce_payment\Entity\PaymentMethodInterface $payment_method */
$payment_method = $order
->get('payment_method')->entity;
$payment_method_remote_id = $payment_method
->getRemoteId();
$customer_remote_id = $this
->getRemoteCustomerId($order
->getCustomer());
$amount = $this->minorUnitsConverter
->toMinorUnits($order
->getTotalPrice());
$order_id = $order
->id();
$capture_method = $capture ? 'automatic' : 'manual';
$intent_array = [
'amount' => $amount,
'currency' => strtolower($order
->getTotalPrice()
->getCurrencyCode()),
'payment_method_types' => [
'card',
],
'metadata' => [
'order_id' => $order_id,
'store_id' => $order
->getStoreId(),
],
'payment_method' => $payment_method_remote_id,
'capture_method' => $capture_method,
];
if (!empty($customer_remote_id)) {
$intent_array['customer'] = $customer_remote_id;
}
try {
$intent = PaymentIntent::create($intent_array);
$order
->setData('stripe_intent', $intent->id)
->save();
} catch (ApiErrorException $e) {
ErrorHelper::handleException($e);
}
return $intent;
}
/**
* Creates the payment method on the gateway.
*
* @param \Drupal\commerce_payment\Entity\PaymentMethodInterface $payment_method
* The payment method.
* @param array $payment_details
* The gateway-specific payment details.
*
* @return array
* The payment method information returned by the gateway. Notable keys:
* - token: The remote ID.
* Credit card specific keys:
* - card_type: The card type.
* - last4: The last 4 digits of the credit card number.
* - expiration_month: The expiration month.
* - expiration_year: The expiration year.
*/
protected function doCreatePaymentMethod(PaymentMethodInterface $payment_method, array $payment_details) {
$stripe_payment_method_id = $payment_details['stripe_payment_method_id'];
$owner = $payment_method
->getOwner();
$customer_id = NULL;
if ($owner && $owner
->isAuthenticated()) {
$customer_id = $this
->getRemoteCustomerId($owner);
}
try {
$stripe_payment_method = PaymentMethod::retrieve($stripe_payment_method_id);
if ($customer_id) {
$stripe_payment_method
->attach([
'customer' => $customer_id,
]);
$email = $owner
->getEmail();
}
elseif ($owner && $owner
->isAuthenticated()) {
$email = $owner
->getEmail();
$customer = Customer::create([
'email' => $email,
'description' => $this
->t('Customer for :mail', [
':mail' => $email,
]),
'payment_method' => $stripe_payment_method_id,
]);
$customer_id = $customer->id;
$this
->setRemoteCustomerId($owner, $customer_id);
$owner
->save();
}
else {
$email = NULL;
}
if ($customer_id && $email) {
$payment_method_data = [
'email' => $email,
];
if ($billing_profile = $payment_method
->getBillingProfile()) {
$billing_address = $billing_profile
->get('address')
->first()
->toArray();
$payment_method_data['address'] = [
'city' => $billing_address['locality'],
'country' => $billing_address['country_code'],
'line1' => $billing_address['address_line1'],
'line2' => $billing_address['address_line2'],
'postal_code' => $billing_address['postal_code'],
'state' => $billing_address['administrative_area'],
];
$payment_method_data['name'] = $billing_address['given_name'] . ' ' . $billing_address['family_name'];
}
PaymentMethod::update($stripe_payment_method_id, [
'billing_details' => $payment_method_data,
]);
}
} catch (ApiErrorException $e) {
ErrorHelper::handleException($e);
}
return $stripe_payment_method->card;
}
/**
* Maps the Stripe credit card type to a Commerce credit card type.
*
* @param string $card_type
* The Stripe credit card type.
*
* @return string
* The Commerce credit card type.
*/
protected function mapCreditCardType($card_type) {
$map = [
'amex' => 'amex',
'diners' => 'dinersclub',
'discover' => 'discover',
'jcb' => 'jcb',
'mastercard' => 'mastercard',
'visa' => 'visa',
'unionpay' => 'unionpay',
];
if (!isset($map[$card_type])) {
throw new HardDeclineException(sprintf('Unsupported credit card type "%s".', $card_type));
}
return $map[$card_type];
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
OnsitePaymentGatewayBase:: |
protected | function |
Gets the default payment gateway forms. Overrides PaymentGatewayBase:: |
|
PaymentGatewayBase:: |
protected | property | The ID of the parent config entity. | |
PaymentGatewayBase:: |
protected | property | The entity type manager. | |
PaymentGatewayBase:: |
protected | property | The minor units converter. | |
PaymentGatewayBase:: |
protected | property | The parent config entity. | |
PaymentGatewayBase:: |
protected | property | The payment method types handled by the gateway. | |
PaymentGatewayBase:: |
protected | property | The payment type used by the gateway. | |
PaymentGatewayBase:: |
protected | property | The time. | |
PaymentGatewayBase:: |
protected | function | Asserts that the payment method is neither empty nor expired. | |
PaymentGatewayBase:: |
protected | function | Asserts that the payment state matches one of the allowed states. | |
PaymentGatewayBase:: |
protected | function | Asserts that the refund amount is valid. | |
PaymentGatewayBase:: |
public | function |
Builds a label for the given AVS response code and card type. Overrides PaymentGatewayInterface:: |
2 |
PaymentGatewayBase:: |
public | function |
Builds the available operations for the given payment. Overrides PaymentGatewayInterface:: |
1 |
PaymentGatewayBase:: |
public | function |
Calculates dependencies for the configured plugin. Overrides DependentPluginInterface:: |
|
PaymentGatewayBase:: |
public | function | ||
PaymentGatewayBase:: |
public | function | ||
PaymentGatewayBase:: |
public | function | ||
PaymentGatewayBase:: |
public | function |
Gets whether the payment gateway collects billing information. Overrides PaymentGatewayInterface:: |
|
PaymentGatewayBase:: |
public | function |
Gets this plugin's configuration. Overrides ConfigurableInterface:: |
|
PaymentGatewayBase:: |
public | function |
Gets the credit card types handled by the gateway. Overrides PaymentGatewayInterface:: |
|
PaymentGatewayBase:: |
public | function |
Gets the default payment method type. Overrides PaymentGatewayInterface:: |
|
PaymentGatewayBase:: |
public | function |
Gets the payment gateway display label. Overrides PaymentGatewayInterface:: |
|
PaymentGatewayBase:: |
public | function |
Gets the JS library ID. Overrides PaymentGatewayInterface:: |
|
PaymentGatewayBase:: |
public | function |
Gets the payment gateway label. Overrides PaymentGatewayInterface:: |
|
PaymentGatewayBase:: |
public | function |
Gets the mode in which the payment gateway is operating. Overrides PaymentGatewayInterface:: |
|
PaymentGatewayBase:: |
public | function |
Gets the payment method types handled by the payment gateway. Overrides PaymentGatewayInterface:: |
|
PaymentGatewayBase:: |
public | function |
Gets the payment type used by the payment gateway. Overrides PaymentGatewayInterface:: |
|
PaymentGatewayBase:: |
protected | function | Gets the remote customer ID for the given user. | |
PaymentGatewayBase:: |
public | function |
Gets the supported modes. Overrides PaymentGatewayInterface:: |
|
PaymentGatewayBase:: |
public | function |
Sets the configuration for this plugin instance. Overrides ConfigurableInterface:: |
|
PaymentGatewayBase:: |
protected | function | Sets the remote customer ID for the given user. | |
PaymentGatewayBase:: |
public | function |
Converts the given amount to its minor units. Overrides PaymentGatewayInterface:: |
|
PaymentGatewayBase:: |
public | function |
Overrides DependencySerializationTrait:: |
|
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
3 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
PluginWithFormsTrait:: |
public | function | ||
PluginWithFormsTrait:: |
public | function | ||
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
Stripe:: |
protected | property | The event dispatcher. | |
Stripe:: |
protected | property | The module extension list. | |
Stripe:: |
public | function |
Form constructor. Overrides OnsitePaymentGatewayBase:: |
|
Stripe:: |
public | function |
Captures the given authorized payment. Overrides SupportsAuthorizationsInterface:: |
|
Stripe:: |
public static | function |
Creates an instance of the plugin. Overrides PaymentGatewayBase:: |
|
Stripe:: |
public | function |
Creates a payment. Overrides SupportsStoredPaymentMethodsInterface:: |
|
Stripe:: |
public | function |
Create a payment intent for an order. Overrides StripeInterface:: |
|
Stripe:: |
public | function |
Creates a payment method with the given payment details. Overrides SupportsCreatingPaymentMethodsInterface:: |
|
Stripe:: |
public | function |
Gets default configuration for this plugin. Overrides PaymentGatewayBase:: |
|
Stripe:: |
public | function |
Deletes the given payment method. Overrides SupportsStoredPaymentMethodsInterface:: |
|
Stripe:: |
protected | function | Creates the payment method on the gateway. | |
Stripe:: |
public | function |
Get the Stripe API Publisable key set for the payment gateway. Overrides StripeInterface:: |
|
Stripe:: |
protected | function | Initializes the SDK. | |
Stripe:: |
protected | function | Maps the Stripe credit card type to a Commerce credit card type. | |
Stripe:: |
public | function |
Refunds the given payment. Overrides SupportsRefundsInterface:: |
|
Stripe:: |
public | function |
Form submission handler. Overrides PaymentGatewayBase:: |
|
Stripe:: |
public | function |
Form validation handler. Overrides PaymentGatewayBase:: |
|
Stripe:: |
public | function |
Voids the given payment. Overrides SupportsVoidsInterface:: |
|
Stripe:: |
public | function |
Constructs a new PaymentGatewayBase object. Overrides PaymentGatewayBase:: |
|
Stripe:: |
public | function |
Re-initializes the SDK after the plugin is unserialized. Overrides PaymentGatewayBase:: |