mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-25 05:09:24 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Invoice Ninja (https://invoiceninja.com).
 | |
|  *
 | |
|  * @link https://github.com/invoiceninja/invoiceninja source repository
 | |
|  *
 | |
|  * @copyright Copyright (c) 2021. 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->user->id || auth()->user()->isAdmin();
 | |
|     }
 | |
| 
 | |
|     public function rules()
 | |
|     {
 | |
|         $input = $this->all();
 | |
| 
 | |
|         $rules = [
 | |
|             'password' => 'nullable|string|min:6',
 | |
|         ];
 | |
| 
 | |
|         if (isset($input['email'])) {
 | |
|             $rules['email'] = ['email', 'sometimes', new UniqueUserRule($this->user, $input['email'])];
 | |
|         }
 | |
| 
 | |
|         return $rules;
 | |
|     }
 | |
| 
 | |
|     protected function prepareForValidation()
 | |
|     {
 | |
|         $input = $this->all();
 | |
| 
 | |
| 
 | |
|         $this->replace($input);
 | |
|     }
 | |
| }
 |