288 lines
7.5 KiB
TypeScript
288 lines
7.5 KiB
TypeScript
'use client';
|
|
|
|
import { useCallback, useEffect } from 'react';
|
|
|
|
import { useRouter } from 'next/navigation';
|
|
|
|
import { zodResolver } from '@hookform/resolvers/zod';
|
|
import { ExclamationTriangleIcon } from '@radix-ui/react-icons';
|
|
import { useMutation } from '@tanstack/react-query';
|
|
import { useForm } from 'react-hook-form';
|
|
import { z } from 'zod';
|
|
|
|
import useFetchAuthFactors from '@kit/supabase/hooks/use-fetch-mfa-factors';
|
|
import { useSignOut } from '@kit/supabase/hooks/use-sign-out';
|
|
import { useSupabase } from '@kit/supabase/hooks/use-supabase';
|
|
import { Alert, AlertDescription, AlertTitle } from '@kit/ui/alert';
|
|
import { Button } from '@kit/ui/button';
|
|
import {
|
|
Form,
|
|
FormControl,
|
|
FormDescription,
|
|
FormField,
|
|
FormItem,
|
|
FormMessage,
|
|
} from '@kit/ui/form';
|
|
import { If } from '@kit/ui/if';
|
|
import {
|
|
InputOTP,
|
|
InputOTPGroup,
|
|
InputOTPSeparator,
|
|
InputOTPSlot,
|
|
} from '@kit/ui/input-otp';
|
|
import { Spinner } from '@kit/ui/spinner';
|
|
import { Trans } from '@kit/ui/trans';
|
|
|
|
export function MultiFactorChallengeContainer({
|
|
paths,
|
|
}: React.PropsWithChildren<{
|
|
paths: {
|
|
redirectPath: string;
|
|
};
|
|
}>) {
|
|
const router = useRouter();
|
|
const verifyMFAChallenge = useVerifyMFAChallenge();
|
|
|
|
const onSuccess = useCallback(() => {
|
|
router.replace(paths.redirectPath);
|
|
}, [router, paths.redirectPath]);
|
|
|
|
const verificationCodeForm = useForm({
|
|
resolver: zodResolver(
|
|
z.object({
|
|
factorId: z.string().min(1),
|
|
verificationCode: z.string().min(6).max(6),
|
|
}),
|
|
),
|
|
defaultValues: {
|
|
factorId: '',
|
|
verificationCode: '',
|
|
},
|
|
});
|
|
|
|
const factorId = verificationCodeForm.watch('factorId');
|
|
|
|
if (!factorId) {
|
|
return (
|
|
<FactorsListContainer
|
|
onSelect={(factorId) => {
|
|
verificationCodeForm.setValue('factorId', factorId);
|
|
}}
|
|
onSuccess={onSuccess}
|
|
/>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<Form {...verificationCodeForm}>
|
|
<form
|
|
className={'w-full'}
|
|
onSubmit={verificationCodeForm.handleSubmit(async (data) => {
|
|
await verifyMFAChallenge.mutateAsync({
|
|
factorId,
|
|
verificationCode: data.verificationCode,
|
|
});
|
|
|
|
onSuccess();
|
|
})}
|
|
>
|
|
<div className={'flex flex-col space-y-4'}>
|
|
<span className={'text-muted-foreground text-sm'}>
|
|
<Trans i18nKey={'account:verifyActivationCodeDescription'} />
|
|
</span>
|
|
|
|
<div className={'flex w-full flex-col space-y-2.5'}>
|
|
<div className={'flex flex-col space-y-4'}>
|
|
<If condition={verifyMFAChallenge.error}>
|
|
<Alert variant={'destructive'}>
|
|
<ExclamationTriangleIcon className={'h-5'} />
|
|
|
|
<AlertTitle>
|
|
<Trans i18nKey={'account:invalidVerificationCodeHeading'} />
|
|
</AlertTitle>
|
|
|
|
<AlertDescription>
|
|
<Trans
|
|
i18nKey={'account:invalidVerificationCodeDescription'}
|
|
/>
|
|
</AlertDescription>
|
|
</Alert>
|
|
</If>
|
|
|
|
<FormField
|
|
name={'verificationCode'}
|
|
render={({ field }) => {
|
|
return (
|
|
<FormItem
|
|
className={
|
|
'mx-auto flex flex-col items-center justify-center'
|
|
}
|
|
>
|
|
<FormControl>
|
|
<InputOTP {...field} maxLength={6} minLength={6}>
|
|
<InputOTPGroup>
|
|
<InputOTPSlot index={0} />
|
|
<InputOTPSlot index={1} />
|
|
<InputOTPSlot index={2} />
|
|
</InputOTPGroup>
|
|
<InputOTPSeparator />
|
|
<InputOTPGroup>
|
|
<InputOTPSlot index={3} />
|
|
<InputOTPSlot index={4} />
|
|
<InputOTPSlot index={5} />
|
|
</InputOTPGroup>
|
|
</InputOTP>
|
|
</FormControl>
|
|
|
|
<FormDescription>
|
|
<Trans
|
|
i18nKey={'account:verifyActivationCodeDescription'}
|
|
/>
|
|
</FormDescription>
|
|
|
|
<FormMessage />
|
|
</FormItem>
|
|
);
|
|
}}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<Button
|
|
disabled={
|
|
verifyMFAChallenge.isPending ||
|
|
!verificationCodeForm.formState.isValid
|
|
}
|
|
>
|
|
{verifyMFAChallenge.isPending ? (
|
|
<Trans i18nKey={'account:verifyingCode'} />
|
|
) : (
|
|
<Trans i18nKey={'account:submitVerificationCode'} />
|
|
)}
|
|
</Button>
|
|
</div>
|
|
</form>
|
|
</Form>
|
|
);
|
|
}
|
|
|
|
function useVerifyMFAChallenge() {
|
|
const client = useSupabase();
|
|
|
|
const mutationKey = ['mfa-verify-challenge'];
|
|
|
|
const mutationFn = async (params: {
|
|
factorId: string;
|
|
verificationCode: string;
|
|
}) => {
|
|
const { factorId, verificationCode: code } = params;
|
|
|
|
const response = await client.auth.mfa.challengeAndVerify({
|
|
factorId,
|
|
code,
|
|
});
|
|
|
|
if (response.error) {
|
|
throw response.error;
|
|
}
|
|
|
|
return response.data;
|
|
};
|
|
|
|
return useMutation({ mutationKey, mutationFn });
|
|
}
|
|
|
|
function FactorsListContainer({
|
|
onSuccess,
|
|
onSelect,
|
|
}: React.PropsWithChildren<{
|
|
onSuccess: () => void;
|
|
onSelect: (factor: string) => void;
|
|
}>) {
|
|
const signOut = useSignOut();
|
|
const { data: factors, isLoading, error } = useFetchAuthFactors();
|
|
|
|
const isSuccess = factors && !isLoading && !error;
|
|
|
|
useEffect(() => {
|
|
// If there are no factors, continue
|
|
if (isSuccess && !factors.totp.length) {
|
|
onSuccess();
|
|
}
|
|
}, [factors?.totp.length, isSuccess, onSuccess]);
|
|
|
|
useEffect(() => {
|
|
// If there is an error, sign out
|
|
if (error) {
|
|
void signOut.mutateAsync();
|
|
}
|
|
}, [error, signOut]);
|
|
|
|
useEffect(() => {
|
|
// If there is only one factor, select it automatically
|
|
if (isSuccess && factors.totp.length === 1) {
|
|
const factorId = factors.totp[0]?.id;
|
|
|
|
if (factorId) {
|
|
onSelect(factorId);
|
|
}
|
|
}
|
|
});
|
|
|
|
if (isLoading) {
|
|
return (
|
|
<div className={'flex flex-col items-center space-y-4 py-8'}>
|
|
<Spinner />
|
|
|
|
<div>
|
|
<Trans i18nKey={'account:loadingFactors'} />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
if (error) {
|
|
return (
|
|
<div className={'w-full'}>
|
|
<Alert variant={'destructive'}>
|
|
<ExclamationTriangleIcon className={'h-4'} />
|
|
|
|
<AlertTitle>
|
|
<Trans i18nKey={'account:factorsListError'} />
|
|
</AlertTitle>
|
|
|
|
<AlertDescription>
|
|
<Trans i18nKey={'account:factorsListErrorDescription'} />
|
|
</AlertDescription>
|
|
</Alert>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
const verifiedFactors = factors?.totp ?? [];
|
|
|
|
return (
|
|
<div className={'flex flex-col space-y-4'}>
|
|
<div>
|
|
<span className={'font-medium'}>
|
|
<Trans i18nKey={'account:selectFactor'} />
|
|
</span>
|
|
</div>
|
|
|
|
<div className={'flex flex-col space-y-2'}>
|
|
{verifiedFactors.map((factor) => (
|
|
<div key={factor.id}>
|
|
<Button
|
|
variant={'outline'}
|
|
className={'w-full'}
|
|
onClick={() => onSelect(factor.id)}
|
|
>
|
|
{factor.friendly_name}
|
|
</Button>
|
|
</div>
|
|
))}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|