2018-10-15 07:00:48 +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 07:00:48 +02:00
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2019-03-02 22:44:08 +01:00
|
|
|
use App\DataMapper\ClientSettings;
|
2019-04-29 02:54:26 +02:00
|
|
|
use App\DataMapper\CompanySettings;
|
2019-04-29 07:50:08 +02:00
|
|
|
use App\Models\Client;
|
2019-01-25 11:47:23 +01:00
|
|
|
use App\Models\Company;
|
2019-01-26 10:34:38 +01:00
|
|
|
use App\Models\Country;
|
2019-08-28 04:36:53 +02:00
|
|
|
use App\Models\Currency;
|
2019-03-28 11:07:45 +01:00
|
|
|
use App\Models\Filterable;
|
2019-09-10 04:30:43 +02:00
|
|
|
use App\Models\GroupSetting;
|
2019-04-24 02:22:02 +02:00
|
|
|
use App\Models\Timezone;
|
2019-09-09 13:05:53 +02:00
|
|
|
use App\Utils\Traits\CompanyGatewaySettings;
|
2019-06-03 07:31:20 +02:00
|
|
|
use App\Utils\Traits\GeneratesCounter;
|
2019-04-30 08:02:39 +02:00
|
|
|
use App\Utils\Traits\MakesDates;
|
2018-11-10 14:24:36 +01:00
|
|
|
use App\Utils\Traits\MakesHash;
|
2019-01-25 11:47:23 +01:00
|
|
|
use Hashids\Hashids;
|
2018-11-12 08:52:20 +01:00
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
2019-04-30 14:30:47 +02:00
|
|
|
use Illuminate\Support\Facades\Log;
|
2019-09-09 08:25:33 +02:00
|
|
|
use Illuminate\Support\Facades\URL;
|
2019-01-25 11:47:23 +01:00
|
|
|
use Laracasts\Presenter\PresentableTrait;
|
2018-10-15 07:00:48 +02:00
|
|
|
|
2018-11-02 11:54:46 +01:00
|
|
|
class Client extends BaseModel
|
2018-10-15 07:00:48 +02:00
|
|
|
{
|
2018-11-02 11:54:46 +01:00
|
|
|
use PresentableTrait;
|
2018-11-10 14:24:36 +01:00
|
|
|
use MakesHash;
|
2019-04-30 08:02:39 +02:00
|
|
|
use MakesDates;
|
2018-11-12 08:52:20 +01:00
|
|
|
use SoftDeletes;
|
2019-03-28 11:07:45 +01:00
|
|
|
use Filterable;
|
2019-06-03 07:31:20 +02:00
|
|
|
use GeneratesCounter;
|
2019-03-28 11:07:45 +01:00
|
|
|
|
2018-11-02 11:54:46 +01:00
|
|
|
protected $presenter = 'App\Models\Presenters\ClientPresenter';
|
|
|
|
|
2019-07-30 00:28:38 +02:00
|
|
|
|
|
|
|
protected $hidden = [
|
2018-11-27 07:59:16 +01:00
|
|
|
'id',
|
2019-07-30 00:28:38 +02:00
|
|
|
'private_notes',
|
|
|
|
'user_id',
|
|
|
|
'company_id',
|
|
|
|
'backup',
|
|
|
|
'settings',
|
|
|
|
'last_login',
|
|
|
|
'private_notes'
|
2018-11-10 14:24:36 +01:00
|
|
|
];
|
2019-06-26 06:04:10 +02:00
|
|
|
|
|
|
|
protected $fillable = [
|
|
|
|
'name',
|
|
|
|
'website',
|
|
|
|
'private_notes',
|
|
|
|
'industry_id',
|
|
|
|
'size_id',
|
|
|
|
'currency_id',
|
|
|
|
'address1',
|
|
|
|
'address2',
|
|
|
|
'city',
|
|
|
|
'state',
|
|
|
|
'postal_code',
|
|
|
|
'country_id',
|
|
|
|
'custom_value1',
|
|
|
|
'custom_value2',
|
|
|
|
'custom_value3',
|
|
|
|
'custom_value4,',
|
|
|
|
'shipping_address1',
|
|
|
|
'shipping_address2',
|
|
|
|
'shipping_city',
|
|
|
|
'shipping_state',
|
|
|
|
'shipping_postal_code',
|
|
|
|
'shipping_country_id',
|
|
|
|
'settings',
|
|
|
|
'payment_terms',
|
|
|
|
'vat_number',
|
|
|
|
'id_number',
|
|
|
|
];
|
|
|
|
|
2019-06-03 07:31:20 +02:00
|
|
|
/*
|
2019-04-29 02:54:26 +02:00
|
|
|
protected $with = [
|
|
|
|
'contacts',
|
|
|
|
'primary_contact',
|
|
|
|
'country',
|
|
|
|
'shipping_country',
|
|
|
|
'company'
|
|
|
|
];
|
2019-06-03 07:31:20 +02:00
|
|
|
*/
|
2019-02-17 11:34:46 +01:00
|
|
|
protected $casts = [
|
|
|
|
'settings' => 'object'
|
|
|
|
];
|
|
|
|
|
2019-09-08 12:39:13 +02:00
|
|
|
public function gateway_tokens()
|
|
|
|
{
|
|
|
|
return $this->hasMany(ClientGatewayToken::class);
|
|
|
|
}
|
|
|
|
|
2019-09-13 00:33:48 +02:00
|
|
|
/**
|
|
|
|
* Retrieves the specific payment token per
|
|
|
|
* gateway - per payment method
|
|
|
|
*
|
|
|
|
* Allows the storage of multiple tokens
|
|
|
|
* per client per gateway per payment_method
|
|
|
|
*
|
|
|
|
* @param int $gateway_id The gateway ID
|
|
|
|
* @param int $payment_method_id The payment method ID
|
|
|
|
* @return ClientGatewayToken The client token record
|
|
|
|
*/
|
|
|
|
public function gateway_token($gateway_id, $payment_method_id)
|
|
|
|
{
|
|
|
|
return $this->gateway_tokens
|
|
|
|
->whereCompanyGatewayId($gateway_id)
|
|
|
|
->wherePaymentMethod_id($payment_method_id)
|
|
|
|
->first();
|
|
|
|
}
|
|
|
|
|
2018-10-29 04:16:17 +01:00
|
|
|
public function contacts()
|
|
|
|
{
|
2019-01-25 11:47:23 +01:00
|
|
|
return $this->hasMany(ClientContact::class)->orderBy('is_primary', 'desc');
|
2018-10-29 04:16:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function primary_contact()
|
|
|
|
{
|
|
|
|
return $this->hasMany(ClientContact::class)->whereIsPrimary(true);
|
|
|
|
}
|
|
|
|
|
2019-01-25 11:47:23 +01:00
|
|
|
public function company()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Company::class);
|
|
|
|
}
|
|
|
|
|
2019-01-26 10:34:38 +01:00
|
|
|
public function country()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Country::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function shipping_country()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Country::class, 'shipping_country_id', 'id');
|
|
|
|
}
|
|
|
|
|
2019-04-24 02:22:02 +02:00
|
|
|
public function timezone()
|
|
|
|
{
|
2019-09-11 07:32:47 +02:00
|
|
|
return Timezone::find($this->getSetting('timezone_id'));
|
2019-04-24 02:22:02 +02:00
|
|
|
}
|
|
|
|
|
2019-08-28 03:13:10 +02:00
|
|
|
public function date_format()
|
|
|
|
{
|
2019-09-11 07:32:47 +02:00
|
|
|
return $this->getSetting('date_format');
|
2019-08-28 03:13:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function datetime_format()
|
|
|
|
{
|
2019-09-11 07:32:47 +02:00
|
|
|
return $this->getSetting('datetime_format');
|
2019-08-28 03:13:10 +02:00
|
|
|
}
|
|
|
|
|
2019-08-28 04:36:53 +02:00
|
|
|
public function currency()
|
|
|
|
{
|
2019-09-11 04:01:49 +02:00
|
|
|
return $this->belongsTo(Currency::class);
|
2019-08-28 04:36:53 +02:00
|
|
|
}
|
|
|
|
|
2019-09-12 05:23:44 +02:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Returns the entire filtered set
|
|
|
|
* of settings which have been merged from
|
|
|
|
* Client > Group > Company levels
|
|
|
|
*
|
|
|
|
* @return object stdClass object of settings
|
|
|
|
*/
|
2019-04-29 02:54:26 +02:00
|
|
|
public function getMergedSettings()
|
|
|
|
{
|
2019-09-11 07:32:47 +02:00
|
|
|
|
|
|
|
if($this->group_settings !== null)
|
|
|
|
{
|
|
|
|
|
2019-09-11 08:00:23 +02:00
|
|
|
$group_settings = ClientSettings::buildClientSettings(new ClientSettings($this->group_settings->settings), new ClientSettings($this->settings));
|
2019-09-11 07:32:47 +02:00
|
|
|
|
|
|
|
return ClientSettings::buildClientSettings(new CompanySettings($this->company->settings), $group_settings);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-05-24 11:23:38 +02:00
|
|
|
return ClientSettings::buildClientSettings(new CompanySettings($this->company->settings), new ClientSettings($this->settings));
|
2019-04-29 07:50:08 +02:00
|
|
|
}
|
|
|
|
|
2019-09-12 05:23:44 +02:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Returns a single setting
|
|
|
|
* which cascades from
|
|
|
|
* Client > Group > Company
|
|
|
|
*
|
|
|
|
* @param string $setting The Setting parameter
|
|
|
|
* @return mixed The setting requested
|
|
|
|
*/
|
2019-09-10 12:25:29 +02:00
|
|
|
public function getSetting($setting)
|
|
|
|
{
|
2019-09-11 08:00:23 +02:00
|
|
|
|
2019-09-10 12:25:29 +02:00
|
|
|
//check client level first
|
2019-09-11 05:46:23 +02:00
|
|
|
if($this->settings && isset($this->settings->{$setting}) && property_exists($this->settings, $setting))
|
2019-09-10 12:25:29 +02:00
|
|
|
return $this->settings->{$setting};
|
|
|
|
|
|
|
|
//check group level (if a group is assigned)
|
2019-09-11 07:32:47 +02:00
|
|
|
if($this->group_settings && isset($this->group_settings->settings->{$setting}) && property_exists($this->group_settings->settings, $setting))
|
2019-09-11 08:00:23 +02:00
|
|
|
return $this->group_settings->settings->{$setting};
|
|
|
|
|
2019-09-10 12:25:29 +02:00
|
|
|
|
|
|
|
//check company level
|
2019-09-11 05:46:23 +02:00
|
|
|
if(isset($this->company->settings->{$setting}) && property_exists($this->company->settings, $setting))
|
|
|
|
return $this->company->settings->{$setting};
|
2019-09-11 08:00:23 +02:00
|
|
|
|
2019-09-10 12:25:29 +02:00
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-04-28 07:31:32 +02:00
|
|
|
public function documents()
|
|
|
|
{
|
|
|
|
return $this->morphMany(Document::class, 'documentable');
|
|
|
|
}
|
|
|
|
|
2019-09-10 04:30:43 +02:00
|
|
|
public function group_settings()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(GroupSetting::class);
|
|
|
|
}
|
|
|
|
|
2019-09-09 08:25:33 +02:00
|
|
|
/**
|
|
|
|
* Generates an array of payment urls per client
|
|
|
|
* for a given amount.
|
|
|
|
*
|
|
|
|
* The route produced will provide the
|
|
|
|
* company_gateway and payment_type ids
|
|
|
|
*
|
|
|
|
* The invoice/s will need to be injected
|
|
|
|
* upstream of this method as they are not
|
|
|
|
* included in this logic.
|
|
|
|
*
|
|
|
|
* @param float $amount The amount to be charged
|
|
|
|
* @return array Array of payment labels and urls
|
|
|
|
*/
|
|
|
|
public function getPaymentMethods($amount) :array
|
2019-09-08 12:39:13 +02:00
|
|
|
{
|
2019-09-11 07:32:47 +02:00
|
|
|
$payment_gateways = $this->getSetting('payment_gateways');
|
2019-09-08 14:13:55 +02:00
|
|
|
|
2019-09-09 08:25:33 +02:00
|
|
|
/* If we have a custom gateway list pass this back first */
|
2019-09-11 07:32:47 +02:00
|
|
|
if($settings)
|
|
|
|
$gateways = $this->company->company_gateways->whereIn('id', $payment_gateways);
|
2019-09-09 04:19:19 +02:00
|
|
|
else
|
|
|
|
$gateways = $this->company->company_gateways;
|
|
|
|
|
|
|
|
//** Filter gateways based on limits
|
|
|
|
$gateways->filter(function ($method) use ($amount){
|
|
|
|
if($method->min_limit !== null && $amount < $method->min_limit)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if($method->max_limit !== null && $amount > $method->min_limit)
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
//** Get Payment methods from each gateway
|
|
|
|
$payment_methods = [];
|
|
|
|
|
|
|
|
foreach($gateways as $gateway)
|
|
|
|
foreach($gateway->driver()->gatewayTypes() as $type)
|
|
|
|
$payment_methods[] = [$gateway->id => $type];
|
|
|
|
|
|
|
|
//** Reduce gateways so that only one TYPE is present in the list ie. cannot have multiple credit card options
|
|
|
|
$payment_methods_collections = collect($payment_methods);
|
2019-09-09 06:54:39 +02:00
|
|
|
|
2019-09-09 08:25:33 +02:00
|
|
|
//** Plucks the remaining keys into its own collection
|
2019-09-09 04:19:19 +02:00
|
|
|
$payment_methods_intersect = $payment_methods_collections->intersectByKeys( $payment_methods_collections->flatten(1)->unique() );
|
|
|
|
|
2019-09-09 08:25:33 +02:00
|
|
|
$payment_urls = [];
|
|
|
|
|
|
|
|
//** Iterate through our list of payment gateways and methods and generate payment URLs
|
2019-09-09 05:27:16 +02:00
|
|
|
$payment_list = $payment_methods_intersect->map(function ($value, $key) {
|
|
|
|
|
|
|
|
$gateway = $gateways->where('id', $key)->first();
|
|
|
|
|
2019-09-09 06:54:39 +02:00
|
|
|
$fee_label = $gateway->calcGatewayFeeLabel($amount, $this);
|
2019-09-09 05:27:16 +02:00
|
|
|
|
2019-09-09 08:25:33 +02:00
|
|
|
$payment_urls[] = [
|
2019-09-09 06:54:39 +02:00
|
|
|
'label' => ctrans('texts.' . $gateway->type->alias) . $fee_label,
|
2019-09-12 08:10:21 +02:00
|
|
|
'url' => URL::signedRoute('payments.process', [
|
2019-09-09 08:25:33 +02:00
|
|
|
'company_gateway_id' => $key,
|
|
|
|
'payment_method_id' => $value])
|
|
|
|
];
|
2019-09-09 05:27:16 +02:00
|
|
|
|
2019-09-09 04:19:19 +02:00
|
|
|
});
|
2019-09-09 05:27:16 +02:00
|
|
|
|
2019-09-09 08:25:33 +02:00
|
|
|
return $payment_urls;
|
2019-09-08 12:39:13 +02:00
|
|
|
}
|
2019-04-24 02:22:02 +02:00
|
|
|
|
2019-04-29 07:50:08 +02:00
|
|
|
|
2018-10-15 07:00:48 +02:00
|
|
|
}
|