2018-10-15 14:40:34 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2020-01-07 01:13:47 +01:00
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2018-10-15 14:40:34 +02:00
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2019-09-05 14:42:26 +02:00
|
|
|
use Omnipay\Omnipay;
|
2018-10-15 14:40:34 +02:00
|
|
|
|
2019-09-12 03:28:41 +02:00
|
|
|
class Gateway extends StaticModel
|
2018-10-15 14:40:34 +02:00
|
|
|
{
|
2019-09-17 12:27:48 +02:00
|
|
|
protected $casts = [
|
|
|
|
'is_offsite' => 'boolean',
|
|
|
|
'is_secure' => 'boolean',
|
2019-10-15 12:36:51 +02:00
|
|
|
'recommended' => 'boolean',
|
2019-11-06 23:57:09 +01:00
|
|
|
//'visible' => 'boolean',
|
2020-10-04 10:52:58 +02:00
|
|
|
'sort_order' => 'int',
|
2019-09-26 00:27:26 +02:00
|
|
|
'updated_at' => 'timestamp',
|
|
|
|
'created_at' => 'timestamp',
|
2019-10-22 13:27:03 +02:00
|
|
|
'default_gateway_type_id' => 'string',
|
2019-10-15 12:36:51 +02:00
|
|
|
'fields' => 'json',
|
2020-10-06 05:01:28 +02:00
|
|
|
'options' => 'array',
|
|
|
|
];
|
|
|
|
|
|
|
|
protected $appends = [
|
|
|
|
'options',
|
2019-09-17 12:27:48 +02:00
|
|
|
];
|
|
|
|
|
2020-07-05 10:59:28 +02:00
|
|
|
protected $dateFormat = 'Y-m-d H:i:s.u';
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2019-09-05 14:42:26 +02:00
|
|
|
/**
|
|
|
|
* @return mixed
|
2020-10-07 01:16:57 +02:00
|
|
|
* @deprecated 5.0.17 No longer needs as we are removing omnipay dependence
|
2019-09-05 14:42:26 +02:00
|
|
|
*/
|
|
|
|
public function getFields()
|
|
|
|
{
|
2019-12-30 22:59:12 +01:00
|
|
|
if ($this->isCustom()) {
|
2019-09-05 14:42:26 +02:00
|
|
|
return [
|
|
|
|
'name' => '',
|
|
|
|
'text' => '',
|
|
|
|
];
|
2019-12-30 22:59:12 +01:00
|
|
|
} else {
|
2019-09-05 14:42:26 +02:00
|
|
|
return Omnipay::create($this->provider)->getDefaultParameters();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-06 05:01:28 +02:00
|
|
|
public function getOptionsAttribute()
|
|
|
|
{
|
|
|
|
return $this->getMethods();
|
|
|
|
}
|
|
|
|
|
2019-09-05 14:42:26 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Test if gateway is custom.
|
|
|
|
* @return bool TRUE|FALSE
|
2019-09-05 14:42:26 +02:00
|
|
|
*/
|
|
|
|
public function isCustom() :bool
|
|
|
|
{
|
|
|
|
return in_array($this->id, [62, 67, 68]); //static table ids of the custom gateways
|
|
|
|
}
|
2020-09-28 04:56:11 +02:00
|
|
|
|
|
|
|
public function getHelp()
|
|
|
|
{
|
|
|
|
$link = '';
|
|
|
|
|
|
|
|
if ($this->id == 1) {
|
|
|
|
$link = 'http://reseller.authorize.net/application/?id=5560364';
|
|
|
|
} elseif ($this->id == 15) {
|
|
|
|
$link = 'https://www.paypal.com/us/cgi-bin/webscr?cmd=_login-api-run';
|
|
|
|
} elseif ($this->id == 24) {
|
|
|
|
$link = 'https://www.2checkout.com/referral?r=2c37ac2298';
|
|
|
|
} elseif ($this->id == 35) {
|
|
|
|
$link = 'https://bitpay.com/dashboard/signup';
|
|
|
|
} elseif ($this->id == 18) {
|
|
|
|
$link = 'https://applications.sagepay.com/apply/2C02C252-0F8A-1B84-E10D-CF933EFCAA99';
|
|
|
|
} elseif ($this->id == 20) {
|
|
|
|
$link = 'https://dashboard.stripe.com/account/apikeys';
|
|
|
|
}
|
|
|
|
|
2020-09-29 06:32:29 +02:00
|
|
|
// $key = 'texts.gateway_help_'.$this->id;
|
|
|
|
// $str = trans($key, [
|
|
|
|
// 'link' => "<a href='$link' >Click here</a>",
|
|
|
|
// 'complete_link' => url('/complete'),
|
|
|
|
// ]);
|
2020-09-28 04:56:11 +02:00
|
|
|
|
2020-09-29 06:32:29 +02:00
|
|
|
return $link;
|
|
|
|
|
|
|
|
//return $key != $str ? $str : '';
|
2020-09-28 04:56:11 +02:00
|
|
|
}
|
|
|
|
|
2020-10-06 05:01:28 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns an array of methods and the gatewaytypes possible
|
|
|
|
*
|
|
|
|
* @return array
|
2020-10-09 13:13:33 +02:00
|
|
|
*///todo remove methods replace with gatewaytype:: and then nest refund / token billing
|
2020-10-06 05:01:28 +02:00
|
|
|
public function getMethods()
|
|
|
|
{
|
|
|
|
switch ($this->id) {
|
|
|
|
case 1:
|
|
|
|
return ['methods' => [GatewayType::CREDIT_CARD], 'refund' => true, 'token_billing' => true ]; //Authorize.net
|
|
|
|
break;
|
|
|
|
case 15:
|
|
|
|
return ['methods' => [GatewayType::PAYPAL], 'refund' => true, 'token_billing' => false ]; //Paypal
|
|
|
|
break;
|
|
|
|
case 20:
|
|
|
|
return ['methods' => [GatewayType::CREDIT_CARD, GatewayType::BANK_TRANSFER, GatewayType::ALIPAY, GatewayType::APPLE_PAY], 'refund' => true, 'token_billing' => true ]; //Stripe
|
|
|
|
break;
|
|
|
|
case 39:
|
|
|
|
return ['methods' => [GatewayType::CREDIT_CARD], 'refund' => true, 'token_billing' => true ]; //Checkout
|
|
|
|
break;
|
|
|
|
default:
|
2020-10-08 00:25:39 +02:00
|
|
|
return ['methods' => [], 'refund' => false, 'token_billing' => false];
|
2020-10-06 05:01:28 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2018-10-15 14:40:34 +02:00
|
|
|
}
|