mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
b0da84baa7
* Use native Laravel prepareForValidation method instead of custom sanitize * fix quote transformer
55 lines
1.1 KiB
PHP
55 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Http\Requests\User;
|
|
|
|
use App\Http\Requests\Request;
|
|
use App\Http\ValidationRules\UniqueUserRule;
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
|
public function rules()
|
|
{
|
|
|
|
$input = $this->all();
|
|
$rules = [];
|
|
|
|
if(isset($input['email']))
|
|
$rules['email'] = ['sometimes', new UniqueUserRule($this->user, $input['email'])];
|
|
|
|
return $rules;
|
|
}
|
|
|
|
protected function prepareForValidation()
|
|
{
|
|
$input = $this->all();
|
|
|
|
if(isset($input['company_user']) && !auth()->user()->isAdmin())
|
|
unset($input['company_user']);
|
|
|
|
$this->replace($input);
|
|
}
|
|
|
|
|
|
} |