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

82 lines
1.7 KiB
PHP
Raw Normal View History

2015-03-18 00:39:03 +01:00
<?php namespace App\Models;
2015-03-16 22:45:25 +01:00
2015-11-01 19:21:11 +01:00
use Crypt;
2015-04-15 18:35:41 +02:00
use App\Models\Gateway;
2015-03-31 11:38:24 +02:00
use Illuminate\Database\Eloquent\SoftDeletes;
2015-03-16 22:45:25 +01:00
class AccountGateway extends EntityModel
{
2015-03-31 11:38:24 +02:00
use SoftDeletes;
protected $dates = ['deleted_at'];
2015-11-05 23:37:04 +01:00
public function getEntityType()
{
return ENTITY_ACCOUNT_GATEWAY;
}
2015-03-16 22:45:25 +01:00
public function gateway()
{
2015-03-31 11:38:24 +02:00
return $this->belongsTo('App\Models\Gateway');
2015-03-16 22:45:25 +01:00
}
public function getCreditcardTypes()
{
$flags = unserialize(CREDIT_CARDS);
$arrayOfImages = [];
foreach ($flags as $card => $name) {
if (($this->accepted_credit_cards & $card) == $card) {
$arrayOfImages[] = ['source' => asset($name['card']), 'alt' => $name['text']];
}
}
return $arrayOfImages;
}
2015-11-01 19:21:11 +01:00
public function getPaymentType()
{
2015-04-15 18:35:41 +02:00
return Gateway::getPaymentType($this->gateway_id);
}
2015-11-01 19:21:11 +01:00
public function isPaymentType($type)
{
2015-04-15 18:35:41 +02:00
return $this->getPaymentType() == $type;
2015-03-16 22:45:25 +01:00
}
2015-11-01 19:21:11 +01:00
public function isGateway($gatewayId)
{
return $this->gateway_id == $gatewayId;
}
2015-11-01 19:21:11 +01:00
public function setConfig($config)
{
$this->config = Crypt::encrypt(json_encode($config));
}
public function getConfig()
{
return json_decode(Crypt::decrypt($this->config));
}
2015-11-29 21:13:50 +01:00
public function getConfigField($field)
{
$config = $this->getConfig();
if (!$field || !property_exists($config, $field)) {
return false;
}
return $config->$field;
}
public function getPublishableStripeKey()
{
if ( ! $this->isGateway(GATEWAY_STRIPE)) {
return false;
}
return $this->getConfigField('publishableKey');
}
2015-03-16 22:45:25 +01:00
}