2020-10-22 15:24:18 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\PaymentDrivers\CheckoutCom;
|
|
|
|
|
2020-10-26 14:53:52 +01:00
|
|
|
use App\Http\Requests\ClientPortal\Payments\PaymentResponseRequest;
|
2020-10-22 15:24:18 +02:00
|
|
|
use App\PaymentDrivers\CheckoutComPaymentDriver;
|
2020-10-28 11:10:49 +01:00
|
|
|
use Checkout\Library\Exceptions\CheckoutHttpException;
|
2020-10-22 15:24:18 +02:00
|
|
|
use Checkout\Models\Payments\IdSource;
|
|
|
|
use Checkout\Models\Payments\Payment;
|
|
|
|
use Checkout\Models\Payments\TokenSource;
|
2020-10-28 11:10:49 +01:00
|
|
|
use Illuminate\Contracts\View\Factory;
|
|
|
|
use Illuminate\View\View;
|
2020-10-22 15:24:18 +02:00
|
|
|
|
|
|
|
class CreditCard
|
|
|
|
{
|
|
|
|
use Utilities;
|
|
|
|
|
|
|
|
/**
|
2020-10-28 11:10:49 +01:00
|
|
|
* @var CheckoutComPaymentDriver
|
2020-10-22 15:24:18 +02:00
|
|
|
*/
|
|
|
|
public $checkout;
|
|
|
|
|
|
|
|
public function __construct(CheckoutComPaymentDriver $checkout)
|
|
|
|
{
|
|
|
|
$this->checkout = $checkout;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* An authorization view for credit card.
|
2020-10-28 11:10:49 +01:00
|
|
|
*
|
|
|
|
* @param mixed $data
|
|
|
|
* @return Factory|View
|
2020-10-22 15:24:18 +02:00
|
|
|
*/
|
|
|
|
public function authorizeView($data)
|
|
|
|
{
|
|
|
|
return render('gateways.checkout.credit_card.authorize');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checkout.com supports doesn't support direct authorization of the credit card.
|
|
|
|
* Token can be saved after the first (successful) purchase.
|
2020-10-28 11:10:49 +01:00
|
|
|
*
|
|
|
|
* @param mixed $data
|
|
|
|
* @return void
|
2020-10-22 15:24:18 +02:00
|
|
|
*/
|
|
|
|
public function authorizeResponse($data)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function paymentView($data)
|
|
|
|
{
|
|
|
|
$data['gateway'] = $this->checkout;
|
|
|
|
$data['company_gateway'] = $this->checkout->company_gateway;
|
|
|
|
$data['client'] = $this->checkout->client;
|
|
|
|
$data['currency'] = $this->checkout->client->getCurrencyCode();
|
|
|
|
$data['value'] = $this->checkout->convertToCheckoutAmount($data['amount_with_fee'], $this->checkout->client->getCurrencyCode());
|
|
|
|
$data['raw_value'] = $data['amount_with_fee'];
|
|
|
|
$data['customer_email'] = $this->checkout->client->present()->email;
|
|
|
|
|
|
|
|
return render('gateways.checkout.credit_card.pay', $data);
|
|
|
|
}
|
|
|
|
|
2020-10-26 14:53:52 +01:00
|
|
|
public function paymentResponse(PaymentResponseRequest $request)
|
2020-10-22 15:24:18 +02:00
|
|
|
{
|
|
|
|
$this->checkout->init();
|
|
|
|
|
|
|
|
$state = [
|
|
|
|
'server_response' => json_decode($request->gateway_response),
|
|
|
|
'value' => $request->value,
|
|
|
|
'raw_value' => $request->raw_value,
|
|
|
|
'currency' => $request->currency,
|
|
|
|
'payment_hash' => $request->payment_hash,
|
|
|
|
'reference' => $request->payment_hash,
|
2020-12-07 14:50:43 +01:00
|
|
|
'client_id' => $this->checkout->client->id,
|
2020-10-22 15:24:18 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
$state = array_merge($state, $request->all());
|
|
|
|
$state['store_card'] = boolval($state['store_card']);
|
|
|
|
|
2020-10-27 12:53:35 +01:00
|
|
|
$this->checkout->payment_hash->data = array_merge((array) $this->checkout->payment_hash->data, $state);
|
|
|
|
$this->checkout->payment_hash->save();
|
2020-10-22 15:24:18 +02:00
|
|
|
|
2020-11-01 15:56:17 +01:00
|
|
|
if ($request->has('token') && !is_null($request->token) && $request->pay_with_token) {
|
2020-10-26 14:53:52 +01:00
|
|
|
return $this->attemptPaymentUsingToken($request);
|
2020-10-22 15:24:18 +02:00
|
|
|
}
|
|
|
|
|
2020-10-26 14:53:52 +01:00
|
|
|
return $this->attemptPaymentUsingCreditCard($request);
|
2020-10-22 15:24:18 +02:00
|
|
|
}
|
|
|
|
|
2020-10-26 14:53:52 +01:00
|
|
|
private function attemptPaymentUsingToken(PaymentResponseRequest $request)
|
2020-10-22 15:24:18 +02:00
|
|
|
{
|
2020-10-25 18:51:26 +01:00
|
|
|
$method = new IdSource($this->checkout->payment_hash->data->token);
|
2020-10-22 15:24:18 +02:00
|
|
|
|
2020-10-26 14:53:52 +01:00
|
|
|
return $this->completePayment($method, $request);
|
2020-10-22 15:24:18 +02:00
|
|
|
}
|
|
|
|
|
2020-10-26 14:53:52 +01:00
|
|
|
private function attemptPaymentUsingCreditCard(PaymentResponseRequest $request)
|
2020-12-03 15:33:18 +01:00
|
|
|
{
|
2020-10-25 18:51:26 +01:00
|
|
|
$checkout_response = $this->checkout->payment_hash->data->server_response;
|
2020-10-22 15:24:18 +02:00
|
|
|
|
|
|
|
$method = new TokenSource(
|
2020-12-02 15:33:43 +01:00
|
|
|
$checkout_response->token
|
2020-10-22 15:24:18 +02:00
|
|
|
);
|
|
|
|
|
2020-10-26 14:53:52 +01:00
|
|
|
return $this->completePayment($method, $request);
|
2020-10-22 15:24:18 +02:00
|
|
|
}
|
|
|
|
|
2020-10-26 14:53:52 +01:00
|
|
|
private function completePayment($method, PaymentResponseRequest $request)
|
2020-10-22 15:24:18 +02:00
|
|
|
{
|
2020-10-25 18:51:26 +01:00
|
|
|
$payment = new Payment($method, $this->checkout->payment_hash->data->currency);
|
|
|
|
$payment->amount = $this->checkout->payment_hash->data->value;
|
|
|
|
$payment->reference = $this->checkout->payment_hash->data->reference;
|
2020-10-22 15:24:18 +02:00
|
|
|
|
2020-12-07 14:50:43 +01:00
|
|
|
$this->checkout->payment_hash->data = array_merge((array) $this->checkout->payment_hash->data, ['checkout_payment_ref' => $payment]);
|
|
|
|
$this->checkout->payment_hash->save();
|
|
|
|
|
2020-10-26 14:53:52 +01:00
|
|
|
if ($this->checkout->client->currency()->code === 'EUR') {
|
2020-10-22 15:24:18 +02:00
|
|
|
$payment->{'3ds'} = ['enabled' => true];
|
2020-12-07 14:50:43 +01:00
|
|
|
|
|
|
|
$payment->{'success_url'} = route('payment_webhook', [
|
|
|
|
'gateway_key' => $this->checkout->company_gateway->gateway_key,
|
|
|
|
'company_key' => $this->checkout->client->company->company_key,
|
|
|
|
'hash' => $this->checkout->payment_hash->hash,
|
|
|
|
]);
|
2020-10-22 15:24:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
$response = $this->checkout->gateway->payments()->request($payment);
|
|
|
|
|
|
|
|
if ($response->status == 'Authorized') {
|
2020-10-26 14:53:52 +01:00
|
|
|
$this->checkout->confirmGatewayFee($request);
|
|
|
|
|
2020-10-22 15:24:18 +02:00
|
|
|
return $this->processSuccessfulPayment($response);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($response->status == 'Pending') {
|
2020-10-26 14:53:52 +01:00
|
|
|
$this->checkout->confirmGatewayFee($request);
|
|
|
|
|
2020-10-22 15:24:18 +02:00
|
|
|
return $this->processPendingPayment($response);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($response->status == 'Declined') {
|
2020-10-26 14:53:52 +01:00
|
|
|
$this->checkout->unWindGatewayFees($this->checkout->payment_hash);
|
|
|
|
|
2020-10-22 15:24:18 +02:00
|
|
|
return $this->processUnsuccessfulPayment($response);
|
|
|
|
}
|
2020-10-28 11:10:49 +01:00
|
|
|
} catch (CheckoutHttpException $e) {
|
2020-10-26 14:53:52 +01:00
|
|
|
$this->checkout->unWindGatewayFees($this->checkout->payment_hash);
|
2020-10-28 11:10:49 +01:00
|
|
|
|
2020-10-27 13:44:16 +01:00
|
|
|
return $this->checkout->processInternallyFailedPayment($this->checkout, $e);
|
2020-10-22 15:24:18 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|