mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 15:26:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Http\Requests\Api\Client\Account;
 | 
						|
 | 
						|
use App\Models\User;
 | 
						|
use Illuminate\Container\Container;
 | 
						|
use Illuminate\Contracts\Hashing\Hasher;
 | 
						|
use App\Http\Requests\Api\Client\ClientApiRequest;
 | 
						|
use App\Exceptions\Http\Base\InvalidPasswordProvidedException;
 | 
						|
 | 
						|
class UpdateEmailRequest extends ClientApiRequest
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @throws \App\Exceptions\Http\Base\InvalidPasswordProvidedException
 | 
						|
     */
 | 
						|
    public function authorize(): bool
 | 
						|
    {
 | 
						|
        if (!parent::authorize()) {
 | 
						|
            return false;
 | 
						|
        }
 | 
						|
 | 
						|
        $hasher = Container::getInstance()->make(Hasher::class);
 | 
						|
 | 
						|
        // Verify password matches when changing password or email.
 | 
						|
        if (!$hasher->check($this->input('password'), $this->user()->password)) {
 | 
						|
            throw new InvalidPasswordProvidedException(trans('validation.internal.invalid_password'));
 | 
						|
        }
 | 
						|
 | 
						|
        return true;
 | 
						|
    }
 | 
						|
 | 
						|
    public function rules(): array
 | 
						|
    {
 | 
						|
        $rules = User::getRulesForUpdate($this->user());
 | 
						|
 | 
						|
        return ['email' => $rules['email']];
 | 
						|
    }
 | 
						|
}
 |