2022-11-25 20:25:03 +00:00
|
|
|
import { useContext, useEffect, useState } from 'react';
|
|
|
|
import * as React from 'react';
|
2022-07-03 17:43:54 +00:00
|
|
|
import { Dialog, DialogWrapperContext } from '@/components/elements/dialog';
|
2022-07-02 22:53:03 +00:00
|
|
|
import getTwoFactorTokenData, { TwoFactorTokenData } from '@/api/account/getTwoFactorTokenData';
|
|
|
|
import { useFlashKey } from '@/plugins/useFlash';
|
|
|
|
import tw from 'twin.macro';
|
|
|
|
import QRCode from 'qrcode.react';
|
|
|
|
import { Button } from '@/components/elements/button/index';
|
|
|
|
import Spinner from '@/components/elements/Spinner';
|
|
|
|
import { Input } from '@/components/elements/inputs';
|
|
|
|
import CopyOnClick from '@/components/elements/CopyOnClick';
|
|
|
|
import Tooltip from '@/components/elements/tooltip/Tooltip';
|
|
|
|
import enableAccountTwoFactor from '@/api/account/enableAccountTwoFactor';
|
|
|
|
import FlashMessageRender from '@/components/FlashMessageRender';
|
|
|
|
import { Actions, useStoreActions } from 'easy-peasy';
|
|
|
|
import { ApplicationStore } from '@/state';
|
2022-07-03 17:43:54 +00:00
|
|
|
import asDialog from '@/hoc/asDialog';
|
2022-07-02 22:53:03 +00:00
|
|
|
|
2022-07-03 17:43:54 +00:00
|
|
|
interface Props {
|
|
|
|
onTokens: (tokens: string[]) => void;
|
|
|
|
}
|
2022-07-02 22:53:03 +00:00
|
|
|
|
2022-07-03 17:43:54 +00:00
|
|
|
const ConfigureTwoFactorForm = ({ onTokens }: Props) => {
|
2022-07-02 22:53:03 +00:00
|
|
|
const [submitting, setSubmitting] = useState(false);
|
|
|
|
const [value, setValue] = useState('');
|
2022-07-03 18:27:37 +00:00
|
|
|
const [password, setPassword] = useState('');
|
2022-07-02 22:53:03 +00:00
|
|
|
const [token, setToken] = useState<TwoFactorTokenData | null>(null);
|
|
|
|
const { clearAndAddHttpError } = useFlashKey('account:two-step');
|
|
|
|
const updateUserData = useStoreActions((actions: Actions<ApplicationStore>) => actions.user.updateUserData);
|
|
|
|
|
2022-07-03 18:27:37 +00:00
|
|
|
const { close, setProps } = useContext(DialogWrapperContext);
|
2022-07-02 22:53:03 +00:00
|
|
|
|
2022-07-03 17:43:54 +00:00
|
|
|
useEffect(() => {
|
2022-07-02 22:53:03 +00:00
|
|
|
getTwoFactorTokenData()
|
|
|
|
.then(setToken)
|
2022-11-25 20:25:03 +00:00
|
|
|
.catch(error => clearAndAddHttpError(error));
|
2022-07-03 17:43:54 +00:00
|
|
|
}, []);
|
2022-07-02 22:53:03 +00:00
|
|
|
|
2022-07-03 18:27:37 +00:00
|
|
|
useEffect(() => {
|
2022-11-25 20:25:03 +00:00
|
|
|
setProps(state => ({ ...state, preventExternalClose: submitting }));
|
2022-07-03 18:27:37 +00:00
|
|
|
}, [submitting]);
|
|
|
|
|
|
|
|
const submit = (e: React.FormEvent<HTMLFormElement>) => {
|
|
|
|
e.preventDefault();
|
|
|
|
e.stopPropagation();
|
|
|
|
|
2022-07-02 22:53:03 +00:00
|
|
|
if (submitting) return;
|
|
|
|
|
|
|
|
setSubmitting(true);
|
|
|
|
clearAndAddHttpError();
|
2022-07-03 18:27:37 +00:00
|
|
|
enableAccountTwoFactor(value, password)
|
2022-11-25 20:25:03 +00:00
|
|
|
.then(tokens => {
|
2022-07-03 17:43:54 +00:00
|
|
|
updateUserData({ useTotp: true });
|
|
|
|
onTokens(tokens);
|
|
|
|
})
|
2022-11-25 20:25:03 +00:00
|
|
|
.catch(error => {
|
2022-07-03 17:43:54 +00:00
|
|
|
clearAndAddHttpError(error);
|
|
|
|
setSubmitting(false);
|
|
|
|
});
|
2022-07-02 22:53:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
2022-07-03 18:27:37 +00:00
|
|
|
<form id={'enable-totp-form'} onSubmit={submit}>
|
2022-07-03 17:43:54 +00:00
|
|
|
<FlashMessageRender byKey={'account:two-step'} className={'mt-4'} />
|
2022-07-24 21:10:59 +00:00
|
|
|
<div className={'flex items-center justify-center w-56 h-56 p-2 bg-gray-50 shadow mx-auto mt-6'}>
|
2022-07-03 17:43:54 +00:00
|
|
|
{!token ? (
|
|
|
|
<Spinner />
|
|
|
|
) : (
|
2022-07-24 21:10:59 +00:00
|
|
|
<QRCode renderAs={'svg'} value={token.image_url_data} css={tw`w-full h-full shadow-none`} />
|
2022-07-03 17:43:54 +00:00
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
<CopyOnClick text={token?.secret}>
|
|
|
|
<p className={'font-mono text-sm text-gray-100 text-center mt-2'}>
|
|
|
|
{token?.secret.match(/.{1,4}/g)!.join(' ') || 'Loading...'}
|
|
|
|
</p>
|
|
|
|
</CopyOnClick>
|
2022-07-03 18:27:37 +00:00
|
|
|
<p id={'totp-code-description'} className={'mt-6'}>
|
|
|
|
Scan the QR code above using the two-step authentication app of your choice. Then, enter the 6-digit
|
|
|
|
code generated into the field below.
|
|
|
|
</p>
|
2022-07-03 17:43:54 +00:00
|
|
|
<Input.Text
|
2022-07-03 18:27:37 +00:00
|
|
|
aria-labelledby={'totp-code-description'}
|
2022-07-03 17:43:54 +00:00
|
|
|
variant={Input.Text.Variants.Loose}
|
|
|
|
value={value}
|
2022-11-25 20:25:03 +00:00
|
|
|
onChange={e => setValue(e.currentTarget.value)}
|
2022-07-03 18:27:37 +00:00
|
|
|
className={'mt-3'}
|
2022-07-03 17:43:54 +00:00
|
|
|
placeholder={'000000'}
|
|
|
|
type={'text'}
|
|
|
|
inputMode={'numeric'}
|
|
|
|
autoComplete={'one-time-code'}
|
|
|
|
pattern={'\\d{6}'}
|
|
|
|
/>
|
2022-07-03 18:27:37 +00:00
|
|
|
<label htmlFor={'totp-password'} className={'block mt-3'}>
|
|
|
|
Account Password
|
|
|
|
</label>
|
|
|
|
<Input.Text
|
|
|
|
variant={Input.Text.Variants.Loose}
|
|
|
|
className={'mt-1'}
|
|
|
|
type={'password'}
|
|
|
|
value={password}
|
2022-11-25 20:25:03 +00:00
|
|
|
onChange={e => setPassword(e.currentTarget.value)}
|
2022-07-03 18:27:37 +00:00
|
|
|
/>
|
2022-07-03 17:43:54 +00:00
|
|
|
<Dialog.Footer>
|
|
|
|
<Button.Text onClick={close}>Cancel</Button.Text>
|
|
|
|
<Tooltip
|
2022-07-03 18:27:37 +00:00
|
|
|
disabled={password.length > 0 && value.length === 6}
|
|
|
|
content={
|
|
|
|
!token
|
|
|
|
? 'Waiting for QR code to load...'
|
|
|
|
: 'You must enter the 6-digit code and your password to continue.'
|
|
|
|
}
|
2022-07-03 17:43:54 +00:00
|
|
|
delay={100}
|
2022-07-02 22:53:03 +00:00
|
|
|
>
|
2022-07-03 18:27:37 +00:00
|
|
|
<Button
|
|
|
|
disabled={!token || value.length !== 6 || !password.length}
|
|
|
|
type={'submit'}
|
|
|
|
form={'enable-totp-form'}
|
|
|
|
>
|
2022-07-03 17:43:54 +00:00
|
|
|
Enable
|
|
|
|
</Button>
|
|
|
|
</Tooltip>
|
|
|
|
</Dialog.Footer>
|
2022-07-03 18:27:37 +00:00
|
|
|
</form>
|
2022-07-02 22:53:03 +00:00
|
|
|
);
|
|
|
|
};
|
2022-07-03 17:43:54 +00:00
|
|
|
|
|
|
|
export default asDialog({
|
|
|
|
title: 'Enable Two-Step Verification',
|
|
|
|
description:
|
|
|
|
"Help protect your account from unauthorized access. You'll be prompted for a verification code each time you sign in.",
|
|
|
|
})(ConfigureTwoFactorForm);
|