1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Http/Requests/GroupSetting/UpdateGroupSettingRequest.php

87 lines
2.1 KiB
PHP
Raw Normal View History

2019-10-05 00:58:51 +02:00
<?php
/**
* 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;
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()
{
$input = $this->all();
if (array_key_exists('settings', $input)) {
$input['settings'] = $this->filterSaveableSettings($input['settings']);
}
$this->replace($input);
}
/**
* For the hosted platform, we restrict the feature settings.
*
* This method will trim the company settings object
* down to the free plan setting properties which
* are saveable
*
* @param object $settings
2023-07-26 04:59:36 +02:00
* @return array $settings
*/
private function filterSaveableSettings($settings)
{
2023-10-20 07:30:11 +02:00
/** @var \App\Models\User $user */
$user = auth()->user();
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;
}
$saveable_casts = CompanySettings::$free_plan_casts;
foreach ($settings as $key => $value) {
if (! array_key_exists($key, $saveable_casts)) {
unset($settings->{$key});
}
}
2023-10-20 07:30:11 +02:00
return (array)$settings;
}
}