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-10-06 20:45: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-10-06 21:02:30 +00:00
|
|
|
private UserUpdateService $updateService;
|
|
|
|
|
2021-10-06 20:45:44 +00:00
|
|
|
/**
|
|
|
|
* @var \Illuminate\Auth\SessionGuard
|
|
|
|
*/
|
2021-10-06 21:02:30 +00:00
|
|
|
private $sessionGuard;
|
2019-12-28 20:07:42 +00:00
|
|
|
|
2018-06-12 05:56:57 +00:00
|
|
|
/**
|
|
|
|
* AccountController constructor.
|
|
|
|
*/
|
2021-10-06 21:02:30 +00:00
|
|
|
public function __construct(UserUpdateService $updateService, AuthManager $sessionGuard)
|
2018-06-12 05:56:57 +00:00
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
|
2021-03-05 17:03:12 +00:00
|
|
|
$this->updateService = $updateService;
|
2021-10-06 21:02:30 +00:00
|
|
|
$this->sessionGuard = $sessionGuard;
|
2018-06-12 05:56:57 +00:00
|
|
|
}
|
|
|
|
|
2021-03-05 17:03:12 +00:00
|
|
|
/**
|
2021-08-21 19:35:55 +00:00
|
|
|
* Gets information about the currently authenticated user.
|
2021-03-05 17:03:12 +00:00
|
|
|
*/
|
2018-06-06 06:00:01 +00:00
|
|
|
public function index(Request $request): array
|
|
|
|
{
|
|
|
|
return $this->fractal->item($request->user())
|
2021-08-07 20:06:45 +00:00
|
|
|
->transformWith(AccountTransformer::class)
|
2018-06-06 06:00:01 +00:00
|
|
|
->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
|
|
|
*/
|
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
|
|
|
*
|
2021-08-16 00:37:12 +00:00
|
|
|
* @throws \Throwable
|
2018-06-17 23:53:24 +00:00
|
|
|
*/
|
2021-03-06 22:49:44 +00:00
|
|
|
public function updatePassword(UpdatePasswordRequest $request): Response
|
2018-06-17 23:53:24 +00:00
|
|
|
{
|
2021-08-16 00:37:12 +00:00
|
|
|
$user = $this->updateService->handle($request->user(), $request->validated());
|
|
|
|
|
|
|
|
// If you do not update the user in the session you'll end up working with a
|
|
|
|
// cached copy of the user that does not include the updated password. Do this
|
|
|
|
// to correctly store the new user details in the guard and allow the logout
|
|
|
|
// other devices functionality to work.
|
2021-10-06 21:02:30 +00:00
|
|
|
$this->sessionGuard->setUser($user);
|
2018-06-17 23:53:24 +00:00
|
|
|
|
2021-10-06 21:02:30 +00:00
|
|
|
// TODO: Find another way to do this, function doesn't exist due to API changes.
|
|
|
|
//$this->sessionGuard->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
|
|
|
}
|