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";
|
2023-05-12 12:52:09 +00:00
|
|
|
import { z } from "zod";
|
2022-10-12 12:52:59 +00:00
|
|
|
|
2023-04-19 14:15:08 +00:00
|
|
|
import LicenseRequired from "@calcom/features/ee/common/components/LicenseRequired";
|
2023-05-12 12:52:09 +00:00
|
|
|
import { checkPremiumUsername } from "@calcom/features/ee/common/lib/checkPremiumUsername";
|
2022-10-18 20:34:32 +00:00
|
|
|
import { isSAMLLoginEnabled } from "@calcom/features/ee/sso/lib/saml";
|
2023-05-12 12:52:09 +00:00
|
|
|
import { IS_SELF_HOSTED, 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";
|
|
|
|
|
2023-04-18 18:45:32 +00:00
|
|
|
import PageWrapper from "@components/PageWrapper";
|
|
|
|
|
2023-01-26 22:51:03 +00:00
|
|
|
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;
|
|
|
|
apiError: string;
|
|
|
|
};
|
|
|
|
|
2023-05-12 12:52:09 +00:00
|
|
|
export default function Signup({ prepopulateFormValues, token }: inferSSRProps<typeof getServerSideProps>) {
|
2022-10-12 12:52:59 +00:00
|
|
|
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-05-12 12:52:09 +00:00
|
|
|
className="bg-muted flex min-h-screen flex-col justify-center "
|
2023-04-05 18:14:46 +00:00
|
|
|
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-05-12 12:52:09 +00:00
|
|
|
<div className="bg-default mx-2 p-6 shadow sm:rounded-lg lg:p-8">
|
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} />}
|
2023-05-12 12:52:09 +00:00
|
|
|
<div className="space-y-4">
|
2022-10-12 12:52:59 +00:00
|
|
|
<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-05-12 12:52:09 +00:00
|
|
|
hintErrors={["caplow", "min", "num"]}
|
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
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<div className="flex space-x-2 rtl:space-x-reverse">
|
2023-05-12 12:52:09 +00:00
|
|
|
<Button type="submit" loading={isSubmitting} className="w-full justify-center">
|
2022-10-12 12:52:59 +00:00
|
|
|
{t("create_account")}
|
|
|
|
</Button>
|
2023-05-12 12:52:09 +00:00
|
|
|
{!token && (
|
|
|
|
<Button
|
|
|
|
color="secondary"
|
|
|
|
className="w-full justify-center"
|
|
|
|
onClick={() =>
|
|
|
|
signIn("Cal.com", {
|
|
|
|
callbackUrl: router.query.callbackUrl
|
|
|
|
? `${WEBAPP_URL}/${router.query.callbackUrl}`
|
|
|
|
: `${WEBAPP_URL}/getting-started`,
|
|
|
|
})
|
|
|
|
}>
|
|
|
|
{t("login_instead")}
|
|
|
|
</Button>
|
|
|
|
)}
|
2022-10-12 12:52:59 +00:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</FormProvider>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</LicenseRequired>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export const getServerSideProps = async (ctx: GetServerSidePropsContext) => {
|
|
|
|
const ssr = await ssrInit(ctx);
|
2023-05-12 12:52:09 +00:00
|
|
|
const token = z.string().optional().parse(ctx.query.token);
|
2022-10-12 12:52:59 +00:00
|
|
|
|
|
|
|
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}`,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2023-05-12 12:52:09 +00:00
|
|
|
const guessUsernameFromEmail = (email: string) => {
|
|
|
|
const [username] = email.split("@");
|
|
|
|
return username;
|
|
|
|
};
|
|
|
|
|
|
|
|
let username = guessUsernameFromEmail(verificationToken.identifier);
|
|
|
|
|
|
|
|
if (!IS_SELF_HOSTED) {
|
|
|
|
// Im not sure we actually hit this because of next redirects signup to website repo - but just in case this is pretty cool :)
|
|
|
|
const { available, suggestion } = await checkPremiumUsername(username);
|
|
|
|
|
|
|
|
username = available ? username : suggestion || username;
|
|
|
|
}
|
|
|
|
|
2022-10-12 12:52:59 +00:00
|
|
|
return {
|
|
|
|
props: {
|
|
|
|
...props,
|
2023-05-12 12:52:09 +00:00
|
|
|
token,
|
2022-10-12 12:52:59 +00:00
|
|
|
prepopulateFormValues: {
|
|
|
|
email: verificationToken.identifier,
|
2023-05-12 12:52:09 +00:00
|
|
|
username,
|
2022-10-12 12:52:59 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
2023-04-05 18:14:46 +00:00
|
|
|
|
|
|
|
Signup.isThemeSupported = false;
|
2023-04-18 18:45:32 +00:00
|
|
|
Signup.PageWrapper = PageWrapper;
|