mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
224 lines
8.5 KiB
PHP
224 lines
8.5 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace App\PaymentDrivers\Stripe;
|
|
|
|
use App\Events\Payment\PaymentWasCreated;
|
|
use App\Jobs\Util\SystemLogger;
|
|
use App\Models\ClientGatewayToken;
|
|
use App\Models\GatewayType;
|
|
use App\Models\Invoice;
|
|
use App\Models\Payment;
|
|
use App\Models\PaymentHash;
|
|
use App\Models\PaymentType;
|
|
use App\Models\SystemLog;
|
|
use App\PaymentDrivers\StripePaymentDriver;
|
|
use App\PaymentDrivers\Stripe\ACH;
|
|
use App\Utils\Ninja;
|
|
use App\Utils\Traits\MakesHash;
|
|
use Stripe\Exception\ApiConnectionException;
|
|
use Stripe\Exception\ApiErrorException;
|
|
use Stripe\Exception\AuthenticationException;
|
|
use Stripe\Exception\CardException;
|
|
use Stripe\Exception\InvalidRequestException;
|
|
use Stripe\Exception\RateLimitException;
|
|
use Stripe\StripeClient;
|
|
use App\Utils\Number;
|
|
|
|
class Charge
|
|
{
|
|
use MakesHash;
|
|
|
|
/** @var StripePaymentDriver */
|
|
public $stripe;
|
|
|
|
public function __construct(StripePaymentDriver $stripe)
|
|
{
|
|
$this->stripe = $stripe;
|
|
}
|
|
|
|
/**
|
|
* Create a charge against a payment method.
|
|
* @param ClientGatewayToken $cgt
|
|
* @param PaymentHash $payment_hash
|
|
* @return bool success/failure
|
|
* @throws \Laracasts\Presenter\Exceptions\PresenterException
|
|
*/
|
|
public function tokenBilling(ClientGatewayToken $cgt, PaymentHash $payment_hash)
|
|
{
|
|
if ($cgt->gateway_type_id == GatewayType::BANK_TRANSFER) {
|
|
return (new ACH($this->stripe))->tokenBilling($cgt, $payment_hash);
|
|
}
|
|
|
|
$amount = array_sum(array_column($payment_hash->invoices(), 'amount')) + $payment_hash->fee_total;
|
|
$invoice = Invoice::whereIn('id', $this->transformKeys(array_column($payment_hash->invoices(), 'invoice_id')))->withTrashed()->first();
|
|
|
|
if ($invoice) {
|
|
$description = ctrans('texts.stripe_payment_text', ['invoicenumber' => $invoice->number, 'amount' => Number::formatMoney($amount, $this->stripe->client), 'client' => $this->stripe->client->present()->name()]);
|
|
} else {
|
|
$description = ctrans('texts.stripe_payment_text_without_invoice', ['amount' => Number::formatMoney($amount, $this->stripe->client), 'client' => $this->stripe->client->present()->name()]);
|
|
}
|
|
|
|
$this->stripe->init();
|
|
|
|
$response = null;
|
|
|
|
try {
|
|
$data = [
|
|
'amount' => $this->stripe->convertToStripeAmount($amount, $this->stripe->client->currency()->precision, $this->stripe->client->currency()),
|
|
'currency' => $this->stripe->client->getCurrencyCode(),
|
|
'payment_method' => $cgt->token,
|
|
'customer' => $cgt->gateway_customer_reference,
|
|
'confirm' => true,
|
|
'description' => $description,
|
|
'metadata' => [
|
|
'payment_hash' => $payment_hash->hash,
|
|
'gateway_type_id' => $cgt->gateway_type_id,
|
|
],
|
|
];
|
|
|
|
if ($cgt->gateway_type_id == GatewayType::SEPA) {
|
|
$data['payment_method_types'] = ['sepa_debit'];
|
|
}
|
|
if ($cgt->gateway_type_id == GatewayType::BACS) {
|
|
$data['payment_method_types'] = ['bacs_debit'];
|
|
}
|
|
|
|
/* Should improve token billing with client not present */
|
|
if (!auth()->guard('contact')->check()) {
|
|
$data['off_session'] = true;
|
|
}
|
|
|
|
$response = $this->stripe->createPaymentIntent($data, array_merge($this->stripe->stripe_connect_auth, ['idempotency_key' => uniqid("st",true)]));
|
|
|
|
SystemLogger::dispatch($response, SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::EVENT_GATEWAY_SUCCESS, SystemLog::TYPE_STRIPE, $this->stripe->client, $this->stripe->client->company);
|
|
} catch (\Exception $e) {
|
|
$data = [
|
|
'status' => '',
|
|
'error_type' => '',
|
|
'error_code' => '',
|
|
'param' => '',
|
|
'message' => '',
|
|
];
|
|
|
|
switch ($e) {
|
|
case $e instanceof CardException:
|
|
$data['status'] = $e->getHttpStatus();
|
|
$data['error_type'] = $e->getError()->type;
|
|
$data['error_code'] = $e->getError()->code;
|
|
$data['param'] = $e->getError()->param;
|
|
$data['message'] = $e->getError()->message;
|
|
break;
|
|
case $e instanceof RateLimitException:
|
|
$data['message'] = 'Too many requests made to the API too quickly';
|
|
break;
|
|
case $e instanceof InvalidRequestException:
|
|
$data['message'] = 'Invalid parameters were supplied to Stripe\'s API';
|
|
break;
|
|
case $e instanceof AuthenticationException:
|
|
$data['message'] = 'Authentication with Stripe\'s API failed';
|
|
break;
|
|
case $e instanceof ApiErrorException:
|
|
$data['message'] = 'Network communication with Stripe failed';
|
|
break;
|
|
|
|
default:
|
|
$data['message'] = $e->getMessage();
|
|
break;
|
|
}
|
|
|
|
$this->stripe->processInternallyFailedPayment($this->stripe, $e);
|
|
|
|
SystemLogger::dispatch($data, SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::EVENT_GATEWAY_FAILURE, SystemLog::TYPE_STRIPE, $this->stripe->client, $this->stripe->client->company);
|
|
}
|
|
|
|
if (! $response) {
|
|
return false;
|
|
}
|
|
|
|
if ($cgt->gateway_type_id == GatewayType::SEPA) {
|
|
$payment_method_type = PaymentType::SEPA;
|
|
$status = Payment::STATUS_PENDING;
|
|
} elseif ($cgt->gateway_type_id == GatewayType::BACS){
|
|
$payment_method_type = PaymentType::BACS;
|
|
$status = Payment::STATUS_PENDING;
|
|
}
|
|
else {
|
|
|
|
if(isset($response->latest_charge)) {
|
|
$charge = \Stripe\Charge::retrieve($response->latest_charge, $this->stripe->stripe_connect_auth);
|
|
$payment_method_type = $charge->payment_method_details->card->brand;
|
|
}
|
|
elseif(isset($response->charges->data[0]->payment_method_details->card->brand))
|
|
$payment_method_type = $response->charges->data[0]->payment_method_details->card->brand;
|
|
else
|
|
$payment_method_type = 'visa';
|
|
|
|
$status = Payment::STATUS_COMPLETED;
|
|
}
|
|
|
|
if(!in_array($response?->status, ['succeeded', 'processing'])){
|
|
$this->stripe->processInternallyFailedPayment($this->stripe, new \Exception('Auto billing failed.',400));
|
|
}
|
|
|
|
$data = [
|
|
'gateway_type_id' => $cgt->gateway_type_id,
|
|
'payment_type' => $this->transformPaymentTypeToConstant($payment_method_type),
|
|
'transaction_reference' => isset($response->latest_charge) ? $response->latest_charge : $response->charges->data[0]->id,
|
|
'amount' => $amount,
|
|
];
|
|
|
|
$payment = $this->stripe->createPayment($data, $status);
|
|
$payment->meta = $cgt->meta;
|
|
$payment->save();
|
|
|
|
$payment_hash->data = array_merge((array) $payment_hash->data, ['payment_intent' => $response, 'amount_with_fee' => $amount]);
|
|
$payment_hash->payment_id = $payment->id;
|
|
$payment_hash->save();
|
|
|
|
return $payment;
|
|
}
|
|
|
|
private function formatGatewayResponse($data, $vars)
|
|
{
|
|
$response = $data['response'];
|
|
|
|
return [
|
|
'transaction_reference' => $response->getTransactionResponse()->getTransId(),
|
|
'amount' => $vars['amount'],
|
|
'auth_code' => $response->getTransactionResponse()->getAuthCode(),
|
|
'code' => $response->getTransactionResponse()->getMessages()[0]->getCode(),
|
|
'description' => $response->getTransactionResponse()->getMessages()[0]->getDescription(),
|
|
'invoices' => $vars['hashed_ids'],
|
|
];
|
|
}
|
|
|
|
private function transformPaymentTypeToConstant($type)
|
|
{
|
|
switch ($type) {
|
|
case 'visa':
|
|
return PaymentType::VISA;
|
|
break;
|
|
case 'mastercard':
|
|
return PaymentType::MASTERCARD;
|
|
break;
|
|
case PaymentType::SEPA:
|
|
return PaymentType::SEPA;
|
|
case PaymentType::BACS:
|
|
return PaymentType::BACS;
|
|
default:
|
|
return PaymentType::CREDIT_CARD_OTHER;
|
|
break;
|
|
}
|
|
}
|
|
}
|