1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 01:11:34 +02:00
invoiceninja/app/Models/Gateway.php

54 lines
1.2 KiB
PHP
Raw Normal View History

<?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) 2020. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 05:32:07 +02:00
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
2019-09-05 14:42:26 +02:00
use Omnipay\Omnipay;
class Gateway extends StaticModel
{
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',
//'visible' => 'boolean',
'updated_at' => 'timestamp',
'created_at' => 'timestamp',
'default_gateway_type_id' => 'string',
2019-10-15 12:36:51 +02:00
'fields' => 'json',
2019-09-17 12:27:48 +02:00
];
2019-09-05 14:42:26 +02:00
/**
* @return mixed
*/
public function getFields()
{
if ($this->isCustom()) {
2019-09-05 14:42:26 +02:00
return [
'name' => '',
'text' => '',
];
} else {
2019-09-05 14:42:26 +02:00
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
}
}