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

504 lines
16 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;
2023-09-12 02:27:30 +02:00
use App\PaymentDrivers\CheckoutCom\CheckoutWebhook;
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;
2022-06-16 03:21:10 +02:00
use Checkout\CheckoutApiException;
use Checkout\CheckoutArgumentException;
use Checkout\CheckoutAuthorizationException;
2023-09-12 02:27:30 +02:00
use Checkout\CheckoutSdk;
2022-11-29 13:14:01 +01:00
use Checkout\Common\Phone;
use Checkout\Customers\CustomerRequest;
2022-06-15 14:47:25 +02:00
use Checkout\Environment;
2023-09-12 02:27:30 +02:00
use Checkout\Payments\Previous\PaymentRequest as PreviousPaymentRequest;
use Checkout\Payments\Previous\Source\RequestIdSource as SourceRequestIdSource;
2022-06-16 03:21:10 +02:00
use Checkout\Payments\RefundRequest;
2023-09-12 02:27:30 +02:00
use Checkout\Payments\Request\PaymentRequest;
use Checkout\Payments\Request\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
2023-09-12 02:27:30 +02:00
//use Checkout\Customers\Four\CustomerRequest as FourCustomerRequest;
//use Checkout\Payments\Four\Request\Source\RequestIdSource as SourceRequestIdSource;
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
/**
2023-09-12 02:27:30 +02:00
* @var CheckoutSdk;
2020-10-22 15:24:18 +02:00
*/
2020-06-10 17:38:10 +02:00
public $gateway;
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
{
2023-09-12 02:27:30 +02:00
if (str_contains($this->company_gateway->getConfigField('secretApiKey'), '-')) {
$this->is_four_api = true; //was four api, now known as previous.
2023-09-26 15:04:31 +02:00
/** @phpstan-ignore-next-line **/
2023-09-12 02:27:30 +02:00
$builder = CheckoutSdk::builder()
->previous()
2023-09-26 15:04:31 +02:00
->environment($this->company_gateway->getConfigField('testMode') ? Environment::sandbox() : Environment::production()) /** phpstan-ignore-line **/
2023-09-12 02:27:30 +02:00
->staticKeys()
->publicKey($this->company_gateway->getConfigField('publicApiKey'))
->secretKey($this->company_gateway->getConfigField('secretApiKey'));
2022-06-15 14:47:25 +02:00
$this->gateway = $builder->build();
2023-09-12 02:27:30 +02:00
} else {
2023-09-26 15:04:31 +02:00
/** @phpstan-ignore-next-line **/
$builder = CheckoutSdk::builder()
->environment($this->company_gateway->getConfigField('testMode') ? Environment::sandbox() : Environment::production()) /** phpstan-ignore-line **/
->staticKeys()
2023-09-12 02:27:30 +02:00
->publicKey($this->company_gateway->getConfigField('publicApiKey'))
2023-09-26 15:04:31 +02:00
->secretKey($this->company_gateway->getConfigField('secretApiKey'));
2023-09-12 02:27:30 +02:00
2022-06-15 14:47:25 +02:00
$this->gateway = $builder->build();
2020-09-10 03:05:42 +02:00
2023-09-12 02:27:30 +02:00
}
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
2023-09-12 02:27:30 +02:00
*
2021-01-27 15:58:19 +01:00
* @param int $gateway_type_id The gateway type
2023-09-12 02:27:30 +02:00
* @return string The view string
2020-09-10 03:05:42 +02:00
*/
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
}
2023-09-12 02:27:30 +02:00
/**
* Authorize View
*
* @param array $data
* @return \Illuminate\View\View
*/
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);
}
2023-09-12 02:27:30 +02:00
/**
* Authorize Response
*
* @param array $data
* @return \Illuminate\View\View
*/
2020-10-22 15:24:18 +02:00
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
2023-09-12 02:27:30 +02:00
* @return \Illuminate\View\View
2020-09-10 03:05:42 +02:00
*/
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
*
2023-08-06 04:20:18 +02:00
* @param \Illuminate\Http\Request $request The payment request
2023-09-12 02:27:30 +02:00
* @return \Illuminate\View\View
2020-09-10 03:05:42 +02:00
*/
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
}
2023-09-12 02:27:30 +02:00
/**
* Store PaymentMethod
*
* @param array $data
* @return ?ClientGatewayToken $token
*/
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 {
2023-09-12 02:27:30 +02:00
2022-06-16 03:21:10 +02:00
$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
2023-09-12 02:27:30 +02:00
// throw new PaymentFailed($e->getMessage(), $e->getCode());
2022-09-27 12:01:58 +02:00
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) {
2023-09-12 02:27:30 +02:00
// throw new PaymentFailed("The was a problem with the Checkout Gateway Credentials.", $e->getCode());
2022-09-27 12:01:58 +02:00
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) {
2023-09-12 02:27:30 +02:00
$request = new CustomerRequest();
2023-02-16 02:36:09 +01:00
$phone = new 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;
2023-09-26 15:04:31 +02:00
// if($this->company_gateway->update_details)
// $this->updateCustomer();
2023-02-16 02:36:09 +01:00
try {
$response = $this->gateway->getCustomersClient()->create($request);
} catch (CheckoutApiException $e) {
// API error
$error_details = $e->error_details;
2023-09-12 02:27:30 +02:00
if (isset($error_details['error_codes']) ?? false) {
2023-02-16 02:36:09 +01:00
$error_details = end($e->error_details['error_codes']);
2023-09-12 02:27:30 +02:00
} else {
$error_details = $e->getMessage();
2023-02-16 02:36:09 +01:00
}
2023-09-12 02:27:30 +02:00
throw new PaymentFailed($error_details, 400);
2023-02-16 02:36:09 +01:00
} catch (CheckoutArgumentException $e) {
2023-09-12 02:27:30 +02:00
throw new PaymentFailed($e->getMessage(), $e->getCode());
2023-02-16 02:36:09 +01:00
} catch (CheckoutAuthorizationException $e) {
// Bad Invalid authorization
2023-09-12 02:27:30 +02:00
throw new PaymentFailed("Checkout Gateway credentials are invalid", 400);
2023-02-16 02:36:09 +01:00
}
return $response;
2022-06-16 03:21:10 +02:00
}
}
2023-09-12 02:27:30 +02:00
2023-09-26 15:04:31 +02:00
public function updateCustomer()
{
$phone = new Phone();
$phone->number = substr(str_pad($this->client->present()->phone(), 6, "0", STR_PAD_RIGHT), 0, 24);
$request = new CustomerRequest();
$request->email = $this->client->present()->email();
$request->name = $this->client->present()->name();
$request->phone = $phone;
try {
$response = $this->gateway->getCustomersClient()->update("customer_id", $request);
} catch (CheckoutApiException $e) {
} catch (CheckoutAuthorizationException $e) {
}
}
2023-09-12 02:27:30 +02:00
/**
* Boots a request for a token payment
*
* @param string $token
* @return PreviousPaymentRequest | PaymentRequest
*/
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;
2023-09-12 02:27:30 +02:00
$request = new PreviousPaymentRequest();
2022-06-16 03:21:10 +02:00
$request->source = $token_source;
} else {
2022-06-16 03:21:10 +02:00
$token_source = new RequestIdSource();
$token_source->id = $token;
2023-09-12 02:27:30 +02:00
$request = new PaymentRequest();
2022-06-16 03:21:10 +02:00
$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;
2023-08-06 09:03:12 +02:00
$invoice = Invoice::query()->whereIn('id', $this->transformKeys(array_column($payment_hash->invoices(), 'invoice_id')))->withTrashed()->first();
2023-09-12 02:27:30 +02:00
$this->client = $invoice->client;
$this->payment_hash = $payment_hash;
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();
2023-07-21 07:48:10 +02:00
$paymentRequest->metadata = ['udf1' => 'Invoice Ninja', 'udf2' => $payment_hash->hash];
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->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;
}
2023-09-12 02:27:30 +02:00
} catch (CheckoutApiException $e) {
2021-01-27 15:58:19 +01:00
$this->unWindGatewayFees($payment_hash);
2021-01-28 16:13:32 +01:00
2023-09-12 02:27:30 +02:00
$error_details = $e->error_details;
2023-09-12 02:27:30 +02:00
if (isset($error_details['error_codes']) ?? false) {
$error_details = end($e->error_details['error_codes']);
} else {
$error_details = $e->getMessage();
2023-02-16 02:36:09 +01:00
}
2023-09-12 02:27:30 +02: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' => '',
2023-09-12 02:27:30 +02:00
'message' => $e->getMessage(),
2021-01-28 16:13:32 +01:00
];
2021-01-27 15:58:19 +01:00
2023-09-12 02:27:30 +02:00
$this->sendFailureMail($e->getMessage());
2021-10-17 12:40:40 +02:00
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)
{
2023-07-21 13:01:22 +02:00
header('Content-Type: text/plain');
$webhook_payload = file_get_contents('php://input');
if($request->header('cko-signature') == hash_hmac('sha256', $webhook_payload, $this->company_gateway->company->company_key)) {
CheckoutWebhook::dispatch($request->all(), $request->company_key, $this->company_gateway->id)->delay(10);
2023-09-12 02:27:30 +02:00
} else {
2023-07-21 13:01:22 +02:00
nlog("Hash Mismatch = {$request->header('cko-signature')} ".hash_hmac('sha256', $webhook_payload, $this->company_gateway->company->company_key));
nlog($request->all());
}
return response()->json(['success' => 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();
$this->client = $client;
2022-08-12 03:25:10 +02:00
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')
);
2023-07-18 03:42:36 +02:00
nlog("checkout3ds");
nlog($payment);
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
}