1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 13:12:50 +01:00
invoiceninja/app/Models/CompanyGateway.php

122 lines
2.8 KiB
PHP
Raw Normal View History

2019-08-22 00:34:20 +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\Models;
use App\Models\Company;
use App\Models\Gateway;
use App\Models\GatewayType;
2019-08-22 00:34:20 +02:00
use Illuminate\Database\Eloquent\Model;
class CompanyGateway extends Model
{
public static $creditCards =
[
1 => ['card' => 'images/credit_cards/Test-Visa-Icon.png', 'text' => 'Visa'],
2 => ['card' => 'images/credit_cards/Test-MasterCard-Icon.png', 'text' => 'Master Card'],
4 => ['card' => 'images/credit_cards/Test-AmericanExpress-Icon.png', 'text' => 'American Express'],
8 => ['card' => 'images/credit_cards/Test-Diners-Icon.png', 'text' => 'Diners'],
16 => ['card' => 'images/credit_cards/Test-Discover-Icon.png', 'text' => 'Discover'],
];
public function company()
{
return $this->belongsTo(Company::class);
}
public function gateway()
{
return $this->hasOne(Gateway::class);
}
public function type()
{
return $this->hasOne(GatewayType::class);
}
2019-09-05 14:42:26 +02:00
/* This is the public entry point into the payment superclass */
public function driver()
{
$class = static::driver_class();
return new $class($this);
}
private function driver_class()
{
$class = 'App\\PaymentDrivers\\' . $this->gateway->provider . 'PaymentDriver';
$class = str_replace('\\', '', $class);
$class = str_replace('_', '', $class);
if (class_exists($class)) {
return $class;
} else {
return 'App\\PaymentDrivers\\BasePaymentDriver';
}
}
/**
* @return bool
*/
public function getAchEnabled()
{
return ! empty($this->getConfigField('enableAch'));
}
/**
* @return bool
*/
public function getApplePayEnabled()
{
return ! empty($this->getConfigField('enableApplePay'));
}
/**
* @return bool
*/
public function getAlipayEnabled()
{
return ! empty($this->getConfigField('enableAlipay'));
}
/**
* @return bool
*/
public function getSofortEnabled()
{
return ! empty($this->getConfigField('enableSofort'));
}
/**
* @return bool
*/
public function getSepaEnabled()
{
return ! empty($this->getConfigField('enableSepa'));
}
/**
* @return bool
*/
public function getBitcoinEnabled()
{
return ! empty($this->getConfigField('enableBitcoin'));
}
/**
* @return bool
*/
public function getPayPalEnabled()
{
return ! empty($this->getConfigField('enablePayPal'));
}
2019-08-22 00:34:20 +02:00
}