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

79 lines
1.5 KiB
PHP
Raw Normal View History

2020-08-20 00:11:46 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
2020-08-20 00:11:46 +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\Models\ClientGatewayToken;
use App\Models\GatewayType;
use App\Models\Payment;
/**
* Class CustomPaymentDriver.
2020-08-20 00:11:46 +02:00
*/
class CustomPaymentDriver extends BaseDriver
{
public $token_billing = false;
public $can_authorise_credit_card = false;
2020-08-20 00:11:46 +02:00
/**
* Returns the gateway types.
2020-08-20 00:11:46 +02:00
*/
public function gatewayTypes() :array
{
$types = [
GatewayType::CREDIT_CARD,
];
return $types;
}
public function authorize($payment_method)
{
}
public function purchase($amount, $return_client_response = false)
{
}
2020-08-20 00:11:46 +02:00
public function refund(Payment $payment, $amount, $return_client_response = false)
{
}
2020-08-20 00:11:46 +02:00
public function setPaymentMethod($payment_method_id)
{
$this->payment_method = $payment_method_id;
return $this;
}
public function processPaymentView($data)
{
return render('gateways.custom.landing_page', $data);
}
public function processPaymentResponse($request)
{
}
/**
* Detach payment method from custom payment driver.
2020-10-28 11:10:49 +01:00
*
* @param ClientGatewayToken $token
* @return void
*/
public function detach(ClientGatewayToken $token)
{
// Driver doesn't support this feature.
}
2020-08-20 00:11:46 +02:00
}