1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Ninja/PaymentDrivers/CheckoutComPaymentDriver.php
2016-07-21 15:35:23 +03:00

36 lines
875 B
PHP

<?php namespace App\Ninja\PaymentDrivers;
class CheckoutComPaymentDriver extends BasePaymentDriver
{
public function createTransactionToken()
{
$response = $this->gateway()->purchase([
'amount' => $this->invoice()->getRequestedAmount(),
'currency' => $this->client()->getCurrencyCode()
])->send();
if ($response->isRedirect()) {
$token = $response->getTransactionReference();
$this->invitation->transaction_reference = $token;
$this->invitation->save();
return $token;
}
return false;
}
protected function paymentDetails($paymentMethod = false)
{
$data = parent::paymentDetails();
if ($ref = array_get($this->input, 'token')) {
$data['transactionReference'] = $ref;
}
return $data;
}
}