mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
176 lines
5.4 KiB
PHP
176 lines
5.4 KiB
PHP
<?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\Stripe;
|
|
|
|
use App\Factory\ClientGatewayTokenFactory;
|
|
use App\Models\Client;
|
|
use App\Models\ClientGatewayToken;
|
|
use App\Models\GatewayType;
|
|
use App\PaymentDrivers\StripePaymentDriver;
|
|
use App\Utils\Traits\MakesHash;
|
|
use Stripe\Customer;
|
|
use Stripe\PaymentMethod;
|
|
|
|
class UpdatePaymentMethods
|
|
{
|
|
use MakesHash;
|
|
|
|
/** @var StripePaymentDriver */
|
|
public $stripe;
|
|
|
|
public function __construct(StripePaymentDriver $stripe)
|
|
{
|
|
$this->stripe = $stripe;
|
|
}
|
|
|
|
// public function run()
|
|
// {
|
|
// $this->stripe->init();
|
|
|
|
// $this->stripe
|
|
// ->company_gateway
|
|
// ->client_gateway_tokens
|
|
// ->each(function ($token){
|
|
|
|
|
|
// // $bank_accounts = Customer::allSources(
|
|
// // $token->gateway_customer_reference,
|
|
// // ['object' => 'bank_account', 'limit' => 300]
|
|
// // );
|
|
|
|
// // foreach($bank_accounts as $bank_account)
|
|
// // {
|
|
// // $this->addOrUpdateBankAccount($bank_account, $token);
|
|
// // }
|
|
// // $this->processCustomer($token->gateway_customer_reference);
|
|
|
|
// });
|
|
|
|
// }
|
|
|
|
private function updateMethods(Customer $customer, Client $client)
|
|
{
|
|
$card_methods = PaymentMethod::all([
|
|
'customer' => $customer->id,
|
|
'type' => 'card',
|
|
],
|
|
$this->stripe->stripe_connect_auth);
|
|
|
|
foreach($card_methods as $method)
|
|
{
|
|
$this->addOrUpdateCard($method, $customer->id, $client,GatewayType::CREDIT_CARD);
|
|
}
|
|
|
|
$alipay_methods = PaymentMethod::all([
|
|
'customer' => $customer->id,
|
|
'type' => 'alipay',
|
|
],
|
|
$this->stripe->stripe_connect_auth);
|
|
|
|
foreach($alipay_methods as $method)
|
|
{
|
|
$this->addOrUpdateCard($method, $customer->id, $client,GatewayType::ALIPAY);
|
|
}
|
|
|
|
$sofort_methods = PaymentMethod::all([
|
|
'customer' => $customer->id,
|
|
'type' => 'sofort',
|
|
],
|
|
$this->stripe->stripe_connect_auth);
|
|
|
|
foreach($alipay_methods as $method)
|
|
{
|
|
$this->addOrUpdateCard($method, $customer->id, $client, GatewayType::SOFORT);
|
|
}
|
|
|
|
}
|
|
|
|
// private function addOrUpdateBankAccount($bank_account, $customer_reference, Client $client)
|
|
// {
|
|
// $token_exists = ClientGatewayToken::where([
|
|
// 'gateway_customer_reference' => $customer_reference,
|
|
// 'token' => $bank_account->id,
|
|
// ])->exists();
|
|
|
|
// /* Already exists return */
|
|
// if($token_exists)
|
|
// return;
|
|
|
|
// $cgt = ClientGatewayTokenFactory::create($client->company_id);
|
|
// $cgt->client_id = $client->id;
|
|
// $cgt->token = $bank_account->id;
|
|
// $cgt->gateway_customer_reference = $customer_reference;
|
|
// $cgt->company_gateway_id = $this->stripe->company_gateway->id;
|
|
// $cgt->gateway_type_id = GatewayType::BANK_TRANSFER;
|
|
// $cgt->meta = new \stdClass;
|
|
// $cgt->routing_number = $bank_account->routing_number;
|
|
// $cgt->save();
|
|
|
|
// }
|
|
|
|
private function addOrUpdateCard(PaymentMethod $method, $customer_reference, Client $client, $type_id)
|
|
{
|
|
|
|
$token_exists = ClientGatewayToken::where([
|
|
'gateway_customer_reference' => $customer_reference,
|
|
'token' => $method->id,
|
|
])->exists();
|
|
|
|
/* Already exists return */
|
|
if($token_exists)
|
|
return;
|
|
|
|
/* Ignore Expired cards */
|
|
if($method->card->exp_year <= date('Y') && $method->card->exp_month < date('m'))
|
|
return;
|
|
|
|
$cgt = ClientGatewayTokenFactory::create($client->company_id);
|
|
$cgt->client_id = $client->id;
|
|
$cgt->token = $method->id;
|
|
$cgt->gateway_customer_reference = $customer_reference;
|
|
$cgt->company_gateway_id = $this->stripe->company_gateway->id;
|
|
$cgt->gateway_type_id = $type_id;
|
|
$cgt->meta = $this->buildPaymentMethodMeta($method, $type_id);
|
|
$cgt->save();
|
|
|
|
}
|
|
|
|
private function buildPaymentMethodMeta(PaymentMethod $method, GatewayType $type_id)
|
|
{
|
|
|
|
switch ($type_id) {
|
|
case GatewayType::CREDIT_CARD:
|
|
|
|
$payment_meta = new \stdClass;
|
|
$payment_meta->exp_month = (string) $method->card->exp_month;
|
|
$payment_meta->exp_year = (string) $method->card->exp_year;
|
|
$payment_meta->brand = (string) $method->card->brand;
|
|
$payment_meta->last4 = (string) $method->card->last4;
|
|
$payment_meta->type = GatewayType::CREDIT_CARD;
|
|
return $payment_meta;
|
|
|
|
break;
|
|
|
|
case GatewayType::ALIPAY:
|
|
case GatewayType::SOFORT:
|
|
|
|
return new \stdClass;
|
|
|
|
default:
|
|
|
|
|
|
break;
|
|
}
|
|
}
|
|
}
|