2018-10-15 23:40:34 +11:00
|
|
|
<?php
|
2019-05-11 13:32:07 +10:00
|
|
|
/**
|
2020-09-06 19:38:10 +10:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 13:32:07 +10:00
|
|
|
*
|
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
|
*
|
2021-01-04 08:54:54 +11:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 13:32:07 +10:00
|
|
|
*
|
2021-06-16 16:58:16 +10:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-05-11 13:32:07 +10:00
|
|
|
*/
|
2018-10-15 23:40:34 +11:00
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
2019-09-12 11:28:41 +10:00
|
|
|
class Gateway extends StaticModel
|
2018-10-15 23:40:34 +11:00
|
|
|
{
|
2019-09-17 20:27:48 +10:00
|
|
|
protected $casts = [
|
|
|
|
|
'is_offsite' => 'boolean',
|
|
|
|
|
'is_secure' => 'boolean',
|
2019-10-15 21:36:51 +11:00
|
|
|
'recommended' => 'boolean',
|
2020-10-12 10:21:24 +11:00
|
|
|
'visible' => 'boolean',
|
2020-10-04 19:52:58 +11:00
|
|
|
'sort_order' => 'int',
|
2019-09-26 08:27:26 +10:00
|
|
|
'updated_at' => 'timestamp',
|
|
|
|
|
'created_at' => 'timestamp',
|
2019-10-22 22:27:03 +11:00
|
|
|
'default_gateway_type_id' => 'string',
|
2020-10-15 07:58:20 +11:00
|
|
|
// 'fields' => 'json',
|
|
|
|
|
'fields' => 'object',
|
2020-10-06 14:01:28 +11:00
|
|
|
'options' => 'array',
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
protected $appends = [
|
|
|
|
|
'options',
|
2019-09-17 20:27:48 +10:00
|
|
|
];
|
|
|
|
|
|
2020-07-05 18:59:28 +10:00
|
|
|
protected $dateFormat = 'Y-m-d H:i:s.u';
|
2020-09-06 19:38:10 +10:00
|
|
|
|
2020-10-06 14:01:28 +11:00
|
|
|
public function getOptionsAttribute()
|
|
|
|
|
{
|
|
|
|
|
return $this->getMethods();
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-05 22:42:26 +10:00
|
|
|
/**
|
2020-09-06 19:38:10 +10:00
|
|
|
* Test if gateway is custom.
|
|
|
|
|
* @return bool TRUE|FALSE
|
2019-09-05 22:42:26 +10:00
|
|
|
*/
|
|
|
|
|
public function isCustom() :bool
|
|
|
|
|
{
|
|
|
|
|
return in_array($this->id, [62, 67, 68]); //static table ids of the custom gateways
|
|
|
|
|
}
|
2020-09-28 12:56:11 +10: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-11-25 15:19:52 +01:00
|
|
|
}
|
2020-09-28 12:56:11 +10:00
|
|
|
|
2020-09-29 14:32:29 +10:00
|
|
|
return $link;
|
2021-03-03 11:38:59 +01:00
|
|
|
|
2020-09-28 12:56:11 +10:00
|
|
|
}
|
|
|
|
|
|
2020-10-06 14:01:28 +11:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Returns an array of methods and the gatewaytypes possible
|
2020-11-25 15:19:52 +01:00
|
|
|
*
|
|
|
|
|
* @return array
|
2021-03-17 00:40:58 +11:00
|
|
|
*/
|
2020-10-06 14:01:28 +11:00
|
|
|
public function getMethods()
|
|
|
|
|
{
|
|
|
|
|
switch ($this->id) {
|
|
|
|
|
case 1:
|
2021-08-18 21:46:04 +10:00
|
|
|
return [GatewayType::CREDIT_CARD => ['refund' => true, 'token_billing' => true]]; //Authorize.net
|
2020-10-06 14:01:28 +11:00
|
|
|
break;
|
2021-07-22 11:30:16 +10:00
|
|
|
case 3:
|
2021-08-18 21:12:13 +10:00
|
|
|
return [GatewayType::CREDIT_CARD => ['refund' => false, 'token_billing' => true]];//eWay
|
2021-08-26 15:37:17 +02:00
|
|
|
break;
|
2021-08-18 21:21:05 +10:00
|
|
|
case 11:
|
2021-07-21 20:35:22 +10:00
|
|
|
return [GatewayType::CREDIT_CARD => ['refund' => false, 'token_billing' => false]];//Payfast
|
|
|
|
|
break;
|
2021-08-14 19:32:16 +10:00
|
|
|
case 7:
|
|
|
|
|
return [
|
|
|
|
|
GatewayType::CREDIT_CARD => ['refund' => false, 'token_billing' => true], // Mollie
|
|
|
|
|
];
|
2020-10-06 14:01:28 +11:00
|
|
|
case 15:
|
2020-10-11 20:17:33 +11:00
|
|
|
return [GatewayType::PAYPAL => ['refund' => true, 'token_billing' => false]]; //Paypal
|
2020-10-06 14:01:28 +11:00
|
|
|
break;
|
|
|
|
|
case 20:
|
|
|
|
|
case 39:
|
2020-10-11 20:17:33 +11:00
|
|
|
return [GatewayType::CREDIT_CARD => ['refund' => true, 'token_billing' => true]]; //Checkout
|
2020-10-06 14:01:28 +11:00
|
|
|
break;
|
2021-07-21 20:35:22 +10:00
|
|
|
case 46:
|
|
|
|
|
return [GatewayType::CREDIT_CARD => ['refund' => true, 'token_billing' => true]]; //Paytrace
|
2021-06-11 17:39:51 +10:00
|
|
|
case 49:
|
|
|
|
|
return [GatewayType::CREDIT_CARD => ['refund' => true, 'token_billing' => true],
|
|
|
|
|
GatewayType::BANK_TRANSFER => ['refund' => true, 'token_billing' => true]]; //WePay
|
2021-08-26 15:37:17 +02:00
|
|
|
break;
|
2021-05-04 14:56:30 +02:00
|
|
|
case 50:
|
|
|
|
|
return [
|
2021-08-11 16:43:20 +10:00
|
|
|
GatewayType::CREDIT_CARD => ['refund' => true, 'token_billing' => true], //Braintree
|
2021-08-26 15:37:17 +02:00
|
|
|
GatewayType::PAYPAL => ['refund' => true, 'token_billing' => true],
|
|
|
|
|
GatewayType::BANK_TRANSFER => ['refund' => true, 'token_billing' => true],
|
2021-05-04 14:56:30 +02:00
|
|
|
];
|
|
|
|
|
break;
|
2021-08-21 22:22:22 +10:00
|
|
|
case 56:
|
|
|
|
|
return [GatewayType::CREDIT_CARD => ['refund' => true, 'token_billing' => true],
|
|
|
|
|
GatewayType::BANK_TRANSFER => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable','charge.succeeded']],
|
|
|
|
|
GatewayType::ALIPAY => ['refund' => false, 'token_billing' => false],
|
|
|
|
|
GatewayType::APPLE_PAY => ['refund' => false, 'token_billing' => false],
|
|
|
|
|
GatewayType::SOFORT => ['refund' => true, 'token_billing' => true, 'webhooks' => ['source.chargeable', 'charge.succeeded']]]; //Stripe
|
|
|
|
|
break;
|
2021-08-14 19:32:16 +10:00
|
|
|
case 57:
|
2021-08-04 14:31:47 +02:00
|
|
|
return [
|
2021-08-21 22:22:22 +10:00
|
|
|
GatewayType::CREDIT_CARD => ['refund' => false, 'token_billing' => true], //Square
|
2021-08-04 14:31:47 +02:00
|
|
|
];
|
|
|
|
|
break;
|
2021-08-14 19:32:16 +10:00
|
|
|
break;
|
2020-10-06 14:01:28 +11:00
|
|
|
default:
|
2020-10-11 20:17:33 +11:00
|
|
|
return [];
|
2020-10-06 14:01:28 +11:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-10-15 23:40:34 +11:00
|
|
|
}
|