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

236 lines
6.8 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
*
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\PaymentDrivers;
use App\Http\Requests\Payments\PaymentWebhookRequest;
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;
2020-06-15 13:04:05 +02:00
use App\Models\Payment;
2020-09-03 23:23:34 +02:00
use App\Models\PaymentHash;
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;
use Checkout\Library\Exceptions\CheckoutHttpException;
2020-10-28 11:10:49 +01:00
use Checkout\Models\Payments\Refund;
use Exception;
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
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()
{
return [
GatewayType::CREDIT_CARD,
];
}
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
*/
2020-10-28 11:10:49 +01:00
public function setPaymentMethod($payment_method = null): CheckoutComPaymentDriver
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 = [
'secret' => $this->company_gateway->getConfigField('secretApiKey'),
'public' => $this->company_gateway->getConfigField('publicApiKey'),
'sandbox' => $this->company_gateway->getConfigField('testMode'),
];
2020-06-15 13:27:14 +02:00
2020-06-15 13:02:44 +02:00
$this->gateway = new CheckoutApi($config['secret'], $config['sandbox'], $config['public']);
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
* @param int $gateway_type_id The gateway type
* @return string The view string
*/
2020-06-10 17:38:10 +02:00
public function viewForType($gateway_type_id)
{
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.
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)
{
if (count($this->required_fields) > 0) {
return redirect()
->route('client.profile.edit', ['client_contact' => auth()->user()->hashed_id])
->with('missing_required_fields', $this->required_fields);
}
2020-10-22 15:24:18 +02:00
return $this->payment_method->authorizeView($data);
}
public function authorizeResponse($data)
{
if (count($this->required_fields) > 0) {
return redirect()
->route('client.profile.edit', ['client_contact' => auth()->user()->hashed_id])
->with('missing_required_fields', $this->required_fields);
}
2020-10-22 15:24:18 +02:00
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
*
2020-09-10 03:05:42 +02:00
* @param array $data Payment data array
* @return view The payment view
*/
2020-06-10 17:38:10 +02:00
public function processPaymentView(array $data)
{
if (count($this->required_fields) > 0) {
return redirect()
->route('client.profile.edit', ['client_contact' => auth()->user()->hashed_id])
->with('missing_required_fields', $this->required_fields);
}
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
*
2020-09-10 03:05:42 +02:00
* @param Request $request The payment request
* @return view The payment response view
*/
2020-06-10 17:38:10 +02:00
public function processPaymentResponse($request)
{
if (count($this->required_fields) > 0) {
return redirect()
->route('client.profile.edit', ['client_contact' => auth()->user()->hashed_id])
->with('missing_required_fields', $this->required_fields);
}
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();
2020-10-28 11:10:49 +01:00
$checkout_payment = new Refund($payment->transaction_reference);
2020-06-24 16:29:01 +02:00
try {
$refund = $this->gateway->payments()->refund($checkout_payment);
$checkout_payment = $this->gateway->payments()->details($refund->id);
$response = ['refund_response' => $refund, 'checkout_payment_fetch' => $checkout_payment];
return [
'transaction_reference' => $refund->action_id,
'transaction_response' => json_encode($response),
'success' => $checkout_payment->status == 'Refunded',
'description' => $checkout_payment->status,
'code' => $checkout_payment->http_code,
];
2020-06-24 16:29:01 +02:00
} catch (CheckoutHttpException $e) {
return [
'transaction_reference' => null,
'transaction_response' => json_encode($e->getMessage()),
'success' => false,
'description' => $e->getMessage(),
'code' => $e->getCode(),
];
2020-06-24 16:29:01 +02:00
}
}
2020-07-08 04:20:44 +02:00
public function tokenBilling(ClientGatewayToken $cgt, PaymentHash $payment_hash)
{
// ..
}
public function processWebhookRequest(PaymentWebhookRequest $request, Payment $payment = null)
{
$this->init();
$this->setPaymentHash($request->getPaymentHash());
try {
$payment = $this->gateway->payments()->details($request->query('cko-session-id'));
if ($payment->approved) {
return $this->processSuccessfulPayment($payment);
} else {
return $this->processUnsuccessfulPayment($payment);
}
} catch (CheckoutHttpException | Exception $e) {
return $this->processInternallyFailedPayment($this, $e);
}
}
2020-06-10 17:38:10 +02:00
}