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-05 14:42:26 +02:00
|
|
|
use App\Models\CompanyGateway;
|
2019-09-08 14:13:55 +02:00
|
|
|
use App\Models\GatewayType;
|
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-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-06 01:00:23 +02:00
|
|
|
/* Member variables */
|
|
|
|
protected $refundable = false;
|
|
|
|
protected $token_billing = false;
|
|
|
|
|
2019-09-08 14:13:55 +02:00
|
|
|
public function __construct(CompanyGateway $company_gateway, $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;
|
2019-09-05 14:42:26 +02:00
|
|
|
//$this->gatewayType = $gatewayType ?: $this->gatewayTypes()[0];
|
|
|
|
}
|
|
|
|
|
2019-09-06 07:22:05 +02:00
|
|
|
/* Stubbed in parent.
|
|
|
|
*
|
2019-09-06 01:00:23 +02:00
|
|
|
* The boot method should be used in the superclass
|
|
|
|
* to initialize all the member variables for the
|
|
|
|
* given driver / payment gateway
|
|
|
|
*
|
|
|
|
* ie.
|
|
|
|
*
|
|
|
|
* ->gateway()
|
2019-09-06 07:22:05 +02:00
|
|
|
* ->boot()
|
2019-09-06 01:00:23 +02:00
|
|
|
*
|
|
|
|
* @return Instance
|
|
|
|
*/
|
|
|
|
public function boot(){}
|
|
|
|
|
2019-09-05 14:42:26 +02:00
|
|
|
/**
|
|
|
|
* Returns the Omnipay driver
|
|
|
|
* @return object Omnipay initialized object
|
|
|
|
*/
|
|
|
|
protected function gateway()
|
|
|
|
{
|
2019-09-06 01:00:23 +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-08 14:13:55 +02:00
|
|
|
public function invoice()
|
|
|
|
{
|
|
|
|
return $this->invitation->invoice;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function contact()
|
|
|
|
{
|
|
|
|
return $this->invitation->contact;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function client()
|
|
|
|
{
|
|
|
|
return $this->contact()->client;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function company()
|
|
|
|
{
|
|
|
|
return $this->invitation->company;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the default gateway type
|
|
|
|
*/
|
|
|
|
public function gatewayTypes()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
GatewayType::CREDIT_CARD,
|
|
|
|
];
|
|
|
|
}
|
2019-09-06 01:00:23 +02:00
|
|
|
|
|
|
|
public function setRefundable($value)
|
|
|
|
{
|
|
|
|
$this->refundable = $value;
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2019-09-05 09:00:12 +02:00
|
|
|
/**
|
|
|
|
* Returns whether refunds are possible with the gateway
|
|
|
|
* @return boolean TRUE|FALSE
|
|
|
|
*/
|
2019-09-06 01:00:23 +02:00
|
|
|
public function getRefundable()
|
|
|
|
{
|
|
|
|
return $this->refundable;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setTokenBilling($value)
|
|
|
|
{
|
|
|
|
$this->token_billing = $value;
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
2019-09-05 09:00:12 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns whether token billing is possible with the gateway
|
|
|
|
* @return boolean TRUE|FALSE
|
|
|
|
*/
|
2019-09-06 01:00:23 +02:00
|
|
|
public function getTokenBilling()
|
|
|
|
{
|
|
|
|
return $this->token_billing;
|
|
|
|
}
|
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-06 01:00:23 +02:00
|
|
|
public function refundPayment()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
2019-09-06 07:22:05 +02:00
|
|
|
|
|
|
|
/************************************* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
public function purchase($data, $items)
|
|
|
|
{
|
|
|
|
$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();
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
$this->purchaseResponse = (array)$response->getData();*/
|
|
|
|
}
|
|
|
|
|
2019-09-05 09:00:12 +02:00
|
|
|
}
|