• File: GatewaySubscriptionController.php
  • Full Path: /home/bravrvjk/itiministry.org/wp-content/plugins/give/src/Framework/PaymentGateways/Controllers/GatewaySubscriptionController.php
  • Date Modified: 10/16/2023 9:55 PM
  • File size: 2.9 KB
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace Give\Framework\PaymentGateways\Controllers;

use Give\Donations\Models\Donation;
use Give\Framework\Exceptions\Primitives\Exception;
use Give\Framework\FieldsAPI\Exceptions\TypeNotSupported;
use Give\Framework\PaymentGateways\Actions\HandleGatewaySubscriptionCommand;
use Give\Framework\PaymentGateways\Commands\GatewayCommand;
use Give\Framework\PaymentGateways\Exceptions\PaymentGatewayException;
use Give\Framework\PaymentGateways\Log\PaymentGatewayLog;
use Give\Framework\PaymentGateways\PaymentGateway;
use Give\Framework\PaymentGateways\Traits\HandleHttpResponses;
use Give\Subscriptions\Models\Subscription;

/**
 * @since 2.27.0
 */
class GatewaySubscriptionController
{
    use HandleHttpResponses;

    /**
     * @var PaymentGateway
     */
    protected $gateway;

    /**
     * @since 2.27.0
     */
    public function __construct(PaymentGateway $gateway)
    {
        $this->gateway = $gateway;
    }

    /**
     * @since 3.0.0 Catch and handle errors from the gateway upstream
     * @since 2.27.0
     *
     * @throws Exception|TypeNotSupported|PaymentGatewayException
     */
    public function create(Donation $donation, Subscription $subscription, array $gatewayData = [])
    {
        $command = $this->gateway->createSubscription($donation, $subscription, $gatewayData);

        $this->handleGatewayCommand($command, $donation, $subscription);
    }

    /**
     * @since 2.33.0
     */
    public function synchronizeSubscription(Subscription $subscription)
    {
        try {
            $command = $this->gateway->synchronizeSubscription($subscription);
            $this->handleGatewayCommand($command, $subscription->initialDonation(), $subscription);
        } catch (\Exception $exception) {
            PaymentGatewayLog::error(
                $exception->getMessage(),
                [
                    'Payment Gateway' => $this->gateway::id(),
                    'Donation' => $subscription->initialDonation()->toArray(),
                    'Subscription' => $subscription->toArray(),
                ]
            );

            $message = __(
                'An unexpected error occurred while synchronizing the subscription.  Please try again or contact the site administrator.',
                'give'
            );

            $this->handleExceptionResponse($exception, $message);
        }
    }

    /**
     * Handle gateway subscription command
     *
     * @since 2.27.0 move logic into action
     * @since 2.26.0 add RespondToBrowser command
     * @since 2.21.0 Handle RedirectOffsite response.
     * @since 2.18.0
     *
     * @throws TypeNotSupported
     * @throws Exception
     */
    public function handleGatewayCommand(
        GatewayCommand $command,
        Donation $donation,
        Subscription $subscription
    ) {
        $response = (new HandleGatewaySubscriptionCommand())($command, $donation, $subscription);

        $this->handleResponse($response);
    }
}