2018-06-12 05:56:57 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Http\Requests\Api\Client\Account;
|
|
|
|
|
|
|
|
use Pterodactyl\Models\User;
|
|
|
|
use Pterodactyl\Http\Requests\Api\Client\ClientApiRequest;
|
|
|
|
use Pterodactyl\Exceptions\Http\Base\InvalidPasswordProvidedException;
|
|
|
|
|
|
|
|
class UpdateEmailRequest extends ClientApiRequest
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*
|
|
|
|
* @throws \Pterodactyl\Exceptions\Http\Base\InvalidPasswordProvidedException
|
|
|
|
*/
|
|
|
|
public function authorize(): bool
|
|
|
|
{
|
|
|
|
if (! parent::authorize()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Verify password matches when changing password or email.
|
|
|
|
if (! password_verify($this->input('password'), $this->user()->password)) {
|
|
|
|
throw new InvalidPasswordProvidedException(trans('base.account.invalid_password'));
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function rules(): array
|
|
|
|
{
|
|
|
|
$rules = User::getUpdateRulesForId($this->user()->id);
|
|
|
|
|
2018-06-16 21:30:20 +00:00
|
|
|
return ['email' => $rules['email']];
|
2018-06-12 05:56:57 +00:00
|
|
|
}
|
|
|
|
}
|