2022-10-12 12:52:59 +00:00
|
|
|
import type { GetServerSidePropsContext } from "next";
|
|
|
|
import { signIn } from "next-auth/react";
|
|
|
|
import { useRouter } from "next/router";
|
2023-04-05 18:14:46 +00:00
|
|
|
import type { CSSProperties } from "react";
|
2023-02-16 22:39:57 +00:00
|
|
|
import type { SubmitHandler } from "react-hook-form";
|
|
|
|
import { FormProvider, useForm } from "react-hook-form";
|
2022-10-12 12:52:59 +00:00
|
|
|
|
|
|
|
import LicenseRequired from "@calcom/features/ee/common/components/v2/LicenseRequired";
|
2022-10-18 20:34:32 +00:00
|
|
|
import { isSAMLLoginEnabled } from "@calcom/features/ee/sso/lib/saml";
|
2023-01-26 22:51:03 +00:00
|
|
|
import { WEBAPP_URL } from "@calcom/lib/constants";
|
2022-10-12 12:52:59 +00:00
|
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
2022-12-16 20:40:20 +00:00
|
|
|
import { collectPageParameters, telemetryEventTypes, useTelemetry } from "@calcom/lib/telemetry";
|
2023-01-26 22:51:03 +00:00
|
|
|
import prisma from "@calcom/prisma";
|
2023-02-16 22:39:57 +00:00
|
|
|
import type { inferSSRProps } from "@calcom/types/inferSSRProps";
|
2023-01-26 22:51:03 +00:00
|
|
|
import { Alert, Button, EmailField, HeadSeo, PasswordField, TextField } from "@calcom/ui";
|
|
|
|
|
|
|
|
import { asStringOrNull } from "../lib/asStringOrNull";
|
|
|
|
import { IS_GOOGLE_LOGIN_ENABLED } from "../server/lib/constants";
|
|
|
|
import { ssrInit } from "../server/lib/ssr";
|
2022-10-12 12:52:59 +00:00
|
|
|
|
|
|
|
type FormValues = {
|
|
|
|
username: string;
|
|
|
|
email: string;
|
|
|
|
password: string;
|
|
|
|
passwordcheck: string;
|
|
|
|
apiError: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
export default function Signup({ prepopulateFormValues }: inferSSRProps<typeof getServerSideProps>) {
|
|
|
|
const { t } = useLocale();
|
|
|
|
const router = useRouter();
|
2022-12-16 20:40:20 +00:00
|
|
|
const telemetry = useTelemetry();
|
|
|
|
|
2022-10-12 12:52:59 +00:00
|
|
|
const methods = useForm<FormValues>({
|
|
|
|
defaultValues: prepopulateFormValues,
|
|
|
|
});
|
|
|
|
const {
|
|
|
|
register,
|
|
|
|
formState: { errors, isSubmitting },
|
|
|
|
} = methods;
|
|
|
|
|
|
|
|
const handleErrors = async (resp: Response) => {
|
|
|
|
if (!resp.ok) {
|
|
|
|
const err = await resp.json();
|
|
|
|
throw new Error(err.message);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const signUp: SubmitHandler<FormValues> = async (data) => {
|
|
|
|
await fetch("/api/auth/signup", {
|
|
|
|
body: JSON.stringify({
|
|
|
|
...data,
|
|
|
|
}),
|
|
|
|
headers: {
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
},
|
|
|
|
method: "POST",
|
|
|
|
})
|
|
|
|
.then(handleErrors)
|
2022-11-04 15:20:17 +00:00
|
|
|
.then(async () => {
|
2023-02-10 09:53:03 +00:00
|
|
|
telemetry.event(telemetryEventTypes.signup, collectPageParameters());
|
2022-12-16 20:40:20 +00:00
|
|
|
await signIn<"credentials">("credentials", {
|
|
|
|
...data,
|
|
|
|
callbackUrl: router.query.callbackUrl
|
|
|
|
? `${WEBAPP_URL}/${router.query.callbackUrl}`
|
|
|
|
: `${WEBAPP_URL}/getting-started`,
|
2022-11-04 15:20:17 +00:00
|
|
|
});
|
|
|
|
})
|
2022-10-12 12:52:59 +00:00
|
|
|
.catch((err) => {
|
|
|
|
methods.setError("apiError", { message: err.message });
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<LicenseRequired>
|
|
|
|
<div
|
2023-04-05 18:14:46 +00:00
|
|
|
className="bg-muted flex min-h-screen flex-col justify-center py-12 sm:px-6 lg:px-8"
|
|
|
|
style={
|
|
|
|
{
|
|
|
|
"--cal-brand": "#111827",
|
|
|
|
"--cal-brand-emphasis": "#101010",
|
|
|
|
"--cal-brand-text": "white",
|
2023-04-08 16:50:17 +00:00
|
|
|
"--cal-brand-subtle": "#9CA3AF",
|
2023-04-05 18:14:46 +00:00
|
|
|
} as CSSProperties
|
|
|
|
}
|
2022-10-12 12:52:59 +00:00
|
|
|
aria-labelledby="modal-title"
|
|
|
|
role="dialog"
|
|
|
|
aria-modal="true">
|
|
|
|
<HeadSeo title={t("sign_up")} description={t("sign_up")} />
|
|
|
|
<div className="sm:mx-auto sm:w-full sm:max-w-md">
|
2023-04-05 18:14:46 +00:00
|
|
|
<h2 className="font-cal text-emphasis text-center text-3xl font-extrabold">
|
2022-10-12 12:52:59 +00:00
|
|
|
{t("create_your_account")}
|
|
|
|
</h2>
|
|
|
|
</div>
|
|
|
|
<div className="mt-8 sm:mx-auto sm:w-full sm:max-w-md">
|
2023-04-05 18:14:46 +00:00
|
|
|
<div className="bg-default mx-2 px-4 py-8 shadow sm:rounded-lg sm:px-10">
|
2022-10-12 12:52:59 +00:00
|
|
|
<FormProvider {...methods}>
|
2023-04-18 01:58:54 +00:00
|
|
|
<form
|
|
|
|
onSubmit={(event) => {
|
|
|
|
event.preventDefault();
|
|
|
|
event.stopPropagation();
|
|
|
|
|
|
|
|
if (methods.formState?.errors?.apiError) {
|
|
|
|
methods.clearErrors("apiError");
|
|
|
|
}
|
|
|
|
methods.handleSubmit(signUp)(event);
|
|
|
|
}}
|
|
|
|
className="bg-default space-y-6">
|
2022-10-12 12:52:59 +00:00
|
|
|
{errors.apiError && <Alert severity="error" message={errors.apiError?.message} />}
|
|
|
|
<div className="space-y-2">
|
|
|
|
<TextField
|
|
|
|
addOnLeading={`${process.env.NEXT_PUBLIC_WEBSITE_URL}/`}
|
|
|
|
{...register("username")}
|
|
|
|
required
|
|
|
|
/>
|
2023-01-14 00:21:57 +00:00
|
|
|
<EmailField
|
|
|
|
{...register("email")}
|
|
|
|
disabled={prepopulateFormValues?.email}
|
2023-04-05 18:14:46 +00:00
|
|
|
className="disabled:bg-emphasis disabled:hover:cursor-not-allowed"
|
2023-01-14 00:21:57 +00:00
|
|
|
/>
|
2022-10-12 12:52:59 +00:00
|
|
|
<PasswordField
|
|
|
|
labelProps={{
|
2023-04-05 18:14:46 +00:00
|
|
|
className: "block text-sm font-medium text-default",
|
2022-10-12 12:52:59 +00:00
|
|
|
}}
|
|
|
|
{...register("password")}
|
2023-04-05 18:14:46 +00:00
|
|
|
className="border-default mt-1 block w-full rounded-md border px-3 py-2 shadow-sm focus:border-black focus:outline-none focus:ring-black sm:text-sm"
|
2022-10-12 12:52:59 +00:00
|
|
|
/>
|
|
|
|
<PasswordField
|
|
|
|
label={t("confirm_password")}
|
|
|
|
{...register("passwordcheck", {
|
|
|
|
validate: (value) =>
|
|
|
|
value === methods.watch("password") || (t("error_password_mismatch") as string),
|
|
|
|
})}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<div className="flex space-x-2 rtl:space-x-reverse">
|
|
|
|
<Button type="submit" loading={isSubmitting} className="w-7/12 justify-center">
|
|
|
|
{t("create_account")}
|
|
|
|
</Button>
|
|
|
|
<Button
|
|
|
|
color="secondary"
|
|
|
|
className="w-5/12 justify-center"
|
|
|
|
onClick={() =>
|
|
|
|
signIn("Cal.com", {
|
2022-12-16 20:40:20 +00:00
|
|
|
callbackUrl: router.query.callbackUrl
|
|
|
|
? `${WEBAPP_URL}/${router.query.callbackUrl}`
|
|
|
|
: `${WEBAPP_URL}/getting-started`,
|
2022-10-12 12:52:59 +00:00
|
|
|
})
|
|
|
|
}>
|
|
|
|
{t("login_instead")}
|
|
|
|
</Button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</FormProvider>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</LicenseRequired>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export const getServerSideProps = async (ctx: GetServerSidePropsContext) => {
|
|
|
|
const ssr = await ssrInit(ctx);
|
|
|
|
const token = asStringOrNull(ctx.query.token);
|
|
|
|
|
|
|
|
const props = {
|
|
|
|
isGoogleLoginEnabled: IS_GOOGLE_LOGIN_ENABLED,
|
|
|
|
isSAMLLoginEnabled,
|
|
|
|
trpcState: ssr.dehydrate(),
|
|
|
|
prepopulateFormValues: undefined,
|
|
|
|
};
|
|
|
|
|
2023-01-14 00:42:13 +00:00
|
|
|
if (process.env.NEXT_PUBLIC_DISABLE_SIGNUP === "true") {
|
|
|
|
return {
|
|
|
|
notFound: true,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-10-12 12:52:59 +00:00
|
|
|
// no token given, treat as a normal signup without verification token
|
|
|
|
if (!token) {
|
|
|
|
return {
|
2022-11-04 15:20:17 +00:00
|
|
|
props: JSON.parse(JSON.stringify(props)),
|
2022-10-12 12:52:59 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
const verificationToken = await prisma.verificationToken.findUnique({
|
|
|
|
where: {
|
|
|
|
token,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!verificationToken || verificationToken.expires < new Date()) {
|
|
|
|
return {
|
|
|
|
notFound: true,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
const existingUser = await prisma.user.findFirst({
|
|
|
|
where: {
|
|
|
|
AND: [
|
|
|
|
{
|
|
|
|
email: verificationToken?.identifier,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
emailVerified: {
|
|
|
|
not: null,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
if (existingUser) {
|
|
|
|
return {
|
|
|
|
redirect: {
|
|
|
|
permanent: false,
|
|
|
|
destination: "/auth/login?callbackUrl=" + `${WEBAPP_URL}/${ctx.query.callbackUrl}`,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
props: {
|
|
|
|
...props,
|
|
|
|
prepopulateFormValues: {
|
|
|
|
email: verificationToken.identifier,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
2023-04-05 18:14:46 +00:00
|
|
|
|
|
|
|
Signup.isThemeSupported = false;
|