2021-09-26 22:06:49 +02:00
|
|
|
<?php
|
|
|
|
|
2021-11-07 21:57:22 +01:00
|
|
|
namespace App\Api\v1\Requests;
|
2021-09-26 22:06:49 +02:00
|
|
|
|
2024-03-30 15:40:42 +01:00
|
|
|
use App\Rules\IsValidEmailList;
|
2021-09-26 22:06:49 +02:00
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
2021-11-13 13:36:34 +01:00
|
|
|
use Illuminate\Support\Facades\Auth;
|
2021-09-26 22:06:49 +02:00
|
|
|
|
|
|
|
class SettingUpdateRequest extends FormRequest
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize()
|
|
|
|
{
|
2021-11-13 13:36:34 +01:00
|
|
|
return Auth::check();
|
2021-09-26 22:06:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function rules()
|
|
|
|
{
|
2024-02-29 13:42:28 +01:00
|
|
|
$rule = [
|
|
|
|
'value' => [
|
|
|
|
'required',
|
2024-03-29 09:42:54 +01:00
|
|
|
],
|
2021-09-26 22:06:49 +02:00
|
|
|
];
|
2024-02-29 13:42:28 +01:00
|
|
|
|
2024-03-14 15:09:34 +01:00
|
|
|
if ($this->route()?->parameter('settingName') == 'restrictList') {
|
2024-03-30 15:40:42 +01:00
|
|
|
$rule['value'][] = new IsValidEmailList;
|
2024-02-29 13:42:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return $rule;
|
2021-09-26 22:06:49 +02:00
|
|
|
}
|
|
|
|
}
|