2024-09-06 06:26:13 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\PaymentDrivers;
|
|
|
|
|
|
|
|
use App\Models\Invoice;
|
|
|
|
use App\Models\Payment;
|
|
|
|
use App\Models\SystemLog;
|
|
|
|
use App\Utils\HtmlEngine;
|
2024-09-06 07:15:33 +02:00
|
|
|
use App\Models\GatewayType;
|
|
|
|
use App\Models\PaymentHash;
|
|
|
|
use App\Models\PaymentType;
|
|
|
|
use App\Jobs\Util\SystemLogger;
|
2024-09-06 06:26:13 +02:00
|
|
|
use App\Utils\Traits\MakesHash;
|
2024-09-06 07:15:33 +02:00
|
|
|
use App\Models\ClientGatewayToken;
|
|
|
|
use App\PaymentDrivers\CBAPowerBoard\CreditCard;
|
2024-09-06 06:26:13 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class CBAPowerBoardPaymentDriver.
|
|
|
|
*/
|
|
|
|
class CBAPowerBoardPaymentDriver extends BaseDriver
|
|
|
|
{
|
|
|
|
use MakesHash;
|
|
|
|
|
|
|
|
public $token_billing = true;
|
|
|
|
|
|
|
|
public $can_authorise_credit_card = false;
|
|
|
|
|
|
|
|
public $refundable = true;
|
|
|
|
|
2024-09-06 11:15:08 +02:00
|
|
|
public string $api_endpoint = 'https://api.powerboard.commbank.com.au';
|
2024-09-06 07:15:33 +02:00
|
|
|
|
2024-09-06 10:31:00 +02:00
|
|
|
public string $widget_endpoint = 'https://widget.powerboard.commbank.com.au/sdk/latest/widget.umd.min.js';
|
|
|
|
|
|
|
|
public string $environment = 'production_cba';
|
2024-09-06 06:34:54 +02:00
|
|
|
|
2024-09-06 07:15:33 +02:00
|
|
|
public static $methods = [
|
|
|
|
GatewayType::CREDIT_CARD => CreditCard::class,
|
|
|
|
];
|
2024-09-06 06:26:13 +02:00
|
|
|
/**
|
|
|
|
* Returns the gateway types.
|
|
|
|
*/
|
|
|
|
public function gatewayTypes(): array
|
|
|
|
{
|
|
|
|
$types = [
|
|
|
|
GatewayType::CREDIT_CARD,
|
|
|
|
];
|
|
|
|
|
|
|
|
return $types;
|
|
|
|
}
|
|
|
|
|
2024-09-06 07:15:33 +02:00
|
|
|
public function init(): self
|
2024-09-06 06:26:13 +02:00
|
|
|
{
|
2024-09-06 07:15:33 +02:00
|
|
|
if($this->company_gateway->getConfigField('testMode')) {
|
|
|
|
$this->widget_endpoint = 'https://widget.preproduction.powerboard.commbank.com.au/sdk/latest/widget.umd.min.js';
|
2024-09-06 11:15:08 +02:00
|
|
|
$this->api_endpoint = 'https://api.preproduction.powerboard.commbank.com.au';
|
2024-09-06 10:31:00 +02:00
|
|
|
$this->environment = 'preproduction_cba';
|
|
|
|
}
|
2024-09-06 06:26:13 +02:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setPaymentMethod($payment_method_id)
|
|
|
|
{
|
2024-09-06 10:31:00 +02:00
|
|
|
|
|
|
|
$class = self::$methods[$payment_method_id];
|
|
|
|
|
|
|
|
$this->payment_method = new $class($this);
|
2024-09-06 06:26:13 +02:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* View for displaying custom content of the driver.
|
|
|
|
*
|
|
|
|
* @param array $data
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function processPaymentView($data)
|
|
|
|
{
|
2024-09-06 10:31:00 +02:00
|
|
|
$this->init();
|
|
|
|
|
2024-09-06 06:26:13 +02:00
|
|
|
return $this->payment_method->paymentView($data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Processing method for payment. Should never be reached with this driver.
|
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function processPaymentResponse($request)
|
|
|
|
{
|
|
|
|
return $this->payment_method->paymentResponse($request);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Detach payment method from custom payment driver.
|
|
|
|
*
|
|
|
|
* @param ClientGatewayToken $token
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function detach(ClientGatewayToken $token)
|
|
|
|
{
|
|
|
|
// Driver doesn't support this feature.
|
|
|
|
}
|
|
|
|
|
|
|
|
public function refund(Payment $payment, $amount, $return_client_response = false)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public function processWebhookRequest($request)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getClientRequiredFields(): array
|
|
|
|
{
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function tokenBilling(ClientGatewayToken $cgt, PaymentHash $payment_hash)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public function importCustomers()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public function auth(): bool
|
|
|
|
{
|
|
|
|
$this->init();
|
|
|
|
|
2024-09-06 07:15:33 +02:00
|
|
|
|
|
|
|
return true;
|
2024-09-06 06:26:13 +02:00
|
|
|
// try {
|
|
|
|
// $this->verifyConnect();
|
|
|
|
// return true;
|
|
|
|
// } catch(\Exception $e) {
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
// return false;
|
|
|
|
|
|
|
|
}
|
2024-09-06 11:15:08 +02:00
|
|
|
|
|
|
|
public function gatewayRequest(string $uri, string $verb, array $payload, array $headers = [])
|
|
|
|
{
|
|
|
|
$r = Http::withHeaders($this->getHeaders($headers))
|
|
|
|
->{$verb}($this->api_endpoint.$uri, $payload);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getHeaders(array $headers = []): array
|
|
|
|
{
|
|
|
|
return array_merge([
|
|
|
|
'x-user-secret-key' => $this->company_gateway->getConfigField('secretKey'),
|
|
|
|
'Content-Type' => 'application/json',
|
|
|
|
],
|
|
|
|
$headers);
|
|
|
|
}
|
|
|
|
|
2024-09-06 06:26:13 +02:00
|
|
|
}
|