1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 01:11:34 +02:00
invoiceninja/app/PaymentDrivers/Eway/Token.php

123 lines
3.6 KiB
PHP
Raw Normal View History

2021-07-27 07:14:29 +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://www.elastic.co/licensing/elastic-license
*/
namespace App\PaymentDrivers\Eway;
use App\Exceptions\PaymentFailed;
use App\Jobs\Util\SystemLogger;
use App\Models\ClientGatewayToken;
use App\Models\GatewayType;
use App\Models\Payment;
use App\Models\PaymentHash;
use App\Models\PaymentType;
use App\Models\SystemLog;
use App\PaymentDrivers\EwayPaymentDriver;
use App\PaymentDrivers\Eway\ErrorCode;
use App\Utils\Traits\MakesHash;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Cache;
use Illuminate\Support\Str;
class Token
{
use MakesHash;
public $eway_driver;
public function __construct(EwayPaymentDriver $eway_driver)
{
$this->eway_driver = $eway_driver;
}
public function tokenBilling(ClientGatewayToken $cgt, PaymentHash $payment_hash)
{
$amount = array_sum(array_column($payment_hash->invoices(), 'amount')) + $payment_hash->fee_total;
2022-03-08 11:49:33 +01:00
$invoice_numbers = '';
if($this->eway_driver->payment_hash->data)
$invoice_numbers = collect($this->eway_driver->payment_hash->data->invoices)->pluck('invoice_number')->implode(',');
$description = "Invoices: {$invoice_numbers} for {$amount} for client {$this->eway_driver->client->present()->name()}";
$this->eway_driver->payment_hash = $payment_hash;
2021-07-27 07:14:29 +02:00
$transaction = [
'Customer' => [
'TokenCustomerID' => $cgt->token,
],
'Payment' => [
'TotalAmount' => $this->eway_driver->convertAmount($amount),
2022-03-08 11:49:33 +01:00
'CurrencyCode' => $this->eway_driver->client->currency()->code,
'InvoiceNumber' => $invoice_numbers,
2022-04-01 08:25:48 +02:00
'InvoiceDescription' => substr($description, 0,63),
2021-07-27 07:14:29 +02:00
],
'TransactionType' => \Eway\Rapid\Enum\TransactionType::RECURRING,
];
$response = $this->eway_driver->init()->eway->createTransaction(\Eway\Rapid\Enum\ApiMethod::DIRECT, $transaction);
$response_status = ErrorCode::getStatus($response->ResponseMessage);
if(!$response_status['success'])
return $this->processUnsuccessfulPayment($response);
2022-01-14 05:50:09 +01:00
$payment = $this->processSuccessfulPayment($response, $cgt);
2021-07-27 07:14:29 +02:00
return $payment;
}
2022-01-14 05:50:09 +01:00
private function processSuccessfulPayment($response, $cgt)
2021-07-27 07:14:29 +02:00
{
$amount = array_sum(array_column($this->eway_driver->payment_hash->invoices(), 'amount')) + $this->eway_driver->payment_hash->fee_total;
$data = [
2021-10-17 12:40:40 +02:00
'gateway_type_id' => GatewayType::CREDIT_CARD,
'payment_type' => PaymentType::CREDIT_CARD_OTHER,
'transaction_reference' => $response->TransactionID,
2021-07-27 07:14:29 +02:00
'amount' => $amount,
];
2021-07-27 07:14:29 +02:00
$payment = $this->eway_driver->createPayment($data);
$payment->meta = $cgt->meta;
$payment->save();
2021-10-17 12:40:40 +02:00
$this->eway_driver->payment_hash->payment_id = $payment->id;
$this->eway_driver->payment_hash->save();
2021-07-27 07:14:29 +02:00
return $payment;
}
private function processUnsuccessfulPayment($response)
{
$response_status = ErrorCode::getStatus($response->ResponseMessage);
2021-09-19 14:51:46 +02:00
$error = $response_status['message'];
2021-07-27 07:14:29 +02:00
$error_code = $response->ResponseMessage;
$data = [
'response' => $response,
'error' => $error,
'error_code' => $error_code,
];
2022-01-14 05:50:09 +01:00
return $this->eway_driver->processUnsuccessfulTransaction($data);
2021-07-27 07:14:29 +02:00
}
}