1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Http/Requests/User/UpdateUserRequest.php

55 lines
1.2 KiB
PHP
Raw Normal View History

2019-04-27 11:20:03 +02:00
<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
2019-05-11 05:32:07 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 05:32:07 +02:00
*
* @license https://opensource.org/licenses/AAL
*/
2019-04-27 11:20:03 +02:00
namespace App\Http\Requests\User;
use App\Http\Requests\Request;
2019-06-05 02:43:23 +02:00
use App\Http\ValidationRules\UniqueUserRule;
2019-04-27 11:20:03 +02:00
class UpdateUserRequest extends Request
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize() : bool
{
return auth()->user()->id === $this->id || auth()->user()->isAdmin();
2019-04-27 11:20:03 +02:00
}
2019-04-28 12:25:18 +02:00
public function rules()
{
2019-06-05 02:43:23 +02:00
$input = $this->all();
$rules = [
'password' => 'nullable|string|min:6',
];
2019-06-05 02:43:23 +02:00
if (isset($input['email'])) {
2021-01-13 13:20:15 +01:00
$rules['email'] = ['email', 'sometimes', new UniqueUserRule($this->user, $input['email'])];
}
return $rules;
2019-04-28 12:25:18 +02:00
}
protected function prepareForValidation()
2019-06-12 01:38:16 +02:00
{
$input = $this->all();
if (isset($input['company_user']) && ! auth()->user()->isAdmin()) {
unset($input['company_user']);
}
2019-06-12 01:38:16 +02:00
$this->replace($input);
2019-06-12 01:38:16 +02:00
}
}