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-02-14 23:28:23 +01:00
|
|
|
use App\DataMapper\ClientSettings;
|
2023-02-16 02:36:09 +01:00
|
|
|
use App\Http\Requests\Request;
|
2019-11-24 07:37:53 +01:00
|
|
|
use App\Http\ValidationRules\ValidClientGroupSettingsRule;
|
2023-02-16 02:36:09 +01:00
|
|
|
use App\Models\Account;
|
|
|
|
use App\Models\GroupSetting;
|
2019-10-05 00:58:51 +02:00
|
|
|
|
|
|
|
class StoreGroupSettingRequest extends Request
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize() : bool
|
|
|
|
{
|
2023-02-14 23:50:46 +01:00
|
|
|
return auth()->user()->can('create', GroupSetting::class) && auth()->user()->account->hasFeature(Account::FEATURE_API);
|
2019-10-05 00:58:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function rules()
|
|
|
|
{
|
2020-09-08 12:44:32 +02:00
|
|
|
$rules['name'] = 'required|unique:group_settings,name,null,null,company_id,'.auth()->user()->companyId();
|
|
|
|
|
2019-11-24 07:37:53 +01:00
|
|
|
$rules['settings'] = new ValidClientGroupSettingsRule();
|
2019-10-05 00:58:51 +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()
|
2019-10-05 00:58:51 +02:00
|
|
|
{
|
|
|
|
$input = $this->all();
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-03-06 06:08:44 +01:00
|
|
|
$group_settings = ClientSettings::defaults();
|
2020-09-06 11:38:10 +02:00
|
|
|
|
|
|
|
if (array_key_exists('settings', $input) && ! empty($input['settings'])) {
|
2020-03-21 06:37:30 +01:00
|
|
|
foreach ($input['settings'] as $key => $value) {
|
2020-03-06 06:08:44 +01:00
|
|
|
$group_settings->{$key} = $value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-07 13:28:35 +02:00
|
|
|
$input['settings'] = (array)$group_settings;
|
2020-03-06 06:08:44 +01:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
$this->replace($input);
|
2019-10-05 00:58:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function messages()
|
|
|
|
{
|
|
|
|
return [
|
2020-09-06 11:38:10 +02:00
|
|
|
'settings' => 'settings must be a valid json structure',
|
2019-10-05 00:58:51 +02:00
|
|
|
];
|
|
|
|
}
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|