2019-10-05 00:58:51 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-10-05 00:58:51 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-10-05 00:58:51 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-10-05 00:58:51 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Requests\GroupSetting;
|
|
|
|
|
2023-10-20 07:30:11 +02:00
|
|
|
use App\DataMapper\CompanySettings;
|
|
|
|
use App\DataMapper\Settings\SettingsData;
|
2023-10-26 04:57:44 +02:00
|
|
|
use App\Http\Requests\Request;
|
2019-11-24 07:37:53 +01:00
|
|
|
use App\Http\ValidationRules\ValidClientGroupSettingsRule;
|
2019-10-05 00:58:51 +02:00
|
|
|
|
|
|
|
class UpdateGroupSettingRequest extends Request
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize() : bool
|
|
|
|
{
|
2023-09-05 07:12:49 +02:00
|
|
|
/** @var \App\Models\User $user */
|
|
|
|
$user = auth()->user();
|
|
|
|
|
|
|
|
return $user->can('edit', $this->group_setting);
|
2019-10-05 00:58:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function rules()
|
|
|
|
{
|
2023-09-05 07:12:49 +02:00
|
|
|
|
|
|
|
return [
|
|
|
|
'settings' => [new ValidClientGroupSettingsRule()],
|
|
|
|
];
|
2020-09-08 12:44:32 +02:00
|
|
|
|
2019-10-05 00:58:51 +02:00
|
|
|
}
|
|
|
|
|
2022-06-24 03:55:41 +02:00
|
|
|
public function prepareForValidation()
|
2019-11-11 13:21:19 +01:00
|
|
|
{
|
|
|
|
$input = $this->all();
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
if (array_key_exists('settings', $input)) {
|
|
|
|
$input['settings'] = $this->filterSaveableSettings($input['settings']);
|
|
|
|
}
|
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
$this->replace($input);
|
2019-11-11 13:21:19 +01:00
|
|
|
}
|
2020-04-21 07:16:45 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* For the hosted platform, we restrict the feature settings.
|
|
|
|
*
|
2020-09-06 11:38:10 +02:00
|
|
|
* This method will trim the company settings object
|
|
|
|
* down to the free plan setting properties which
|
2020-04-21 07:16:45 +02:00
|
|
|
* are saveable
|
2020-09-06 11:38:10 +02:00
|
|
|
*
|
2020-04-21 07:16:45 +02:00
|
|
|
* @param object $settings
|
2023-07-26 04:59:36 +02:00
|
|
|
* @return array $settings
|
2020-04-21 07:16:45 +02:00
|
|
|
*/
|
|
|
|
private function filterSaveableSettings($settings)
|
|
|
|
{
|
2023-10-20 07:30:11 +02:00
|
|
|
/** @var \App\Models\User $user */
|
|
|
|
$user = auth()->user();
|
2020-04-21 07:16:45 +02:00
|
|
|
|
2023-10-20 07:30:11 +02:00
|
|
|
$settings_data = new SettingsData();
|
|
|
|
$settings = $settings_data->cast($settings)->toObject();
|
|
|
|
|
|
|
|
if (! $user->account->isFreeHostedClient()) {
|
|
|
|
return (array)$settings;
|
2020-09-06 11:38:10 +02:00
|
|
|
}
|
2020-04-21 07:16:45 +02:00
|
|
|
|
|
|
|
$saveable_casts = CompanySettings::$free_plan_casts;
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
foreach ($settings as $key => $value) {
|
|
|
|
if (! array_key_exists($key, $saveable_casts)) {
|
2020-04-21 07:16:45 +02:00
|
|
|
unset($settings->{$key});
|
2020-09-06 11:38:10 +02:00
|
|
|
}
|
2020-04-21 07:16:45 +02:00
|
|
|
}
|
2023-10-20 07:30:11 +02:00
|
|
|
|
2022-09-08 03:30:40 +02:00
|
|
|
return (array)$settings;
|
2020-04-21 07:16:45 +02:00
|
|
|
}
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|