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

150 lines
4.0 KiB
PHP
Raw Normal View History

2020-06-09 13:17:26 +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;
2020-06-10 03:06:37 +02:00
use App\Models\ClientGatewayToken;
2020-06-10 10:05:30 +02:00
use App\Models\GatewayType;
2020-07-14 00:06:28 +02:00
use App\Models\Invoice;
2020-06-24 03:15:51 +02:00
use App\Models\Payment;
2020-06-10 03:06:37 +02:00
use App\PaymentDrivers\Authorize\AuthorizeCreditCard;
2020-06-10 10:05:30 +02:00
use App\PaymentDrivers\Authorize\AuthorizePaymentMethod;
2020-07-08 08:54:16 +02:00
use App\PaymentDrivers\Authorize\ChargePaymentProfile;
2020-06-24 07:20:33 +02:00
use App\PaymentDrivers\Authorize\RefundTransaction;
2020-06-09 13:17:26 +02:00
use net\authorize\api\constants\ANetEnvironment;
use net\authorize\api\contract\v1\CreateTransactionRequest;
2020-06-09 13:53:23 +02:00
use net\authorize\api\contract\v1\GetMerchantDetailsRequest;
2020-06-09 13:17:26 +02:00
use net\authorize\api\contract\v1\MerchantAuthenticationType;
use net\authorize\api\controller\CreateTransactionController;
2020-06-09 13:53:23 +02:00
use net\authorize\api\controller\GetMerchantDetailsController;
2020-06-09 13:17:26 +02:00
/**
* Class BaseDriver
* @package App\PaymentDrivers
*
*/
class AuthorizePaymentDriver extends BaseDriver
{
2020-06-09 13:53:23 +02:00
public $merchant_authentication;
2020-06-09 13:17:26 +02:00
2020-06-16 02:21:40 +02:00
public static $methods = [
GatewayType::CREDIT_CARD => AuthorizeCreditCard::class,
];
public function setPaymentMethod($payment_method_id)
{
2020-06-16 02:21:40 +02:00
$class = self::$methods[$payment_method_id];
2020-06-16 02:21:40 +02:00
$this->payment_method = new $class($this);
return $this;
2020-06-16 02:21:40 +02:00
}
2020-06-10 10:05:30 +02:00
/**
* Returns the gateway types
*/
public function gatewayTypes() :array
{
$types = [
GatewayType::CREDIT_CARD,
];
return $types;
}
2020-06-10 10:11:53 +02:00
2020-06-09 13:17:26 +02:00
public function init()
{
2020-06-09 13:53:23 +02:00
error_reporting (E_ALL & ~E_DEPRECATED);
2020-06-09 13:17:26 +02:00
2020-06-09 13:53:23 +02:00
$this->merchant_authentication = new MerchantAuthenticationType();
$this->merchant_authentication->setName($this->company_gateway->getConfigField('apiLoginId'));
$this->merchant_authentication->setTransactionKey($this->company_gateway->getConfigField('transactionKey'));
2020-06-09 13:17:26 +02:00
2020-06-09 13:53:23 +02:00
return $this;
}
2020-06-09 13:17:26 +02:00
2020-06-09 13:53:23 +02:00
public function getPublicClientKey()
{
$request = new GetMerchantDetailsRequest();
$request->setMerchantAuthentication($this->merchant_authentication);
$controller = new GetMerchantDetailsController($request);
$response = $controller->executeWithApiResponse($this->mode());
return $response->getPublicClientKey();
2020-06-09 13:17:26 +02:00
}
2020-06-10 10:11:53 +02:00
public function mode()
2020-06-09 13:17:26 +02:00
{
if($this->company_gateway->getConfigField('testMode'))
2020-06-09 13:53:23 +02:00
return ANetEnvironment::SANDBOX;
return $env = ANetEnvironment::PRODUCTION;
2020-06-09 13:17:26 +02:00
2020-06-09 13:53:23 +02:00
}
2020-06-10 03:06:37 +02:00
public function authorizeView($payment_method)
2020-06-09 13:53:23 +02:00
{
2020-06-10 03:06:37 +02:00
return (new AuthorizePaymentMethod($this))->authorizeView($payment_method);
}
2020-06-10 10:05:30 +02:00
public function authorizeResponseView(array $data)
2020-06-10 03:06:37 +02:00
{
return (new AuthorizePaymentMethod($this))->authorizeResponseView($data);
2020-06-09 13:17:26 +02:00
}
2020-06-10 03:06:37 +02:00
public function authorize($payment_method)
{
return $this->authorizeView($payment_method);
2020-06-10 03:06:37 +02:00
}
2020-06-09 13:17:26 +02:00
2020-06-15 13:42:46 +02:00
public function processPaymentView($data)
{
return $this->payment_method->processPaymentView($data);
2020-06-15 13:42:46 +02:00
}
public function processPaymentResponse($request)
{
return $this->payment_method->processPaymentResponse($request);
2020-06-15 13:42:46 +02:00
}
2020-06-12 02:19:26 +02:00
public function purchase($amount, $return_client_response = false)
2020-06-10 03:06:37 +02:00
{
2020-06-15 13:42:46 +02:00
return false;
2020-06-10 03:06:37 +02:00
}
2020-06-09 13:17:26 +02:00
2020-06-24 03:15:51 +02:00
public function refund(Payment $payment, $refund_amount, $return_client_response = false)
2020-06-10 03:06:37 +02:00
{
2020-06-24 07:20:33 +02:00
return (new RefundTransaction($this))->refundTransaction($payment, $refund_amount);
2020-06-10 03:06:37 +02:00
}
2020-06-10 10:11:53 +02:00
public function findClientGatewayRecord() :?ClientGatewayToken
2020-06-10 03:06:37 +02:00
{
return ClientGatewayToken::where('client_id', $this->client->id)
->where('company_gateway_id', $this->company_gateway->id)
->first();
}
2020-07-08 04:20:44 +02:00
2020-07-08 08:54:16 +02:00
public function tokenBilling(ClientGatewayToken $cgt, float $amount, ?Invoice $invoice = null)
{
$this->setPaymentMethod($cgt->gateway_type_id);
$this->payment_method->tokenBilling($cgt, $amount, $invoice);
}
2020-07-08 04:20:44 +02:00
2020-06-09 13:17:26 +02:00
}