1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/PaymentDrivers/CheckoutComPaymentDriver.php

467 lines
15 KiB
PHP
Raw Normal View History

2020-06-10 17:38:10 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
2020-06-10 17:38:10 +02:00
*
* @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)
2020-06-10 17:38:10 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2020-06-10 17:38:10 +02:00
*/
namespace App\PaymentDrivers;
2022-09-27 12:01:58 +02:00
use App\Exceptions\PaymentFailed;
2021-01-27 15:58:19 +01:00
use App\Http\Requests\ClientPortal\Payments\PaymentResponseRequest;
use App\Http\Requests\Gateways\Checkout3ds\Checkout3dsRequest;
use App\Http\Requests\Payments\PaymentWebhookRequest;
2021-01-27 15:58:19 +01:00
use App\Jobs\Util\SystemLogger;
2020-06-12 16:23:46 +02:00
use App\Models\ClientGatewayToken;
use App\Models\Company;
2020-06-10 17:38:10 +02:00
use App\Models\GatewayType;
2021-01-27 15:58:19 +01:00
use App\Models\Invoice;
2020-06-15 13:04:05 +02:00
use App\Models\Payment;
2020-09-03 23:23:34 +02:00
use App\Models\PaymentHash;
2021-01-27 15:58:19 +01:00
use App\Models\PaymentType;
use App\Models\SystemLog;
2020-10-28 11:10:49 +01:00
use App\PaymentDrivers\CheckoutCom\CreditCard;
2020-06-10 17:38:10 +02:00
use App\PaymentDrivers\CheckoutCom\Utilities;
use App\Utils\Traits\SystemLogTrait;
2020-06-11 15:13:35 +02:00
use Checkout\CheckoutApi;
2022-06-16 03:21:10 +02:00
use Checkout\CheckoutApiException;
use Checkout\CheckoutArgumentException;
use Checkout\CheckoutAuthorizationException;
2022-06-15 14:47:25 +02:00
use Checkout\CheckoutDefaultSdk;
use Checkout\CheckoutFourSdk;
2022-11-29 13:14:01 +01:00
use Checkout\Common\Phone;
use Checkout\Customers\CustomerRequest;
use Checkout\Customers\Four\CustomerRequest as FourCustomerRequest;
2022-06-15 14:47:25 +02:00
use Checkout\Environment;
2020-10-28 11:10:49 +01:00
use Checkout\Models\Payments\Refund;
2022-06-16 03:21:10 +02:00
use Checkout\Payments\Four\Request\PaymentRequest;
use Checkout\Payments\Four\Request\Source\RequestIdSource as SourceRequestIdSource;
use Checkout\Payments\PaymentRequest as PaymentsPaymentRequest;
use Checkout\Payments\RefundRequest;
use Checkout\Payments\Source\RequestIdSource;
use Exception;
2022-08-12 03:25:10 +02:00
use Illuminate\Support\Facades\Auth;
2020-06-10 17:38:10 +02:00
class CheckoutComPaymentDriver extends BaseDriver
2020-06-10 17:38:10 +02:00
{
use SystemLogTrait, Utilities;
/* The company gateway instance*/
public $company_gateway;
2020-06-11 15:13:35 +02:00
2020-06-10 17:38:10 +02:00
/* The Invitation */
public $invitation;
2020-06-10 17:38:10 +02:00
/* Gateway capabilities */
public $refundable = true;
2020-06-10 17:38:10 +02:00
/* Token billing */
public $token_billing = true;
2020-06-10 17:38:10 +02:00
/* Authorise payment methods */
public $can_authorise_credit_card = true;
2020-06-10 17:38:10 +02:00
2022-06-16 02:01:24 +02:00
public $is_four_api = false;
2020-10-22 15:24:18 +02:00
/**
2020-10-28 11:10:49 +01:00
* @var CheckoutApi;
2020-10-22 15:24:18 +02:00
*/
2020-06-10 17:38:10 +02:00
public $gateway;
2020-10-28 11:10:49 +01:00
/**
* @var
*/
public $payment_method; //the gateway type id
2020-07-03 02:56:36 +02:00
public static $methods = [
2020-10-28 11:10:49 +01:00
GatewayType::CREDIT_CARD => CreditCard::class,
2020-07-03 02:56:36 +02:00
];
const SYSTEM_LOG_TYPE = SystemLog::TYPE_CHECKOUT;
/**
* Returns the default gateway type.
*/
public function gatewayTypes(): array
{
$types = [];
2021-06-30 13:21:46 +02:00
$types[] = GatewayType::CREDIT_CARD;
return $types;
}
2020-10-28 11:10:49 +01:00
/**
2020-09-10 03:05:42 +02:00
* Since with Checkout.com we handle only credit cards, this method should be empty.
2020-10-28 11:10:49 +01:00
* @param int|null $payment_method
* @return CheckoutComPaymentDriver
2020-09-10 03:05:42 +02:00
*/
public function setPaymentMethod($payment_method = null): self
2020-06-10 17:38:10 +02:00
{
2020-10-28 11:10:49 +01:00
// At the moment Checkout.com payment
2020-10-22 15:24:18 +02:00
// driver only supports payments using credit card.
$class = self::$methods[GatewayType::CREDIT_CARD];
$this->payment_method = new $class($this);
2020-06-10 17:38:10 +02:00
return $this;
}
2020-09-10 03:05:42 +02:00
/**
* Initialize the checkout payment driver
* @return $this
*/
2020-10-22 15:24:18 +02:00
public function init()
2020-06-10 17:38:10 +02:00
{
2020-06-15 13:02:44 +02:00
$config = [
2021-01-27 15:58:19 +01:00
'secret' => $this->company_gateway->getConfigField('secretApiKey'),
'public' => $this->company_gateway->getConfigField('publicApiKey'),
2020-06-15 13:02:44 +02:00
'sandbox' => $this->company_gateway->getConfigField('testMode'),
];
2020-06-15 13:27:14 +02:00
if (strlen($config['secret']) <= 38) {
2022-06-16 02:01:24 +02:00
$this->is_four_api = true;
2022-06-15 14:47:25 +02:00
$builder = CheckoutFourSdk::staticKeys();
$builder->setPublicKey($config['public']); // optional, only required for operations related with tokens
$builder->setSecretKey($config['secret']);
$builder->setEnvironment($config['sandbox'] ? Environment::sandbox() : Environment::production());
2022-06-15 14:47:25 +02:00
$this->gateway = $builder->build();
} else {
2022-06-15 14:47:25 +02:00
$builder = CheckoutDefaultSdk::staticKeys();
$builder->setPublicKey($config['public']); // optional, only required for operations related with tokens
$builder->setSecretKey($config['secret']);
$builder->setEnvironment($config['sandbox'] ? Environment::sandbox() : Environment::production());
2022-06-15 14:47:25 +02:00
$this->gateway = $builder->build();
}
2020-09-10 03:05:42 +02:00
return $this;
2020-06-10 17:38:10 +02:00
}
2020-09-10 03:05:42 +02:00
/**
* Process different view depending on payment type
2021-01-27 15:58:19 +01:00
* @param int $gateway_type_id The gateway type
2020-09-10 03:05:42 +02:00
* @return string The view string
*/
2020-06-10 17:38:10 +02:00
public function viewForType($gateway_type_id)
{
2020-10-22 15:24:18 +02:00
return 'gateways.checkout.credit_card.pay';
2020-06-10 17:38:10 +02:00
}
2020-07-03 14:39:29 +02:00
public function authorizeView($data)
{
2020-10-22 15:24:18 +02:00
return $this->payment_method->authorizeView($data);
}
public function authorizeResponse($data)
{
return $this->payment_method->authorizeResponse($data);
2020-07-03 14:39:29 +02:00
}
2020-09-10 03:05:42 +02:00
/**
* Payment View
2020-10-28 11:10:49 +01:00
*
2021-01-27 15:58:19 +01:00
* @param array $data Payment data array
2020-09-10 03:05:42 +02:00
* @return view The payment view
*/
2020-06-10 17:38:10 +02:00
public function processPaymentView(array $data)
{
2020-10-22 15:24:18 +02:00
return $this->payment_method->paymentView($data);
2020-06-10 17:38:10 +02:00
}
2020-09-10 03:05:42 +02:00
/**
* Process the payment response
2020-10-28 11:10:49 +01:00
*
2021-01-27 15:58:19 +01:00
* @param Request $request The payment request
2020-09-10 03:05:42 +02:00
* @return view The payment response view
*/
2020-06-10 17:38:10 +02:00
public function processPaymentResponse($request)
{
2020-10-22 15:24:18 +02:00
return $this->payment_method->paymentResponse($request);
2020-06-11 15:13:35 +02:00
}
2020-10-26 14:40:50 +01:00
public function storePaymentMethod(array $data)
2020-06-12 16:23:46 +02:00
{
2020-10-26 14:40:50 +01:00
return $this->storeGatewayToken($data);
2020-06-12 16:23:46 +02:00
}
2020-06-24 16:29:01 +02:00
public function refund(Payment $payment, $amount, $return_client_response = false)
2020-06-24 16:29:01 +02:00
{
$this->init();
2022-06-16 03:21:10 +02:00
$request = new RefundRequest();
$request->reference = "{$payment->transaction_reference} ".now();
2022-06-16 03:21:10 +02:00
$request->amount = $this->convertToCheckoutAmount($amount, $this->client->getCurrencyCode());
2020-06-24 16:29:01 +02:00
try {
2022-06-16 03:21:10 +02:00
// or, refundPayment("payment_id") for a full refund
$response = $this->gateway->getPaymentsClient()->refundPayment($payment->transaction_reference, $request);
return [
2022-06-16 03:21:10 +02:00
'transaction_reference' => $response['action_id'],
'transaction_response' => json_encode($response),
2022-06-16 03:21:10 +02:00
'success' => true,
'description' => $response['reference'],
'code' => 202,
];
2022-06-16 03:21:10 +02:00
} catch (CheckoutApiException $e) {
// API error
2022-09-27 12:01:58 +02:00
throw new PaymentFailed($e->getMessage(), $e->getCode());
2022-06-16 03:21:10 +02:00
} catch (CheckoutArgumentException $e) {
// Bad arguments
2022-09-27 12:01:58 +02:00
throw new PaymentFailed($e->getMessage(), $e->getCode());
return [
'transaction_reference' => null,
'transaction_response' => json_encode($e->getMessage()),
'success' => false,
'description' => $e->getMessage(),
'code' => $e->getCode(),
];
2022-06-16 03:21:10 +02:00
} catch (CheckoutAuthorizationException $e) {
// Bad Invalid authorization
2022-09-27 12:01:58 +02:00
throw new PaymentFailed($e->getMessage(), $e->getCode());
return [
'transaction_reference' => null,
'transaction_response' => json_encode($e->getMessage()),
'success' => false,
'description' => $e->getMessage(),
'code' => $e->getCode(),
];
}
2022-06-16 03:21:10 +02:00
}
public function getCustomer()
{
try {
$response = $this->gateway->getCustomersClient()->get($this->client->present()->email());
2022-06-16 03:21:10 +02:00
return $response;
} catch (\Exception $e) {
if ($this->is_four_api) {
$request = new FourCustomerRequest();
2023-02-16 02:36:09 +01:00
} else {
$request = new CustomerRequest();
}
2023-02-16 02:36:09 +01:00
$phone = new Phone();
// $phone->number = $this->client->present()->phone();
$phone->number = substr(str_pad($this->client->present()->phone(), 6, "0", STR_PAD_RIGHT), 0, 24);
$request->email = $this->client->present()->email();
$request->name = $this->client->present()->name();
$request->phone = $phone;
try {
$response = $this->gateway->getCustomersClient()->create($request);
} catch (CheckoutApiException $e) {
// API error
$request_id = $e->request_id;
$http_status_code = $e->http_status_code;
$error_details = $e->error_details;
2023-02-16 02:36:09 +01:00
if (is_array($error_details)) {
$error_details = end($e->error_details['error_codes']);
}
2023-02-16 02:36:09 +01:00
$human_exception = $error_details ? new \Exception($error_details, 400) : $e;
2023-02-16 02:36:09 +01:00
throw new PaymentFailed($human_exception);
} catch (CheckoutArgumentException $e) {
// Bad arguments
2023-02-16 02:36:09 +01:00
$error_details = $e->error_details;
2023-02-16 02:36:09 +01:00
if (is_array($error_details)) {
$error_details = end($e->error_details['error_codes']);
}
2023-02-16 02:36:09 +01:00
$human_exception = $error_details ? new \Exception($error_details, 400) : $e;
2023-02-16 02:36:09 +01:00
throw new PaymentFailed($human_exception);
} catch (CheckoutAuthorizationException $e) {
// Bad Invalid authorization
2023-02-16 02:36:09 +01:00
$error_details = $e->error_details;
2023-02-16 02:36:09 +01:00
if (is_array($error_details)) {
$error_details = end($e->error_details['error_codes']);
}
2023-02-16 02:36:09 +01:00
$human_exception = $error_details ? new \Exception($error_details, 400) : $e;
2023-02-16 02:36:09 +01:00
throw new PaymentFailed($human_exception);
}
2023-02-16 02:36:09 +01:00
// catch (\Exception $e) {
// // API error
// throw new PaymentFailed($e->getMessage(), $e->getCode());
2023-02-16 02:36:09 +01:00
// }
return $response;
2022-06-16 03:21:10 +02:00
}
}
public function bootTokenRequest($token)
{
if ($this->is_four_api) {
2022-06-16 03:21:10 +02:00
$token_source = new SourceRequestIdSource();
$token_source->id = $token;
$request = new PaymentRequest();
$request->source = $token_source;
} else {
2022-06-16 03:21:10 +02:00
$token_source = new RequestIdSource();
$token_source->id = $token;
$request = new PaymentsPaymentRequest();
$request->source = $token_source;
}
return $request;
2020-06-24 16:29:01 +02:00
}
2020-07-08 04:20:44 +02:00
public function tokenBilling(ClientGatewayToken $cgt, PaymentHash $payment_hash)
{
2021-01-27 15:58:19 +01:00
$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();
2021-01-27 15:58:19 +01:00
$this->init();
2022-06-16 03:21:10 +02:00
$paymentRequest = $this->bootTokenRequest($cgt->token);
$paymentRequest->amount = $this->convertToCheckoutAmount($amount, $this->client->getCurrencyCode());
$paymentRequest->reference = '#'.$invoice->number.' - '.now();
2022-06-16 03:21:10 +02:00
$paymentRequest->customer = $this->getCustomer();
$paymentRequest->metadata = ['udf1' => 'Invoice Ninja'];
2022-06-16 03:21:10 +02:00
$paymentRequest->currency = $this->client->getCurrencyCode();
2021-01-27 15:58:19 +01:00
$request = new PaymentResponseRequest();
$request->setMethod('POST');
2021-01-28 16:13:32 +01:00
$request->request->add(['payment_hash' => $payment_hash->hash]);
2021-01-27 15:58:19 +01:00
try {
2022-06-16 03:21:10 +02:00
// $response = $this->gateway->payments()->request($payment);
$response = $this->gateway->getPaymentsClient()->requestPayment($paymentRequest);
2021-01-27 15:58:19 +01:00
2022-06-16 03:21:10 +02:00
if ($response['status'] == 'Authorized') {
2021-01-27 15:58:19 +01:00
$this->confirmGatewayFee($request);
2021-01-28 16:13:32 +01:00
$data = [
2022-06-16 03:21:10 +02:00
'payment_method' => $response['source']['id'],
'payment_type' => PaymentType::parseCardType(strtolower($response['source']['scheme'])),
2021-01-28 16:13:32 +01:00
'amount' => $amount,
2022-06-16 03:21:10 +02:00
'transaction_reference' => $response['id'],
2021-01-28 16:13:32 +01:00
];
$payment = $this->createPayment($data, Payment::STATUS_COMPLETED);
2021-01-28 16:13:32 +01:00
SystemLogger::dispatch(
['response' => $response, 'data' => $data],
SystemLog::CATEGORY_GATEWAY_RESPONSE,
SystemLog::EVENT_GATEWAY_SUCCESS,
SystemLog::TYPE_CHECKOUT,
$this->client
);
return $payment;
2021-01-27 15:58:19 +01:00
}
2022-06-16 03:21:10 +02:00
if ($response['status'] == 'Declined') {
2021-01-27 15:58:19 +01:00
$this->unWindGatewayFees($payment_hash);
$this->sendFailureMail($response['status'].' '.$response['response_summary']);
2021-01-27 15:58:19 +01:00
2021-01-28 16:13:32 +01:00
$message = [
'server_response' => $response,
'data' => $payment_hash->data,
];
SystemLogger::dispatch(
$message,
SystemLog::CATEGORY_GATEWAY_RESPONSE,
SystemLog::EVENT_GATEWAY_FAILURE,
SystemLog::TYPE_CHECKOUT,
$this->client
);
2021-01-27 15:58:19 +01:00
return false;
}
2022-06-16 03:21:10 +02:00
} catch (Exception | CheckoutApiException $e) {
2021-01-27 15:58:19 +01:00
$this->unWindGatewayFees($payment_hash);
2022-06-16 03:21:10 +02:00
$message = $e->getMessage();
2021-01-28 16:13:32 +01:00
$error_details = '';
2023-02-16 02:36:09 +01:00
if (property_exists($e, 'error_details')) {
$error_details = $e->error_details;
2023-02-16 02:36:09 +01:00
}
2021-01-28 16:13:32 +01:00
$data = [
'status' => $e->error_details,
2021-01-28 16:13:32 +01:00
'error_type' => '',
'error_code' => $e->getCode(),
'param' => '',
'message' => $message,
];
2021-01-27 15:58:19 +01:00
2021-10-17 12:40:40 +02:00
$this->sendFailureMail($message);
SystemLogger::dispatch(
$data,
SystemLog::CATEGORY_GATEWAY_RESPONSE,
SystemLog::EVENT_GATEWAY_FAILURE,
SystemLog::TYPE_CHECKOUT,
$this->client,
2021-10-17 12:40:40 +02:00
$this->client->company
);
2021-01-27 15:58:19 +01:00
}
}
2021-08-04 16:24:44 +02:00
public function processWebhookRequest(PaymentWebhookRequest $request)
{
return true;
}
public function process3dsConfirmation(Checkout3dsRequest $request)
{
$this->init();
$this->setPaymentHash($request->getPaymentHash());
//11-08-2022 check the user is authenticated
2022-08-12 03:25:10 +02:00
if (!Auth::guard('contact')->check()) {
$client = $request->getClient();
auth()->guard('contact')->loginUsingId($client->contacts()->first()->id, true);
}
try {
2022-06-16 03:21:10 +02:00
$payment = $this->gateway->getPaymentsClient()->getPaymentDetails(
$request->query('cko-session-id')
);
if (isset($payment['approved']) && $payment['approved']) {
return $this->processSuccessfulPayment($payment);
} else {
return $this->processUnsuccessfulPayment($payment);
}
2022-06-16 03:21:10 +02:00
} catch (CheckoutApiException | Exception $e) {
nlog("checkout");
nlog($e->getMessage());
return $this->processInternallyFailedPayment($this, $e);
}
}
public function detach(ClientGatewayToken $clientGatewayToken)
{
// Gateway doesn't support this feature.
}
2020-06-10 17:38:10 +02:00
}