52 lines
1.3 KiB
TypeScript
52 lines
1.3 KiB
TypeScript
import { redirect } from 'next/navigation';
|
|
|
|
import { MultiFactorChallengeContainer } from '@kit/auth/mfa';
|
|
import { pathsConfig } from '@kit/shared/config';
|
|
import { checkRequiresMultiFactorAuthentication } from '@kit/supabase/check-requires-mfa';
|
|
import { getSupabaseServerClient } from '@kit/supabase/server-client';
|
|
|
|
import { createI18nServerInstance } from '~/lib/i18n/i18n.server';
|
|
import { withI18n } from '~/lib/i18n/with-i18n';
|
|
|
|
interface Props {
|
|
searchParams: Promise<{
|
|
next?: string;
|
|
}>;
|
|
}
|
|
|
|
export const generateMetadata = async () => {
|
|
const i18n = await createI18nServerInstance();
|
|
|
|
return {
|
|
title: i18n.t('auth:signIn'),
|
|
};
|
|
};
|
|
|
|
async function VerifyPage(props: Props) {
|
|
const client = getSupabaseServerClient();
|
|
|
|
const {
|
|
data: { user },
|
|
} = await client.auth.getUser();
|
|
|
|
if (!user) {
|
|
redirect(pathsConfig.auth.signIn);
|
|
}
|
|
|
|
const needsMfa = await checkRequiresMultiFactorAuthentication(client);
|
|
|
|
if (!needsMfa) {
|
|
redirect(pathsConfig.auth.signIn);
|
|
}
|
|
|
|
const nextPath = (await props.searchParams).next;
|
|
const redirectPath =
|
|
!!nextPath && nextPath.length > 0 ? nextPath : pathsConfig.app.home;
|
|
|
|
return (
|
|
<MultiFactorChallengeContainer userId={user.id} paths={{ redirectPath }} />
|
|
);
|
|
}
|
|
|
|
export default withI18n(VerifyPage);
|