misc_pterodactyl-panel/app/Http/Controllers/Auth/LoginController.php

131 lines
4.1 KiB
PHP
Raw Normal View History

<?php
2016-12-07 22:46:38 +00:00
namespace Pterodactyl\Http\Controllers\Auth;
use Carbon\CarbonImmutable;
2019-06-22 20:33:11 +00:00
use Illuminate\Support\Str;
use Illuminate\Http\Request;
2019-06-22 20:33:11 +00:00
use Illuminate\Auth\AuthManager;
use Illuminate\Http\JsonResponse;
2018-04-08 20:46:32 +00:00
use Illuminate\Contracts\View\View;
use LaravelWebauthn\Facades\Webauthn;
2019-06-22 20:33:11 +00:00
use Illuminate\Contracts\Config\Repository;
use Illuminate\Contracts\View\Factory as ViewFactory;
use Illuminate\Contracts\Cache\Repository as CacheRepository;
use Pterodactyl\Contracts\Repository\UserRepositoryInterface;
use Pterodactyl\Exceptions\Repository\RecordNotFoundException;
class LoginController extends AbstractLoginController
{
2019-06-22 20:33:11 +00:00
/**
* @var string
2019-06-22 20:33:11 +00:00
*/
private const SESSION_PUBLICKEY_REQUEST = 'webauthn.publicKeyRequest';
2019-06-22 20:33:11 +00:00
private CacheRepository $cache;
private UserRepositoryInterface $repository;
private ViewFactory $view;
2019-06-22 20:33:11 +00:00
/**
* LoginController constructor.
*/
public function __construct(
AuthManager $auth,
Repository $config,
CacheRepository $cache,
UserRepositoryInterface $repository,
ViewFactory $view
) {
parent::__construct($auth, $config);
$this->cache = $cache;
$this->repository = $repository;
$this->view = $view;
2019-06-22 20:33:11 +00:00
}
2018-04-08 20:46:32 +00:00
/**
* Handle all incoming requests for the authentication routes and render the
* base authentication view component. React will take over at this point and
2018-04-08 20:46:32 +00:00
* turn the login area into a SPA.
*/
public function index(): View
{
2019-06-22 20:33:11 +00:00
return $this->view->make('templates/auth.core');
2018-04-08 20:46:32 +00:00
}
/**
* Handle a login request to the application.
*
2020-04-25 20:01:16 +00:00
* @return \Illuminate\Http\JsonResponse|void
2017-12-17 19:07:38 +00:00
*
* @throws \Pterodactyl\Exceptions\DisplayException
2017-12-17 19:07:38 +00:00
* @throws \Illuminate\Validation\ValidationException
*/
public function login(Request $request): JsonResponse
{
$username = $request->input('user');
$useColumn = $this->getField($username);
if ($this->hasTooManyLoginAttempts($request)) {
$this->fireLockoutEvent($request);
2017-12-17 19:07:38 +00:00
$this->sendLockoutResponse($request);
return;
}
try {
/** @var \Pterodactyl\Models\User $user */
$user = $this->repository->findFirstWhere([[$useColumn, '=', $username]]);
} catch (RecordNotFoundException $exception) {
$this->sendFailedLoginResponse($request);
return;
}
// Ensure that the account is using a valid username and password before trying to
// continue. Previously this was handled in the 2FA checkpoint, however that has
// a flaw in which you can discover if an account exists simply by seeing if you
// can proceed to the next step in the login process.
2021-01-23 20:33:34 +00:00
if (!password_verify($request->input('password'), $user->password)) {
$this->sendFailedLoginResponse($request, $user);
return;
}
$webauthnKeys = $user->webauthnKeys()->get();
if (sizeof($webauthnKeys) > 0) {
2019-06-22 20:33:11 +00:00
$token = Str::random(64);
$this->cache->put($token, $user->id, CarbonImmutable::now()->addMinutes(5));
2019-06-22 20:33:11 +00:00
$publicKey = Webauthn::getAuthenticateData($user);
$request->session()->put(self::SESSION_PUBLICKEY_REQUEST, $publicKey);
$request->session()->save();
$methods = ['webauthn'];
if ($user->use_totp) {
$methods[] = 'totp';
}
return new JsonResponse([
'complete' => false,
'methods' => $methods,
'confirmation_token' => $token,
'webauthn' => [
'public_key' => $publicKey,
2019-06-22 20:33:11 +00:00
],
]);
} else if ($user->use_totp) {
$token = Str::random(64);
$this->cache->put($token, $user->id, CarbonImmutable::now()->addMinutes(5));
return new JsonResponse([
'complete' => false,
'methods' => ['totp'],
'confirmation_token' => $token,
]);
}
$this->auth->guard()->login($user, true);
return $this->sendLoginResponse($user, $request);
2017-02-02 03:58:48 +00:00
}
}