2018-06-17 23:53:24 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Http\Requests\Api\Client\Account;
|
|
|
|
|
2021-08-16 00:37:12 +00:00
|
|
|
use Illuminate\Container\Container;
|
|
|
|
use Illuminate\Contracts\Hashing\Hasher;
|
2018-06-17 23:53:24 +00:00
|
|
|
use Pterodactyl\Http\Requests\Api\Client\ClientApiRequest;
|
|
|
|
use Pterodactyl\Exceptions\Http\Base\InvalidPasswordProvidedException;
|
|
|
|
|
|
|
|
class UpdatePasswordRequest extends ClientApiRequest
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @throws \Pterodactyl\Exceptions\Http\Base\InvalidPasswordProvidedException
|
|
|
|
*/
|
|
|
|
public function authorize(): bool
|
|
|
|
{
|
2021-01-23 20:33:34 +00:00
|
|
|
if (!parent::authorize()) {
|
2018-06-17 23:53:24 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-08-16 00:37:12 +00:00
|
|
|
$hasher = Container::getInstance()->make(Hasher::class);
|
|
|
|
|
2018-06-17 23:53:24 +00:00
|
|
|
// Verify password matches when changing password or email.
|
2021-08-16 00:37:12 +00:00
|
|
|
if (!$hasher->check($this->input('current_password'), $this->user()->password)) {
|
2018-07-15 18:44:18 +00:00
|
|
|
throw new InvalidPasswordProvidedException(trans('validation.internal.invalid_password'));
|
2018-06-17 23:53:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function rules(): array
|
|
|
|
{
|
2020-11-29 21:28:46 +00:00
|
|
|
return [
|
|
|
|
'password' => ['required', 'string', 'confirmed', 'min:8'],
|
|
|
|
];
|
2018-06-17 23:53:24 +00:00
|
|
|
}
|
|
|
|
}
|