2018-10-15 14:40:34 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
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-08-22 02:25:30 +02:00
|
|
|
|
2019-09-17 12:27:48 +02:00
|
|
|
protected $casts = [
|
|
|
|
'is_offsite' => 'boolean',
|
|
|
|
'is_secure' => 'boolean',
|
2019-09-26 00:27:26 +02:00
|
|
|
'updated_at' => 'timestamp',
|
|
|
|
'created_at' => 'timestamp',
|
|
|
|
'deleted_at' => 'timestamp',
|
2019-09-17 12:27:48 +02:00
|
|
|
];
|
|
|
|
|
2019-09-05 14:42:26 +02:00
|
|
|
/**
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function getFields()
|
|
|
|
{
|
|
|
|
|
|
|
|
if ($this->isCustom())
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'name' => '',
|
|
|
|
'text' => '',
|
|
|
|
];
|
|
|
|
} else
|
|
|
|
{
|
|
|
|
return Omnipay::create($this->provider)->getDefaultParameters();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test if gateway is custom
|
|
|
|
* @return boolean TRUE|FALSE
|
|
|
|
*/
|
|
|
|
public function isCustom() :bool
|
|
|
|
{
|
|
|
|
|
|
|
|
return in_array($this->id, [62, 67, 68]); //static table ids of the custom gateways
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-10-15 14:40:34 +02:00
|
|
|
}
|
2019-08-22 02:25:30 +02:00
|
|
|
|
|
|
|
|