import { GetServerSidePropsContext } from "next"; import { getCsrfToken, signIn } from "next-auth/react"; import Link from "next/link"; import { useRouter } from "next/router"; import { useState } from "react"; import { ErrorCode, getSession } from "@lib/auth"; import { WEBSITE_URL } from "@lib/config/constants"; import { useLocale } from "@lib/hooks/useLocale"; import { isSAMLLoginEnabled, hostedCal, samlTenantID, samlProductID } from "@lib/saml"; import { collectPageParameters, telemetryEventTypes, useTelemetry } from "@lib/telemetry"; import { trpc } from "@lib/trpc"; import { inferSSRProps } from "@lib/types/inferSSRProps"; import AddToHomescreen from "@components/AddToHomescreen"; import { EmailField, PasswordField, TextField } from "@components/form/fields"; import AuthContainer from "@components/ui/AuthContainer"; import Button from "@components/ui/Button"; import { IS_GOOGLE_LOGIN_ENABLED } from "@server/lib/constants"; import { ssrInit } from "@server/lib/ssr"; export default function Login({ csrfToken, isGoogleLoginEnabled, isSAMLLoginEnabled, hostedCal, samlTenantID, samlProductID, }: inferSSRProps) { const { t } = useLocale(); const router = useRouter(); const [email, setEmail] = useState(""); const [password, setPassword] = useState(""); const [code, setCode] = useState(""); const [isSubmitting, setIsSubmitting] = useState(false); const [secondFactorRequired, setSecondFactorRequired] = useState(false); const [errorMessage, setErrorMessage] = useState(null); const errorMessages: { [key: string]: string } = { [ErrorCode.SecondFactorRequired]: t("2fa_enabled_instructions"), [ErrorCode.IncorrectPassword]: `${t("incorrect_password")} ${t("please_try_again")}`, [ErrorCode.UserNotFound]: t("no_account_exists"), [ErrorCode.IncorrectTwoFactorCode]: `${t("incorrect_2fa_code")} ${t("please_try_again")}`, [ErrorCode.InternalServerError]: `${t("something_went_wrong")} ${t("please_try_again_and_contact_us")}`, [ErrorCode.ThirdPartyIdentityProviderEnabled]: t("account_created_with_identity_provider"), }; const telemetry = useTelemetry(); const callbackUrl = typeof router.query?.callbackUrl === "string" ? router.query.callbackUrl : "/"; async function handleSubmit(e: React.SyntheticEvent) { e.preventDefault(); if (isSubmitting) { return; } setIsSubmitting(true); setErrorMessage(null); try { const response = await signIn<"credentials">("credentials", { redirect: false, email, password, totpCode: code, callbackUrl, }); if (!response) { throw new Error("Received empty response from next auth"); } if (!response.error) { // we're logged in! let's do a hard refresh to the desired url window.location.replace(callbackUrl); return; } if (response.error === ErrorCode.SecondFactorRequired) { setSecondFactorRequired(true); setErrorMessage(errorMessages[ErrorCode.SecondFactorRequired]); } else { setErrorMessage(errorMessages[response.error] || t("something_went_wrong")); } setIsSubmitting(false); } catch (e) { setErrorMessage(t("something_went_wrong")); setIsSubmitting(false); } } const mutation = trpc.useMutation("viewer.samlTenantProduct", { onSuccess: (data) => { signIn("saml", {}, { tenant: data.tenant, product: data.product }); }, onError: (err) => { setErrorMessage(err.message); }, }); return ( <> {t("dont_have_an_account")} {/* replace this with your account creation flow */} {t("create_an_account")} }>
setEmail(e.currentTarget.value)} />
setPassword(e.currentTarget.value)} />
{secondFactorRequired && ( setCode(e.currentTarget.value)} /> )}
{errorMessage &&

{errorMessage}

} {isGoogleLoginEnabled && (
)} {isSAMLLoginEnabled && (
)}
); } export async function getServerSideProps(context: GetServerSidePropsContext) { const { req } = context; const session = await getSession({ req }); const ssr = await ssrInit(context); if (session) { return { redirect: { destination: "/", permanent: false, }, }; } return { props: { csrfToken: await getCsrfToken(context), trpcState: ssr.dehydrate(), isGoogleLoginEnabled: IS_GOOGLE_LOGIN_ENABLED, isSAMLLoginEnabled, hostedCal, samlTenantID, samlProductID, }, }; }