2018-06-06 06:00:01 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Http\Controllers\Api\Client;
|
|
|
|
|
|
|
|
use Illuminate\Http\Request;
|
2018-06-17 23:53:24 +00:00
|
|
|
use Illuminate\Http\Response;
|
2021-03-06 22:49:44 +00:00
|
|
|
use Illuminate\Auth\AuthManager;
|
2018-06-12 05:56:57 +00:00
|
|
|
use Pterodactyl\Services\Users\UserUpdateService;
|
2018-06-06 06:00:01 +00:00
|
|
|
use Pterodactyl\Transformers\Api\Client\AccountTransformer;
|
2018-06-12 05:56:57 +00:00
|
|
|
use Pterodactyl\Http\Requests\Api\Client\Account\UpdateEmailRequest;
|
2018-06-17 23:53:24 +00:00
|
|
|
use Pterodactyl\Http\Requests\Api\Client\Account\UpdatePasswordRequest;
|
2018-06-06 06:00:01 +00:00
|
|
|
|
|
|
|
class AccountController extends ClientApiController
|
|
|
|
{
|
2021-03-06 22:49:44 +00:00
|
|
|
private AuthManager $authManager;
|
2021-03-05 17:03:12 +00:00
|
|
|
private UserUpdateService $updateService;
|
2019-12-28 20:07:42 +00:00
|
|
|
|
2018-06-12 05:56:57 +00:00
|
|
|
/**
|
|
|
|
* AccountController constructor.
|
|
|
|
*/
|
2021-03-06 22:49:44 +00:00
|
|
|
public function __construct(AuthManager $authManager, UserUpdateService $updateService)
|
2018-06-12 05:56:57 +00:00
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
|
2021-03-06 22:49:44 +00:00
|
|
|
$this->authManager = $authManager;
|
2021-03-05 17:03:12 +00:00
|
|
|
$this->updateService = $updateService;
|
2018-06-12 05:56:57 +00:00
|
|
|
}
|
|
|
|
|
2021-03-05 17:03:12 +00:00
|
|
|
/**
|
|
|
|
* Get's information about the currently authenticated user.
|
|
|
|
*
|
|
|
|
* @throws \Illuminate\Contracts\Container\BindingResolutionException
|
|
|
|
*/
|
2018-06-06 06:00:01 +00:00
|
|
|
public function index(Request $request): array
|
|
|
|
{
|
|
|
|
return $this->fractal->item($request->user())
|
|
|
|
->transformWith($this->getTransformer(AccountTransformer::class))
|
|
|
|
->toArray();
|
|
|
|
}
|
2018-06-12 05:56:57 +00:00
|
|
|
|
|
|
|
/**
|
2018-06-17 23:53:24 +00:00
|
|
|
* Update the authenticated user's email address.
|
2018-06-12 05:56:57 +00:00
|
|
|
*
|
|
|
|
* @throws \Pterodactyl\Exceptions\Model\DataValidationException
|
|
|
|
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
|
|
|
|
*/
|
2021-03-06 22:49:44 +00:00
|
|
|
public function updateEmail(UpdateEmailRequest $request): Response
|
2018-06-12 05:56:57 +00:00
|
|
|
{
|
2018-06-17 23:53:24 +00:00
|
|
|
$this->updateService->handle($request->user(), $request->validated());
|
2018-06-12 05:56:57 +00:00
|
|
|
|
2021-03-05 17:03:12 +00:00
|
|
|
return $this->returnNoContent();
|
2018-06-17 23:53:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-12-28 20:07:42 +00:00
|
|
|
* Update the authenticated user's password. All existing sessions will be logged
|
|
|
|
* out immediately.
|
2018-06-17 23:53:24 +00:00
|
|
|
*
|
|
|
|
* @throws \Pterodactyl\Exceptions\Model\DataValidationException
|
|
|
|
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
|
|
|
|
*/
|
2021-03-06 22:49:44 +00:00
|
|
|
public function updatePassword(UpdatePasswordRequest $request): Response
|
2018-06-17 23:53:24 +00:00
|
|
|
{
|
|
|
|
$this->updateService->handle($request->user(), $request->validated());
|
|
|
|
|
2021-03-06 22:49:44 +00:00
|
|
|
$this->authManager->logoutOtherDevices($request->input('password'));
|
2019-12-28 20:07:42 +00:00
|
|
|
|
2021-03-05 17:03:12 +00:00
|
|
|
return $this->returnNoContent();
|
2018-06-12 05:56:57 +00:00
|
|
|
}
|
2018-06-06 06:00:01 +00:00
|
|
|
}
|