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

260 lines
6.8 KiB
PHP
Raw Normal View History

2019-09-05 09:00:12 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\PaymentDrivers;
2019-09-30 08:54:24 +02:00
use App\Factory\PaymentFactory;
use App\Models\Client;
use App\Models\ClientContact;
2019-09-05 14:42:26 +02:00
use App\Models\CompanyGateway;
2019-09-08 14:13:55 +02:00
use App\Models\GatewayType;
2019-10-01 03:56:48 +02:00
use App\Models\Invoice;
2019-09-30 08:54:24 +02:00
use App\Models\Payment;
2019-10-01 03:56:48 +02:00
use Illuminate\Support\Carbon;
use Illuminate\Support\Facades\Auth;
2019-09-05 14:42:26 +02:00
use Omnipay\Omnipay;
2019-09-05 09:00:12 +02:00
/**
* Class BasePaymentDriver
* @package App\PaymentDrivers
2019-09-26 07:14:07 +02:00
*
* Minimum dataset required for payment gateways
*
* $data = [
'amount' => $invoice->getRequestedAmount(),
'currency' => $invoice->getCurrencyCode(),
'returnUrl' => $completeUrl,
'cancelUrl' => $this->invitation->getLink(),
'description' => trans('texts.' . $invoice->getEntityType()) . " {$invoice->invoice_number}",
'transactionId' => $invoice->invoice_number,
'transactionType' => 'Purchase',
'clientIp' => Request::getClientIp(),
];
2019-09-05 09:00:12 +02:00
*/
2019-09-05 14:42:26 +02:00
class BasePaymentDriver
2019-09-05 09:00:12 +02:00
{
2019-09-06 01:00:23 +02:00
/* The company gateway instance*/
2019-09-05 14:42:26 +02:00
protected $company_gateway;
2019-09-06 01:00:23 +02:00
/* The Omnipay payment driver instance*/
2019-09-05 14:42:26 +02:00
protected $gateway;
2019-09-08 14:13:55 +02:00
/* The Invitation */
protected $invitation;
2019-09-30 07:27:05 +02:00
/* Gateway capabilities */
2019-09-06 01:00:23 +02:00
protected $refundable = false;
2019-09-13 07:52:01 +02:00
2019-09-30 07:27:05 +02:00
/* Token billing */
2019-09-06 01:00:23 +02:00
protected $token_billing = false;
2019-09-30 07:27:05 +02:00
/* Authorise payment methods */
2019-09-15 13:40:46 +02:00
protected $can_authorise_credit_card = false;
public function __construct(CompanyGateway $company_gateway, Client $client, $invitation = false)
2019-09-05 14:42:26 +02:00
{
$this->company_gateway = $company_gateway;
2019-09-08 14:13:55 +02:00
$this->invitation = $invitation;
$this->client = $client;
2019-09-05 14:42:26 +02:00
}
/**
* Returns the Omnipay driver
* @return object Omnipay initialized object
*/
protected function gateway()
{
2019-09-30 07:27:05 +02:00
2019-09-05 14:42:26 +02:00
$this->gateway = Omnipay::create($this->company_gateway->gateway->provider);
$this->gateway->initialize((array) $this->company_gateway->getConfig());
2019-09-06 01:00:23 +02:00
return $this;
2019-09-05 14:42:26 +02:00
}
2019-09-14 14:34:05 +02:00
/**
* Return the configuration fields for the
* Gatway
* @return array The configuration fields
*/
public function getFields()
{
return $this->gateway->getDefaultParameters();
}
2019-09-08 14:13:55 +02:00
/**
* Returns the default gateway type
*/
2019-09-30 07:27:05 +02:00
public function gatewayTypes()
2019-09-08 14:13:55 +02:00
{
return [
GatewayType::CREDIT_CARD,
];
}
2019-09-06 01:00:23 +02:00
2019-09-30 07:27:05 +02:00
public function getCompanyGatewayId() :int
{
return $this->company_gateway->id;
}
2019-09-05 09:00:12 +02:00
/**
* Returns whether refunds are possible with the gateway
* @return boolean TRUE|FALSE
*/
2019-09-30 07:27:05 +02:00
public function getRefundable() :bool
2019-09-06 01:00:23 +02:00
{
return $this->refundable;
}
2019-09-05 09:00:12 +02:00
/**
* Returns whether token billing is possible with the gateway
* @return boolean TRUE|FALSE
*/
2019-09-30 07:27:05 +02:00
public function getTokenBilling() :bool
2019-09-06 01:00:23 +02:00
{
return $this->token_billing;
}
2019-09-05 09:00:12 +02:00
2019-09-30 07:27:05 +02:00
/**
* Returns whether gateway can
* authorise and credit card.
* @return [type] [description]
*/
public function canAuthoriseCreditCard() :bool
{
return $this->can_authorise_credit_card;
}
2019-09-05 09:00:12 +02:00
/**
2019-09-05 14:42:26 +02:00
* Refunds a given payment
* @return void
2019-09-05 09:00:12 +02:00
*/
2019-09-16 13:03:25 +02:00
public function refundPayment() {}
2019-09-06 01:00:23 +02:00
public function authorizeCreditCardView(array $data) {}
2019-09-16 13:03:25 +02:00
public function authorizeCreditCardResponse($request) {}
public function processPaymentView(array $data) {}
public function processPaymentResponse($request) {}
2019-09-30 07:27:05 +02:00
/**
* Return the contact if possible
*
* @return ClientContact The ClientContact object
*/
public function getContact()
{
if($this->invitation)
return ClientContact::find($this->invitation->client_contact_id);
elseif(auth()->guard('contact')->user())
return auth()->user();
else
return false;
}
/************************************* Omnipay ******************************************
authorize($options) - authorize an amount on the customer's card
completeAuthorize($options) - handle return from off-site gateways after authorization
capture($options) - capture an amount you have previously authorized
purchase($options) - authorize and immediately capture an amount on the customer's card
completePurchase($options) - handle return from off-site gateways after purchase
refund($options) - refund an already processed transaction
void($options) - generally can only be called up to 24 hours after submitting a transaction
acceptNotification() - convert an incoming request from an off-site gateway to a generic notification object for further processing
*/
2019-09-30 01:26:37 +02:00
protected function paymentDetails($input)
2019-09-26 07:14:07 +02:00
{
2019-09-30 01:26:37 +02:00
// $gatewayTypeAlias = $this->gatewayType == GatewayType::TOKEN ? $this->gatewayType : GatewayType::getAliasFromId($this->gatewayType);
2019-09-26 07:14:07 +02:00
$data = [
'currency' => $this->client->getCurrencyCode(),
'transactionType' => 'Purchase',
'clientIp' => request()->getClientIp(),
];
2019-09-30 01:26:37 +02:00
/*
2019-09-26 07:14:07 +02:00
if ($paymentMethod) {
if ($this->customerReferenceParam) {
$data[$this->customerReferenceParam] = $paymentMethod->account_gateway_token->token;
}
$data[$this->sourceReferenceParam] = $paymentMethod->source_reference;
} elseif ($this->input) {
$data['card'] = new CreditCard($this->paymentDetailsFromInput($this->input));
} else {
$data['card'] = new CreditCard($this->paymentDetailsFromClient());
}
2019-09-30 01:26:37 +02:00
*/
2019-09-26 07:14:07 +02:00
return $data;
}
2019-09-30 07:27:05 +02:00
public function purchase($data, $items)
{
2019-09-30 01:26:37 +02:00
$this->gateway();
$response = $this->gateway
->purchase($data)
->setItems($items)
->send();
if ($response->isRedirect()) {
// redirect to offsite payment gateway
$response->redirect();
} elseif ($response->isSuccessful()) {
// payment was successful: update database
print_r($response);
} else {
// payment failed: display message to customer
echo $response->getMessage();
2019-09-10 12:30:55 +02:00
}
/*
$this->purchaseResponse = (array)$response->getData();*/
}
2019-09-14 14:34:05 +02:00
2019-09-30 03:15:57 +02:00
public function completePurchase($data)
{
$this->gateway();
return $this->gateway
->completePurchase($data)
->send();
}
2019-09-14 14:34:05 +02:00
2019-09-30 08:54:24 +02:00
public function createPayment($data)
{
$payment = PaymentFactory::create($this->client->company->id, $this->client->user->id);
$payment->client_id = $this->client->id;
$payment->company_gateway_id = $this->company_gateway->id;
$payment->status_id = Payment::STATUS_COMPLETED;
$payment->payment_date = Carbon::now();
2019-09-30 08:54:24 +02:00
return $payment;
}
2019-10-01 03:56:48 +02:00
public function attachInvoices(Payment $payment, $hashed_ids)
{
$invoices = Invoice::whereIn('id', $this->transformKeys(explode(",",$hashed_ids)))
->whereClientId($this->client->id)
->get();
$payment->invoices()->sync($invoices);
$payment->save();
return $payment;
}
2019-09-05 09:00:12 +02:00
}