2018-06-12 05:56:57 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Http\Requests\Api\Client\Account;
|
|
|
|
|
|
|
|
use Pterodactyl\Models\User;
|
2021-08-05 03:55:15 +00:00
|
|
|
use Pterodactyl\Http\Requests\Api\Client\AccountApiRequest;
|
2018-06-12 05:56:57 +00:00
|
|
|
use Pterodactyl\Exceptions\Http\Base\InvalidPasswordProvidedException;
|
|
|
|
|
2021-08-05 03:55:15 +00:00
|
|
|
class UpdateEmailRequest extends AccountApiRequest
|
2018-06-12 05:56:57 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @throws \Pterodactyl\Exceptions\Http\Base\InvalidPasswordProvidedException
|
|
|
|
*/
|
|
|
|
public function authorize(): bool
|
|
|
|
{
|
|
|
|
// Verify password matches when changing password or email.
|
2021-01-23 20:33:34 +00:00
|
|
|
if (!password_verify($this->input('password'), $this->user()->password)) {
|
2018-07-15 18:44:18 +00:00
|
|
|
throw new InvalidPasswordProvidedException(trans('validation.internal.invalid_password'));
|
2018-06-12 05:56:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function rules(): array
|
|
|
|
{
|
2019-09-05 05:26:28 +00:00
|
|
|
$rules = User::getRulesForUpdate($this->user());
|
2018-06-12 05:56:57 +00:00
|
|
|
|
2018-06-16 21:30:20 +00:00
|
|
|
return ['email' => $rules['email']];
|
2018-06-12 05:56:57 +00:00
|
|
|
}
|
|
|
|
}
|