2021-10-01 13:40:37 +02:00
|
|
|
<?php
|
|
|
|
|
2022-03-15 14:47:07 +01:00
|
|
|
namespace App\Http\Requests;
|
2021-10-01 13:40:37 +02:00
|
|
|
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
2021-11-13 13:36:34 +01:00
|
|
|
use Illuminate\Support\Facades\Auth;
|
2023-03-25 00:20:39 +01:00
|
|
|
use Illuminate\Validation\Rule;
|
2021-10-01 13:40:37 +02:00
|
|
|
|
|
|
|
class UserUpdateRequest 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-10-01 13:40:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return [
|
2023-03-25 00:20:39 +01:00
|
|
|
'name' => [
|
|
|
|
'required',
|
|
|
|
'string',
|
2023-08-04 09:48:47 +02:00
|
|
|
'max:191',
|
2023-03-25 00:20:39 +01:00
|
|
|
Rule::unique('users')->ignore($this->user()->id),
|
|
|
|
],
|
|
|
|
'email' => [
|
|
|
|
'required',
|
|
|
|
'email',
|
2023-08-04 09:48:47 +02:00
|
|
|
'max:191',
|
2023-03-25 00:20:39 +01:00
|
|
|
Rule::unique('users')->ignore($this->user()->id),
|
|
|
|
],
|
2021-10-01 13:40:37 +02:00
|
|
|
'password' => 'required',
|
|
|
|
];
|
|
|
|
}
|
2023-03-10 15:57:34 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Prepare the data for validation.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected function prepareForValidation()
|
|
|
|
{
|
|
|
|
$this->merge([
|
|
|
|
'email' => strtolower($this->email),
|
|
|
|
]);
|
|
|
|
}
|
2022-11-22 15:15:52 +01:00
|
|
|
}
|