Finish authentication flow for 2FA
This commit is contained in:
parent
7f3ab8aadf
commit
212773d63c
9 changed files with 232 additions and 162 deletions
|
@ -6,45 +6,17 @@ use Illuminate\Http\Request;
|
||||||
use Pterodactyl\Models\User;
|
use Pterodactyl\Models\User;
|
||||||
use Illuminate\Auth\AuthManager;
|
use Illuminate\Auth\AuthManager;
|
||||||
use Illuminate\Http\JsonResponse;
|
use Illuminate\Http\JsonResponse;
|
||||||
use PragmaRX\Google2FA\Google2FA;
|
|
||||||
use Illuminate\Auth\Events\Failed;
|
use Illuminate\Auth\Events\Failed;
|
||||||
|
use Illuminate\Contracts\Config\Repository;
|
||||||
use Pterodactyl\Exceptions\DisplayException;
|
use Pterodactyl\Exceptions\DisplayException;
|
||||||
use Pterodactyl\Http\Controllers\Controller;
|
use Pterodactyl\Http\Controllers\Controller;
|
||||||
use Illuminate\Contracts\Auth\Authenticatable;
|
use Illuminate\Contracts\Auth\Authenticatable;
|
||||||
use Illuminate\Contracts\Encryption\Encrypter;
|
|
||||||
use Illuminate\Foundation\Auth\AuthenticatesUsers;
|
use Illuminate\Foundation\Auth\AuthenticatesUsers;
|
||||||
use Illuminate\Contracts\Cache\Repository as CacheRepository;
|
|
||||||
use Pterodactyl\Contracts\Repository\UserRepositoryInterface;
|
|
||||||
|
|
||||||
abstract class AbstractLoginController extends Controller
|
abstract class AbstractLoginController extends Controller
|
||||||
{
|
{
|
||||||
use AuthenticatesUsers;
|
use AuthenticatesUsers;
|
||||||
|
|
||||||
/**
|
|
||||||
* @var \Illuminate\Auth\AuthManager
|
|
||||||
*/
|
|
||||||
protected $auth;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var \Illuminate\Contracts\Cache\Repository
|
|
||||||
*/
|
|
||||||
protected $cache;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var \Illuminate\Contracts\Encryption\Encrypter
|
|
||||||
*/
|
|
||||||
protected $encrypter;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var \PragmaRX\Google2FA\Google2FA
|
|
||||||
*/
|
|
||||||
protected $google2FA;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var \Pterodactyl\Contracts\Repository\UserRepositoryInterface
|
|
||||||
*/
|
|
||||||
protected $repository;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Lockout time for failed login requests.
|
* Lockout time for failed login requests.
|
||||||
*
|
*
|
||||||
|
@ -66,30 +38,29 @@ abstract class AbstractLoginController extends Controller
|
||||||
*/
|
*/
|
||||||
protected $redirectTo = '/';
|
protected $redirectTo = '/';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var \Illuminate\Auth\AuthManager
|
||||||
|
*/
|
||||||
|
protected $auth;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var \Illuminate\Contracts\Config\Repository
|
||||||
|
*/
|
||||||
|
protected $config;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* LoginController constructor.
|
* LoginController constructor.
|
||||||
*
|
*
|
||||||
* @param \Illuminate\Auth\AuthManager $auth
|
* @param \Illuminate\Auth\AuthManager $auth
|
||||||
* @param \Illuminate\Contracts\Cache\Repository $cache
|
* @param \Illuminate\Contracts\Config\Repository $config
|
||||||
* @param \Illuminate\Contracts\Encryption\Encrypter $encrypter
|
|
||||||
* @param \PragmaRX\Google2FA\Google2FA $google2FA
|
|
||||||
* @param \Pterodactyl\Contracts\Repository\UserRepositoryInterface $repository
|
|
||||||
*/
|
*/
|
||||||
public function __construct(
|
public function __construct(AuthManager $auth, Repository $config)
|
||||||
AuthManager $auth,
|
{
|
||||||
CacheRepository $cache,
|
$this->lockoutTime = $config->get('auth.lockout.time');
|
||||||
Encrypter $encrypter,
|
$this->maxLoginAttempts = $config->get('auth.lockout.attempts');
|
||||||
Google2FA $google2FA,
|
|
||||||
UserRepositoryInterface $repository
|
|
||||||
) {
|
|
||||||
$this->auth = $auth;
|
|
||||||
$this->cache = $cache;
|
|
||||||
$this->encrypter = $encrypter;
|
|
||||||
$this->google2FA = $google2FA;
|
|
||||||
$this->repository = $repository;
|
|
||||||
|
|
||||||
$this->lockoutTime = config('auth.lockout.time');
|
$this->auth = $auth;
|
||||||
$this->maxLoginAttempts = config('auth.lockout.attempts');
|
$this->config = $config;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -128,10 +99,12 @@ abstract class AbstractLoginController extends Controller
|
||||||
|
|
||||||
$this->auth->guard()->login($user, true);
|
$this->auth->guard()->login($user, true);
|
||||||
|
|
||||||
return response()->json([
|
return JsonResponse::create([
|
||||||
'complete' => true,
|
'data' => [
|
||||||
'intended' => $this->redirectPath(),
|
'complete' => true,
|
||||||
'user' => $user->toVueObject(),
|
'intended' => $this->redirectPath(),
|
||||||
|
'user' => $user->toVueObject(),
|
||||||
|
],
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2,12 +2,64 @@
|
||||||
|
|
||||||
namespace Pterodactyl\Http\Controllers\Auth;
|
namespace Pterodactyl\Http\Controllers\Auth;
|
||||||
|
|
||||||
|
use Illuminate\Auth\AuthManager;
|
||||||
use Illuminate\Http\JsonResponse;
|
use Illuminate\Http\JsonResponse;
|
||||||
|
use PragmaRX\Google2FA\Google2FA;
|
||||||
|
use Illuminate\Contracts\Config\Repository;
|
||||||
|
use Illuminate\Contracts\Encryption\Encrypter;
|
||||||
use Pterodactyl\Http\Requests\Auth\LoginCheckpointRequest;
|
use Pterodactyl\Http\Requests\Auth\LoginCheckpointRequest;
|
||||||
|
use Illuminate\Contracts\Cache\Repository as CacheRepository;
|
||||||
|
use Pterodactyl\Contracts\Repository\UserRepositoryInterface;
|
||||||
use Pterodactyl\Exceptions\Repository\RecordNotFoundException;
|
use Pterodactyl\Exceptions\Repository\RecordNotFoundException;
|
||||||
|
|
||||||
class LoginCheckpointController extends AbstractLoginController
|
class LoginCheckpointController extends AbstractLoginController
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* @var \Illuminate\Contracts\Cache\Repository
|
||||||
|
*/
|
||||||
|
private $cache;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var \Pterodactyl\Contracts\Repository\UserRepositoryInterface
|
||||||
|
*/
|
||||||
|
private $repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var \PragmaRX\Google2FA\Google2FA
|
||||||
|
*/
|
||||||
|
private $google2FA;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var \Illuminate\Contracts\Encryption\Encrypter
|
||||||
|
*/
|
||||||
|
private $encrypter;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* LoginCheckpointController constructor.
|
||||||
|
*
|
||||||
|
* @param \Illuminate\Auth\AuthManager $auth
|
||||||
|
* @param \Illuminate\Contracts\Encryption\Encrypter $encrypter
|
||||||
|
* @param \PragmaRX\Google2FA\Google2FA $google2FA
|
||||||
|
* @param \Illuminate\Contracts\Config\Repository $config
|
||||||
|
* @param \Illuminate\Contracts\Cache\Repository $cache
|
||||||
|
* @param \Pterodactyl\Contracts\Repository\UserRepositoryInterface $repository
|
||||||
|
*/
|
||||||
|
public function __construct(
|
||||||
|
AuthManager $auth,
|
||||||
|
Encrypter $encrypter,
|
||||||
|
Google2FA $google2FA,
|
||||||
|
Repository $config,
|
||||||
|
CacheRepository $cache,
|
||||||
|
UserRepositoryInterface $repository
|
||||||
|
) {
|
||||||
|
parent::__construct($auth, $config);
|
||||||
|
|
||||||
|
$this->google2FA = $google2FA;
|
||||||
|
$this->cache = $cache;
|
||||||
|
$this->repository = $repository;
|
||||||
|
$this->encrypter = $encrypter;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handle a login where the user is required to provide a TOTP authentication
|
* Handle a login where the user is required to provide a TOTP authentication
|
||||||
* token. Once a user has reached this stage it is assumed that they have already
|
* token. Once a user has reached this stage it is assumed that they have already
|
||||||
|
@ -16,29 +68,28 @@ class LoginCheckpointController extends AbstractLoginController
|
||||||
* @param \Pterodactyl\Http\Requests\Auth\LoginCheckpointRequest $request
|
* @param \Pterodactyl\Http\Requests\Auth\LoginCheckpointRequest $request
|
||||||
* @return \Illuminate\Http\JsonResponse
|
* @return \Illuminate\Http\JsonResponse
|
||||||
*
|
*
|
||||||
|
* @throws \PragmaRX\Google2FA\Exceptions\IncompatibleWithGoogleAuthenticatorException
|
||||||
|
* @throws \PragmaRX\Google2FA\Exceptions\InvalidCharactersException
|
||||||
|
* @throws \PragmaRX\Google2FA\Exceptions\SecretKeyTooShortException
|
||||||
* @throws \Pterodactyl\Exceptions\DisplayException
|
* @throws \Pterodactyl\Exceptions\DisplayException
|
||||||
*/
|
*/
|
||||||
public function __invoke(LoginCheckpointRequest $request): JsonResponse
|
public function __invoke(LoginCheckpointRequest $request): JsonResponse
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
$cache = $this->cache->pull($request->input('confirmation_token'), []);
|
$user = $this->repository->find(
|
||||||
$user = $this->repository->find(array_get($cache, 'user_id', 0));
|
$this->cache->pull($request->input('confirmation_token'), 0)
|
||||||
|
);
|
||||||
} catch (RecordNotFoundException $exception) {
|
} catch (RecordNotFoundException $exception) {
|
||||||
return $this->sendFailedLoginResponse($request);
|
return $this->sendFailedLoginResponse($request);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (array_get($cache, 'request_ip') !== $request->ip()) {
|
$decrypted = $this->encrypter->decrypt($user->totp_secret);
|
||||||
return $this->sendFailedLoginResponse($request, $user);
|
$window = $this->config->get('pterodactyl.auth.2fa.window');
|
||||||
|
|
||||||
|
if ($this->google2FA->verifyKey($decrypted, $request->input('authentication_code'), $window)) {
|
||||||
|
return $this->sendLoginResponse($user, $request);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (! $this->google2FA->verifyKey(
|
return $this->sendFailedLoginResponse($request, $user);
|
||||||
$this->encrypter->decrypt($user->totp_secret),
|
|
||||||
$request->input('authentication_code'),
|
|
||||||
config('pterodactyl.auth.2fa.window')
|
|
||||||
)) {
|
|
||||||
return $this->sendFailedLoginResponse($request, $user);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->sendLoginResponse($user, $request);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,13 +2,57 @@
|
||||||
|
|
||||||
namespace Pterodactyl\Http\Controllers\Auth;
|
namespace Pterodactyl\Http\Controllers\Auth;
|
||||||
|
|
||||||
|
use Illuminate\Support\Str;
|
||||||
use Illuminate\Http\Request;
|
use Illuminate\Http\Request;
|
||||||
|
use Illuminate\Auth\AuthManager;
|
||||||
use Illuminate\Http\JsonResponse;
|
use Illuminate\Http\JsonResponse;
|
||||||
use Illuminate\Contracts\View\View;
|
use Illuminate\Contracts\View\View;
|
||||||
|
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;
|
use Pterodactyl\Exceptions\Repository\RecordNotFoundException;
|
||||||
|
|
||||||
class LoginController extends AbstractLoginController
|
class LoginController extends AbstractLoginController
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* @var \Illuminate\Contracts\View\Factory
|
||||||
|
*/
|
||||||
|
private $view;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var \Illuminate\Contracts\Cache\Repository
|
||||||
|
*/
|
||||||
|
private $cache;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var \Pterodactyl\Contracts\Repository\UserRepositoryInterface
|
||||||
|
*/
|
||||||
|
private $repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* LoginController constructor.
|
||||||
|
*
|
||||||
|
* @param \Illuminate\Auth\AuthManager $auth
|
||||||
|
* @param \Illuminate\Contracts\Config\Repository $config
|
||||||
|
* @param \Illuminate\Contracts\Cache\Repository $cache
|
||||||
|
* @param \Pterodactyl\Contracts\Repository\UserRepositoryInterface $repository
|
||||||
|
* @param \Illuminate\Contracts\View\Factory $view
|
||||||
|
*/
|
||||||
|
public function __construct(
|
||||||
|
AuthManager $auth,
|
||||||
|
Repository $config,
|
||||||
|
CacheRepository $cache,
|
||||||
|
UserRepositoryInterface $repository,
|
||||||
|
ViewFactory $view
|
||||||
|
) {
|
||||||
|
parent::__construct($auth, $config);
|
||||||
|
|
||||||
|
$this->view = $view;
|
||||||
|
$this->cache = $cache;
|
||||||
|
$this->repository = $repository;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handle all incoming requests for the authentication routes and render the
|
* Handle all incoming requests for the authentication routes and render the
|
||||||
* base authentication view component. Vuejs will take over at this point and
|
* base authentication view component. Vuejs will take over at this point and
|
||||||
|
@ -18,7 +62,7 @@ class LoginController extends AbstractLoginController
|
||||||
*/
|
*/
|
||||||
public function index(): View
|
public function index(): View
|
||||||
{
|
{
|
||||||
return view('templates/auth.core');
|
return $this->view->make('templates/auth.core');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -55,85 +99,19 @@ class LoginController extends AbstractLoginController
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($user->use_totp) {
|
if ($user->use_totp) {
|
||||||
$token = str_random(64);
|
$token = Str::random(64);
|
||||||
$this->cache->put($token, ['user_id' => $user->id, 'valid_credentials' => true], 5);
|
$this->cache->put($token, $user->id, 5);
|
||||||
|
|
||||||
return redirect()->route('auth.totp')->with('authentication_token', $token);
|
return JsonResponse::create([
|
||||||
|
'data' => [
|
||||||
|
'complete' => false,
|
||||||
|
'confirmation_token' => $token,
|
||||||
|
],
|
||||||
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->auth->guard()->login($user, true);
|
$this->auth->guard()->login($user, true);
|
||||||
|
|
||||||
return $this->sendLoginResponse($user, $request);
|
return $this->sendLoginResponse($user, $request);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Handle a TOTP implementation page.
|
|
||||||
*
|
|
||||||
* @param \Illuminate\Http\Request $request
|
|
||||||
* @return \Illuminate\Http\RedirectResponse|\Illuminate\View\View
|
|
||||||
*/
|
|
||||||
public function totp(Request $request)
|
|
||||||
{
|
|
||||||
$token = $request->session()->get('authentication_token');
|
|
||||||
if (is_null($token) || $this->auth->guard()->user()) {
|
|
||||||
return redirect()->route('auth.login');
|
|
||||||
}
|
|
||||||
|
|
||||||
return view('auth.totp', ['verify_key' => $token]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Handle a login where the user is required to provide a TOTP authentication
|
|
||||||
* token.
|
|
||||||
*
|
|
||||||
* @param \Illuminate\Http\Request $request
|
|
||||||
* @return \Illuminate\Http\RedirectResponse|\Illuminate\Http\Response
|
|
||||||
*
|
|
||||||
* @throws \PragmaRX\Google2FA\Exceptions\IncompatibleWithGoogleAuthenticatorException
|
|
||||||
* @throws \PragmaRX\Google2FA\Exceptions\InvalidCharactersException
|
|
||||||
* @throws \PragmaRX\Google2FA\Exceptions\SecretKeyTooShortException
|
|
||||||
* @throws \Pterodactyl\Exceptions\DisplayException
|
|
||||||
*/
|
|
||||||
public function loginUsingTotp(Request $request)
|
|
||||||
{
|
|
||||||
if (is_null($request->input('verify_token'))) {
|
|
||||||
return $this->sendFailedLoginResponse($request);
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
$cache = $this->cache->pull($request->input('verify_token'), []);
|
|
||||||
$user = $this->repository->find(array_get($cache, 'user_id', 0));
|
|
||||||
} catch (RecordNotFoundException $exception) {
|
|
||||||
return $this->sendFailedLoginResponse($request);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (is_null($request->input('2fa_token'))) {
|
|
||||||
return $this->sendFailedLoginResponse($request, $user);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (! $this->google2FA->verifyKey(
|
|
||||||
$this->encrypter->decrypt($user->totp_secret),
|
|
||||||
$request->input('2fa_token'),
|
|
||||||
$this->config->get('pterodactyl.auth.2fa.window')
|
|
||||||
)) {
|
|
||||||
return $this->sendFailedLoginResponse($request, $user);
|
|
||||||
}
|
|
||||||
|
|
||||||
// If the user is using 2FA we do not actually log them in at this step, we return
|
|
||||||
// a one-time token to link the 2FA credentials to this account via the UI.
|
|
||||||
if ($user->use_totp) {
|
|
||||||
$token = str_random(128);
|
|
||||||
$this->cache->put($token, [
|
|
||||||
'user_id' => $user->id,
|
|
||||||
'request_ip' => $request->ip(),
|
|
||||||
], 5);
|
|
||||||
|
|
||||||
return response()->json([
|
|
||||||
'complete' => false,
|
|
||||||
'login_token' => $token,
|
|
||||||
]);
|
|
||||||
}
|
|
||||||
|
|
||||||
return $this->sendLoginResponse($user, $request);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
import http from '@/api/http';
|
import http from '@/api/http';
|
||||||
|
|
||||||
interface LoginResponse {
|
export interface LoginResponse {
|
||||||
complete: boolean;
|
complete: boolean;
|
||||||
intended?: string;
|
intended?: string;
|
||||||
token?: string;
|
confirmationToken?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export default (user: string, password: string): Promise<LoginResponse> => {
|
export default (user: string, password: string): Promise<LoginResponse> => {
|
||||||
|
@ -15,9 +15,9 @@ export default (user: string, password: string): Promise<LoginResponse> => {
|
||||||
}
|
}
|
||||||
|
|
||||||
return resolve({
|
return resolve({
|
||||||
complete: response.data.complete,
|
complete: response.data.data.complete,
|
||||||
intended: response.data.intended || undefined,
|
intended: response.data.data.intended || undefined,
|
||||||
token: response.data.token || undefined,
|
confirmationToken: response.data.data.confirmation_token || undefined,
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
.catch(reject);
|
.catch(reject);
|
||||||
|
|
18
resources/scripts/api/auth/loginCheckpoint.ts
Normal file
18
resources/scripts/api/auth/loginCheckpoint.ts
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
import http from '@/api/http';
|
||||||
|
import { LoginResponse } from '@/api/auth/login';
|
||||||
|
|
||||||
|
export default (token: string, code: string): Promise<LoginResponse> => {
|
||||||
|
return new Promise((resolve, reject) => {
|
||||||
|
http.post('/auth/login/checkpoint', {
|
||||||
|
// eslint-disable-next-line @typescript-eslint/camelcase
|
||||||
|
confirmation_token: token,
|
||||||
|
// eslint-disable-next-line @typescript-eslint/camelcase
|
||||||
|
authentication_code: code,
|
||||||
|
})
|
||||||
|
.then(response => resolve({
|
||||||
|
complete: response.data.data.complete,
|
||||||
|
intended: response.data.data.intended || undefined,
|
||||||
|
}))
|
||||||
|
.catch(reject);
|
||||||
|
});
|
||||||
|
};
|
|
@ -1,9 +1,7 @@
|
||||||
import * as React from 'react';
|
import * as React from 'react';
|
||||||
import OpenInputField from '@/components/forms/OpenInputField';
|
|
||||||
import { Link } from 'react-router-dom';
|
import { Link } from 'react-router-dom';
|
||||||
import requestPasswordResetEmail from '@/api/auth/requestPasswordResetEmail';
|
import requestPasswordResetEmail from '@/api/auth/requestPasswordResetEmail';
|
||||||
import { connect } from 'react-redux';
|
import { connect } from 'react-redux';
|
||||||
import { ReduxState } from '@/redux/types';
|
|
||||||
import { pushFlashMessage, clearAllFlashMessages } from '@/redux/actions/flash';
|
import { pushFlashMessage, clearAllFlashMessages } from '@/redux/actions/flash';
|
||||||
import { httpErrorToHuman } from '@/api/http';
|
import { httpErrorToHuman } from '@/api/http';
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,12 @@
|
||||||
import * as React from 'react';
|
import * as React from 'react';
|
||||||
import { RouteComponentProps } from 'react-router';
|
import { RouteComponentProps, StaticContext } from 'react-router';
|
||||||
import { connect } from 'react-redux';
|
import { connect } from 'react-redux';
|
||||||
import { pushFlashMessage, clearAllFlashMessages } from '@/redux/actions/flash';
|
import { pushFlashMessage, clearAllFlashMessages } from '@/redux/actions/flash';
|
||||||
import NetworkErrorMessage from '@/components/NetworkErrorMessage';
|
import NetworkErrorMessage from '@/components/NetworkErrorMessage';
|
||||||
|
import MessageBox from '@/components/MessageBox';
|
||||||
|
import { Link } from 'react-router-dom';
|
||||||
|
import loginCheckpoint from '@/api/auth/loginCheckpoint';
|
||||||
|
import { httpErrorToHuman } from '@/api/http';
|
||||||
|
|
||||||
type State = Readonly<{
|
type State = Readonly<{
|
||||||
isLoading: boolean;
|
isLoading: boolean;
|
||||||
|
@ -10,12 +14,46 @@ type State = Readonly<{
|
||||||
code: string;
|
code: string;
|
||||||
}>;
|
}>;
|
||||||
|
|
||||||
class LoginCheckpointContainer extends React.PureComponent<RouteComponentProps, State> {
|
class LoginCheckpointContainer extends React.PureComponent<RouteComponentProps<{}, StaticContext, { token: string }>, State> {
|
||||||
state: State = {
|
state: State = {
|
||||||
code: '',
|
code: '',
|
||||||
isLoading: false,
|
isLoading: false,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
componentDidMount () {
|
||||||
|
const { state } = this.props.location;
|
||||||
|
if (!state || !state.token) {
|
||||||
|
this.props.history.replace('/login');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
onChangeHandler = (e: React.ChangeEvent<HTMLInputElement>) => {
|
||||||
|
if (e.target.value.length > 6) {
|
||||||
|
e.target.value = e.target.value.substring(0, 6);
|
||||||
|
return e.preventDefault();
|
||||||
|
}
|
||||||
|
|
||||||
|
this.setState({ code: e.target.value });
|
||||||
|
};
|
||||||
|
|
||||||
|
submit = (e: React.FormEvent<HTMLFormElement>) => {
|
||||||
|
e.preventDefault();
|
||||||
|
|
||||||
|
this.setState({ isLoading: true }, () => {
|
||||||
|
loginCheckpoint(this.props.location.state.token, this.state.code)
|
||||||
|
.then(response => {
|
||||||
|
if (response.complete) {
|
||||||
|
// @ts-ignore
|
||||||
|
window.location = response.intended || '/';
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
console.error(error);
|
||||||
|
this.setState({ errorMessage: httpErrorToHuman(error), isLoading: false });
|
||||||
|
});
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
render () {
|
render () {
|
||||||
return (
|
return (
|
||||||
<React.Fragment>
|
<React.Fragment>
|
||||||
|
@ -23,12 +61,20 @@ class LoginCheckpointContainer extends React.PureComponent<RouteComponentProps,
|
||||||
Device Checkpoint
|
Device Checkpoint
|
||||||
</h2>
|
</h2>
|
||||||
<NetworkErrorMessage message={this.state.errorMessage}/>
|
<NetworkErrorMessage message={this.state.errorMessage}/>
|
||||||
<form className={'login-box'} onSubmit={() => null}>
|
<form className={'login-box'} onSubmit={this.submit}>
|
||||||
<p className={'text-sm text-neutral-700'}>
|
<MessageBox type={'warning'}>
|
||||||
This account is protected with two-factor authentication. Please provide an authentication
|
This account is protected with two-factor authentication. A valid authentication token must
|
||||||
code from your device in order to continue.
|
be provided in order to continue.
|
||||||
</p>
|
</MessageBox>
|
||||||
<div className={'flex mt-6'}>
|
<div className={'mt-6'}>
|
||||||
|
<label htmlFor={'authentication_code'}>Authentication Code</label>
|
||||||
|
<input
|
||||||
|
id={'authentication_code'}
|
||||||
|
type={'number'}
|
||||||
|
autoFocus={true}
|
||||||
|
className={'input'}
|
||||||
|
onChange={this.onChangeHandler}
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div className={'mt-6'}>
|
<div className={'mt-6'}>
|
||||||
<button
|
<button
|
||||||
|
@ -43,6 +89,14 @@ class LoginCheckpointContainer extends React.PureComponent<RouteComponentProps,
|
||||||
}
|
}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
<div className={'mt-6 text-center'}>
|
||||||
|
<Link
|
||||||
|
to={'/login'}
|
||||||
|
className={'text-xs text-neutral-500 tracking-wide uppercase no-underline hover:text-neutral-700'}
|
||||||
|
>
|
||||||
|
Return to Login
|
||||||
|
</Link>
|
||||||
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</React.Fragment>
|
</React.Fragment>
|
||||||
);
|
);
|
||||||
|
|
|
@ -12,8 +12,6 @@ type State = Readonly<{
|
||||||
}>;
|
}>;
|
||||||
|
|
||||||
export default class LoginContainer extends React.PureComponent<RouteComponentProps, State> {
|
export default class LoginContainer extends React.PureComponent<RouteComponentProps, State> {
|
||||||
username = React.createRef<HTMLInputElement>();
|
|
||||||
|
|
||||||
state: State = {
|
state: State = {
|
||||||
isLoading: false,
|
isLoading: false,
|
||||||
};
|
};
|
||||||
|
@ -33,7 +31,7 @@ export default class LoginContainer extends React.PureComponent<RouteComponentPr
|
||||||
}
|
}
|
||||||
|
|
||||||
this.props.history.replace('/login/checkpoint', {
|
this.props.history.replace('/login/checkpoint', {
|
||||||
token: response.token,
|
token: response.confirmationToken,
|
||||||
});
|
});
|
||||||
})
|
})
|
||||||
.catch(error => this.setState({
|
.catch(error => this.setState({
|
||||||
|
|
|
@ -95,9 +95,9 @@ class ResetPasswordContainer extends React.PureComponent<Props, State> {
|
||||||
<label>Email</label>
|
<label>Email</label>
|
||||||
<input value={this.state.email || ''} disabled={true}/>
|
<input value={this.state.email || ''} disabled={true}/>
|
||||||
<div className={'mt-6'}>
|
<div className={'mt-6'}>
|
||||||
<label htmlFor={'new-password'}>New Password</label>
|
<label htmlFor={'new_password'}>New Password</label>
|
||||||
<input
|
<input
|
||||||
id={'new-password'}
|
id={'new_password'}
|
||||||
type={'password'}
|
type={'password'}
|
||||||
required={true}
|
required={true}
|
||||||
onChange={this.onPasswordChange}
|
onChange={this.onPasswordChange}
|
||||||
|
@ -107,9 +107,9 @@ class ResetPasswordContainer extends React.PureComponent<Props, State> {
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div className={'mt-6'}>
|
<div className={'mt-6'}>
|
||||||
<label htmlFor={'new-password-confirm'}>Confirm New Password</label>
|
<label htmlFor={'new_password_confirm'}>Confirm New Password</label>
|
||||||
<input
|
<input
|
||||||
id={'new-password-confirm'}
|
id={'new_password_confirm'}
|
||||||
type={'password'}
|
type={'password'}
|
||||||
required={true}
|
required={true}
|
||||||
onChange={this.onPasswordConfirmChange}
|
onChange={this.onPasswordConfirmChange}
|
||||||
|
|
Loading…
Reference in a new issue