2020-08-20 00:11:46 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* 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;
|
|
|
|
|
2020-12-09 15:17:48 +01:00
|
|
|
use App\Jobs\Util\SystemLogger;
|
2020-08-20 00:11:46 +02:00
|
|
|
use App\Models\ClientGatewayToken;
|
|
|
|
use App\Models\GatewayType;
|
|
|
|
use App\Models\Payment;
|
2020-12-09 15:17:48 +01:00
|
|
|
use App\Models\PaymentType;
|
|
|
|
use App\Models\SystemLog;
|
2020-08-20 00:11:46 +02:00
|
|
|
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* 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-09-06 11:38:10 +02:00
|
|
|
|
2020-08-20 00:11:46 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Returns the gateway types.
|
2020-08-20 00:11:46 +02:00
|
|
|
*/
|
2020-12-09 15:17:48 +01:00
|
|
|
public function gatewayTypes(): array
|
2020-08-20 00:11:46 +02:00
|
|
|
{
|
|
|
|
$types = [
|
|
|
|
GatewayType::CREDIT_CARD,
|
|
|
|
];
|
|
|
|
|
|
|
|
return $types;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setPaymentMethod($payment_method_id)
|
|
|
|
{
|
|
|
|
$this->payment_method = $payment_method_id;
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function processPaymentView($data)
|
|
|
|
{
|
2020-12-09 15:17:48 +01:00
|
|
|
$data['title'] = $this->company_gateway->getConfigField('name');
|
|
|
|
$data['instructions'] = $this->company_gateway->getConfigField('text');
|
|
|
|
|
|
|
|
$this->payment_hash->data = array_merge((array) $this->payment_hash->data, $data);
|
|
|
|
$this->payment_hash->save();
|
|
|
|
|
|
|
|
$data['gateway'] = $this;
|
|
|
|
|
|
|
|
return render('gateways.custom.payment', $data);
|
2020-08-20 00:11:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function processPaymentResponse($request)
|
|
|
|
{
|
2020-12-09 15:17:48 +01:00
|
|
|
$data = [
|
|
|
|
'payment_method' => GatewayType::CREDIT_CARD,
|
|
|
|
'payment_type' => PaymentType::CREDIT_CARD_OTHER,
|
|
|
|
'amount' => $this->payment_hash->data->amount_with_fee,
|
|
|
|
'transaction_reference' => \Illuminate\Support\Str::uuid(),
|
|
|
|
];
|
|
|
|
|
|
|
|
$payment = $this->createPayment($data, Payment::STATUS_PENDING);
|
|
|
|
|
|
|
|
SystemLogger::dispatch(
|
|
|
|
['response' => $data, 'data' => $data],
|
|
|
|
SystemLog::CATEGORY_GATEWAY_RESPONSE,
|
|
|
|
SystemLog::EVENT_GATEWAY_SUCCESS,
|
|
|
|
SystemLog::TYPE_STRIPE,
|
|
|
|
$this->client,
|
|
|
|
);
|
|
|
|
|
|
|
|
return redirect()->route('client.payments.show', ['payment' => $this->encodePrimaryKey($payment->id)]);
|
2020-08-20 00:11:46 +02:00
|
|
|
}
|
2020-09-18 10:01:19 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Detach payment method from custom payment driver.
|
2020-10-28 11:10:49 +01:00
|
|
|
*
|
|
|
|
* @param ClientGatewayToken $token
|
|
|
|
* @return void
|
2020-09-18 10:01:19 +02:00
|
|
|
*/
|
|
|
|
public function detach(ClientGatewayToken $token)
|
|
|
|
{
|
|
|
|
// Driver doesn't support this feature.
|
|
|
|
}
|
2020-08-20 00:11:46 +02:00
|
|
|
}
|