File: /home/globfdxw/www/wp-content/plugins/give/src/PaymentGateways/Gateways/Stripe/BECSGateway.php
<?php
namespace Give\PaymentGateways\Gateways\Stripe;
use Give\Donations\Models\Donation;
use Give\Framework\Exceptions\Primitives\Exception;
use Give\Framework\PaymentGateways\Commands\GatewayCommand;
use Give\Framework\PaymentGateways\Exceptions\PaymentGatewayException;
use Give\Framework\PaymentGateways\PaymentGateway;
use Give\Framework\PaymentGateways\SubscriptionModule;
use Give\Helpers\Call;
use Give\PaymentGateways\Gateways\Stripe\Traits\BECSMandateForm;
use Give\PaymentGateways\Gateways\Stripe\Traits\HandlePaymentIntentStatus;
use Give\PaymentGateways\Gateways\Stripe\ValueObjects\PaymentMethod;
/**
* @since 2.19.0
*/
class BECSGateway extends PaymentGateway
{
use BECSMandateForm;
use HandlePaymentIntentStatus;
/** @var array */
protected $errorMessages = [];
/**
* @param SubscriptionModule|null $subscriptionModule
*/
public function __construct(SubscriptionModule $subscriptionModule = null)
{
parent::__construct($subscriptionModule);
$this->errorMessages['accountConfiguredNoSsl'] = esc_html__(
'Mandate form fields are disabled because your site is not running securely over HTTPS.',
'give'
);
$this->errorMessages['accountNotConfiguredNoSsl'] = esc_html__(
'Mandate form fields are disabled because Stripe is not connected and your site is not running securely over HTTPS.',
'give'
);
$this->errorMessages['accountNotConfigured'] = esc_html__(
'Mandate form fields are disabled. Please connect and configure your Stripe account to accept donations.',
'give'
);
}
/**
* @inheritDoc
* @since 2.19.7 fix handlePaymentIntentStatus not receiving extra param
* @since 2.19.0
*
* @param array{stripePaymentMethod: PaymentMethod} $gatewayData
*
* @throws PaymentGatewayException
*/
public function createPayment(Donation $donation, $gatewayData): GatewayCommand
{
$donationSummary = Call::invoke(Actions\SaveDonationSummary::class, $donation);
$stripeCustomer = Call::invoke(Actions\GetOrCreateStripeCustomer::class, $donation);
$createIntentAction = new Actions\CreatePaymentIntent($this->getPaymentIntentArgs());
return $this->handlePaymentIntentStatus(
$createIntentAction(
$donation,
$donationSummary,
$stripeCustomer,
$gatewayData['stripePaymentMethod']
),
$donation
);
}
/**
* @inheritDoc
*/
public static function id(): string
{
return 'stripe_becs';
}
/**
* @inheritDoc
*/
public function getId(): string
{
return self::id();
}
/**
* @inheritDoc
*/
public function getName(): string
{
return __('Stripe - BECS Direct Debit', 'give');
}
/**
* @inheritDoc
*/
public function getPaymentMethodLabel(): string
{
return __('Stripe - BECS Direct Debit', 'give');
}
/**
* @inheritDoc
*/
public function getLegacyFormFieldMarkup(int $formId, array $args): string
{
return $this->getMandateFormHTML($formId, $args);
}
/**
* @since 2.33.5 Use give_get_ip() instead of give_stripe_get_ip_address()
* @since 2.19.0
* @return array
*/
protected function getPaymentIntentArgs(): array
{
return [
'payment_method_types' => ['au_becs_debit'],
'setup_future_usage' => 'on_session',
'mandate_data' => [
'customer_acceptance' => [
'type' => 'online',
'online' => [
'ip_address' => give_get_ip(),
'user_agent' => give_get_user_agent(),
],
],
],
];
}
}