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

79 lines
2.0 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;
use App\DataMapper\CompanySettings;
2019-10-05 00:58:51 +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
{
return auth()->user()->can('edit', $this->group_setting);
}
public function rules()
{
$rules['settings'] = new ValidClientGroupSettingsRule();
2020-10-14 12:45:26 +02:00
// $rules['name'] = 'unique:group_settings,name,'.$this->id.',id,company_id,'.$this->group_setting->company_id;
2020-09-08 12:44:32 +02:00
2019-10-29 10:51:23 +01:00
return $rules;
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
* @return stdClass $settings
*/
private function filterSaveableSettings($settings)
{
$account = $this->group_setting->company->account;
if (! $account->isFreeHostedClient()) {
return $settings;
}
$saveable_casts = CompanySettings::$free_plan_casts;
foreach ($settings as $key => $value) {
if (! array_key_exists($key, $saveable_casts)) {
unset($settings->{$key});
}
}
return (array)$settings;
}
}