1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 09:21:34 +02:00
invoiceninja/app/PaymentDrivers/Stripe/Connect/Verify.php

68 lines
1.9 KiB
PHP
Raw Normal View History

2021-08-15 04:24:50 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
2021-08-15 04:24:50 +02:00
*
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\PaymentDrivers\Stripe\Connect;
use App\Exceptions\StripeConnectFailure;
2021-08-15 04:24:50 +02:00
use App\PaymentDrivers\StripePaymentDriver;
use App\Utils\Traits\MakesHash;
use Stripe\Customer;
class Verify
{
use MakesHash;
/** @var StripePaymentDriver */
public $stripe;
public function __construct(StripePaymentDriver $stripe)
{
$this->stripe = $stripe;
}
2021-08-15 07:13:20 +02:00
public function run()
2021-08-15 04:24:50 +02:00
{
$this->stripe->init();
if ($this->stripe->stripe_connect && strlen($this->stripe->company_gateway->getConfigField('account_id')) < 1) {
throw new StripeConnectFailure('Stripe Connect has not been configured');
}
2021-08-15 07:13:20 +02:00
2022-02-19 11:41:34 +01:00
$total_stripe_customers = 0;
$starting_after = null;
do {
$customers = Customer::all(['limit' => 100, 'starting_after' => $starting_after], $this->stripe->stripe_connect_auth);
2022-02-19 11:41:34 +01:00
$total_stripe_customers += count($customers->data);
$starting_after = end($customers->data)['id'];
} while ($customers->has_more);
2022-02-19 11:41:34 +01:00
$stripe_customers = $this->stripe->company_gateway->client_gateway_tokens->map(function ($cgt) {
2021-08-15 04:24:50 +02:00
$customer = Customer::retrieve($cgt->gateway_customer_reference, $this->stripe->stripe_connect_auth);
return [
'customer' => $cgt->gateway_customer_reference,
'record' => $customer,
2021-08-15 04:24:50 +02:00
];
});
2021-08-15 07:13:20 +02:00
$data = [
2022-02-19 11:41:34 +01:00
'stripe_customer_count' => $total_stripe_customers,
2021-08-15 07:13:20 +02:00
'stripe_customers' => $stripe_customers,
];
return response()->json($data, 200);
2021-08-15 04:24:50 +02:00
}
}