2021-04-12 12:11:08 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\PaymentDrivers;
|
|
|
|
|
|
|
|
use App\Factory\PaymentFactory;
|
|
|
|
use App\Http\Requests\Payments\PaymentWebhookRequest;
|
|
|
|
use App\Http\Requests\Request;
|
|
|
|
use App\Jobs\Util\SystemLogger;
|
|
|
|
use App\Models\ClientGatewayToken;
|
|
|
|
use App\Models\GatewayType;
|
|
|
|
use App\Models\Payment;
|
|
|
|
use App\Models\PaymentHash;
|
|
|
|
use App\Models\SystemLog;
|
|
|
|
use App\PaymentDrivers\Stripe\ACH;
|
|
|
|
use App\PaymentDrivers\Stripe\Alipay;
|
|
|
|
use App\PaymentDrivers\Stripe\Charge;
|
|
|
|
use App\PaymentDrivers\Stripe\CreditCard;
|
|
|
|
use App\PaymentDrivers\Stripe\SOFORT;
|
|
|
|
use App\PaymentDrivers\Stripe\Utilities;
|
|
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
use Exception;
|
|
|
|
use Illuminate\Support\Carbon;
|
|
|
|
use Stripe\Customer;
|
|
|
|
use Stripe\Exception\ApiErrorException;
|
|
|
|
use Stripe\PaymentIntent;
|
|
|
|
use Stripe\PaymentMethod;
|
|
|
|
use Stripe\SetupIntent;
|
|
|
|
use Stripe\Stripe;
|
|
|
|
use Stripe\StripeClient;
|
|
|
|
|
2021-04-20 13:30:52 +02:00
|
|
|
class StripeConnectPaymentDriver extends StripePaymentDriver
|
2021-04-12 12:11:08 +02:00
|
|
|
{
|
|
|
|
|
2021-04-20 13:30:52 +02:00
|
|
|
public function __construct(CompanyGateway $company_gateway, Client $client = null, $invitation = false)
|
2021-04-12 12:11:08 +02:00
|
|
|
{
|
|
|
|
|
2021-04-20 13:30:52 +02:00
|
|
|
parent::__construct($company_gateway, $client, $invitation);
|
2021-04-12 12:11:08 +02:00
|
|
|
|
2021-04-20 13:30:52 +02:00
|
|
|
$this->stripe_connect = true;
|
2021-04-12 12:11:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|