1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/DataMapper/ClientSettings.php

95 lines
2.5 KiB
PHP
Raw Normal View History

<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
2019-05-11 05:32:07 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 05:32:07 +02:00
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\DataMapper;
use App\Models\Client;
2020-10-28 11:10:49 +01:00
use stdClass;
/**
* ClientSettings.
*
* Client settings are built as a superset of Company Settings
*
* If no client settings is specified, the default company setting is used.
*
* Client settings are passed down to the entity level where they can be further customized and then saved
* into the settings column of the entity, so there is no need to create additional entity level settings handlers.
*/
class ClientSettings extends BaseSettings
{
/**
* Settings which which are unique to client settings.
*/
public $industry_id;
public $size_id;
public static $casts = [
'industry_id' => 'string',
'size_id' => 'string',
];
/**
* Cast object values and return entire class
* prevents missing properties from not being returned
* and always ensure an up to date class is returned.
*
2020-10-28 11:10:49 +01:00
* @param $obj
*/
public function __construct($obj)
{
parent::__construct($obj);
}
2019-09-19 07:50:05 +02:00
/**
* Default Client Settings scaffold.
*
2020-10-28 11:10:49 +01:00
* @return stdClass
*/
2020-10-28 11:10:49 +01:00
public static function defaults() : stdClass
{
$data = (object) [
'entity' => (string) Client::class,
'industry_id' => '',
'size_id' => '',
];
return self::setCasts($data, self::$casts);
}
/**
* Merges settings from Company to Client.
*
2020-10-28 11:10:49 +01:00
* @param stdClass $company_settings
* @param stdClass $client_settings
* @return stdClass of merged settings
*/
public static function buildClientSettings($company_settings, $client_settings)
{
if (! $client_settings) {
return $company_settings;
}
foreach ($company_settings as $key => $value) {
/* pseudo code
if the property exists and is a string BUT has no length, treat it as TRUE
*/
if (((property_exists($client_settings, $key) && is_string($client_settings->{$key}) && (iconv_strlen($client_settings->{$key}) < 1)))
|| ! isset($client_settings->{$key})
&& property_exists($company_settings, $key)) {
$client_settings->{$key} = $company_settings->{$key};
}
}
return $client_settings;
}
}