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;
|
2019-08-22 03:58:42 +02:00
|
|
|
use App\Models\Gateway;
|
|
|
|
use App\Models\GatewayType;
|
2019-09-09 06:54:39 +02:00
|
|
|
use App\Utils\Number;
|
2019-08-22 00:34:20 +02:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
2019-09-08 12:39:13 +02:00
|
|
|
class CompanyGateway extends BaseModel
|
2019-08-22 00:34:20 +02:00
|
|
|
{
|
2019-09-08 12:39:13 +02:00
|
|
|
public static $credit_cards = [
|
2019-08-22 00:34:20 +02:00
|
|
|
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);
|
|
|
|
}
|
2019-08-22 03:58:42 +02:00
|
|
|
|
|
|
|
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';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-08 12:39:13 +02:00
|
|
|
public function getConfigAttribute()
|
|
|
|
{
|
|
|
|
return decrypt($this->config);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setConfigAttribute($value)
|
|
|
|
{
|
|
|
|
$this->attributes['config'] = encrypt(json_encode($value));
|
|
|
|
}
|
|
|
|
|
2019-09-05 14:42:26 +02:00
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function getAchEnabled()
|
|
|
|
{
|
2019-09-08 12:39:13 +02:00
|
|
|
return ! empty($this->config('enableAch'));
|
2019-09-05 14:42:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function getApplePayEnabled()
|
|
|
|
{
|
2019-09-08 12:39:13 +02:00
|
|
|
return ! empty($this->config('enableApplePay'));
|
2019-09-05 14:42:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function getAlipayEnabled()
|
|
|
|
{
|
2019-09-08 12:39:13 +02:00
|
|
|
return ! empty($this->config('enableAlipay'));
|
2019-09-05 14:42:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function getSofortEnabled()
|
|
|
|
{
|
2019-09-08 12:39:13 +02:00
|
|
|
return ! empty($this->config('enableSofort'));
|
2019-09-05 14:42:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function getSepaEnabled()
|
|
|
|
{
|
2019-09-08 12:39:13 +02:00
|
|
|
return ! empty($this->config('enableSepa'));
|
2019-09-05 14:42:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function getBitcoinEnabled()
|
|
|
|
{
|
2019-09-08 12:39:13 +02:00
|
|
|
return ! empty($this->config('enableBitcoin'));
|
2019-09-05 14:42:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function getPayPalEnabled()
|
|
|
|
{
|
2019-09-08 12:39:13 +02:00
|
|
|
return ! empty($this->config('enablePayPal'));
|
2019-09-05 14:42:26 +02:00
|
|
|
}
|
2019-09-09 05:27:16 +02:00
|
|
|
|
2019-09-09 06:54:39 +02:00
|
|
|
public function feesEnabled()
|
|
|
|
{
|
|
|
|
return floatval($this->fee_amount) || floatval($this->fee_percent);
|
|
|
|
}
|
|
|
|
|
2019-09-09 05:27:16 +02:00
|
|
|
/**
|
|
|
|
* Returns the formatted fee amount for the gateway
|
|
|
|
*
|
|
|
|
* @param float $amount The payment amount
|
|
|
|
* @param Client $client The client object
|
|
|
|
* @return string The fee amount formatted in the client currency
|
|
|
|
*/
|
2019-09-09 06:54:39 +02:00
|
|
|
public function calcGatewayFeeLabel($amount, Client $client) :string
|
2019-09-09 05:27:16 +02:00
|
|
|
{
|
2019-09-09 06:54:39 +02:00
|
|
|
$label = '';
|
|
|
|
|
|
|
|
if(!$this->feesEnabled())
|
|
|
|
return $label;
|
|
|
|
|
|
|
|
$fee = $this->calcGatewayFee($amount);
|
2019-09-09 05:27:16 +02:00
|
|
|
|
2019-09-09 06:54:39 +02:00
|
|
|
if($fee > 0 ){
|
2019-09-11 07:32:47 +02:00
|
|
|
$fee = Number::formatMoney(round($fee, 2), $client);
|
2019-09-09 06:54:39 +02:00
|
|
|
$label = ' - ' . $fee . ' ' . ctrans('texts.fee');
|
|
|
|
}
|
2019-09-09 05:27:16 +02:00
|
|
|
|
2019-09-09 06:54:39 +02:00
|
|
|
return $label;
|
2019-09-09 05:27:16 +02:00
|
|
|
}
|
2019-09-09 06:54:39 +02:00
|
|
|
|
|
|
|
public function calcGatewayFee($amount)
|
|
|
|
{
|
|
|
|
$fee = 0;
|
|
|
|
|
|
|
|
if ($this->fee_amount)
|
|
|
|
$fee += $this->fee_amount;
|
|
|
|
|
|
|
|
if ($this->fee_percent)
|
|
|
|
$fee += $amount * $this->fee_percent / 100;
|
|
|
|
|
|
|
|
$pre_tax_fee = $fee;
|
|
|
|
|
|
|
|
if ($this->fee_tax_rate1)
|
|
|
|
$fee += $pre_tax_fee * $this->fee_tax_rate1 / 100;
|
|
|
|
|
|
|
|
if ($this->fee_tax_rate2)
|
|
|
|
$fee += $pre_tax_fee * $this->fee_tax_rate2 / 100;
|
|
|
|
|
|
|
|
|
|
|
|
return $fee;
|
|
|
|
}
|
|
|
|
|
2019-08-22 00:34:20 +02:00
|
|
|
}
|