2022-08-31 20:57:53 +00:00
|
|
|
import { useState } from "react";
|
|
|
|
import { useForm } from "react-hook-form";
|
2021-09-22 19:52:38 +00:00
|
|
|
|
2023-03-10 23:45:24 +00:00
|
|
|
import { ErrorCode } from "@calcom/features/auth/lib/ErrorCode";
|
2022-08-31 20:57:53 +00:00
|
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
2022-11-23 02:55:25 +00:00
|
|
|
import { Button, Dialog, DialogContent, Form, Label, PasswordField } from "@calcom/ui";
|
2022-03-16 23:36:43 +00:00
|
|
|
|
2022-08-31 20:57:53 +00:00
|
|
|
import TwoFactor from "@components/auth/TwoFactor";
|
2021-09-22 19:52:38 +00:00
|
|
|
|
2021-09-21 09:29:20 +00:00
|
|
|
import TwoFactorAuthAPI from "./TwoFactorAuthAPI";
|
|
|
|
import TwoFactorModalHeader from "./TwoFactorModalHeader";
|
|
|
|
|
|
|
|
interface DisableTwoFactorAuthModalProps {
|
2021-10-12 13:11:33 +00:00
|
|
|
/** Called when the user closes the modal without disabling two-factor auth */
|
2021-09-21 09:29:20 +00:00
|
|
|
onCancel: () => void;
|
2021-10-12 13:11:33 +00:00
|
|
|
/** Called when the user disables two-factor auth */
|
2021-09-21 09:29:20 +00:00
|
|
|
onDisable: () => void;
|
|
|
|
}
|
|
|
|
|
2022-08-31 20:57:53 +00:00
|
|
|
interface DisableTwoFactorValues {
|
|
|
|
totpCode: string;
|
|
|
|
password: string;
|
|
|
|
}
|
|
|
|
|
2021-10-12 13:11:33 +00:00
|
|
|
const DisableTwoFactorAuthModal = ({ onDisable, onCancel }: DisableTwoFactorAuthModalProps) => {
|
2021-09-21 09:29:20 +00:00
|
|
|
const [isDisabling, setIsDisabling] = useState(false);
|
|
|
|
const [errorMessage, setErrorMessage] = useState<string | null>(null);
|
2021-10-12 13:11:33 +00:00
|
|
|
const { t } = useLocale();
|
2022-08-31 20:57:53 +00:00
|
|
|
const form = useForm<DisableTwoFactorValues>();
|
|
|
|
async function handleDisable({ totpCode, password }: DisableTwoFactorValues) {
|
2021-09-21 09:29:20 +00:00
|
|
|
if (isDisabling) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
setIsDisabling(true);
|
|
|
|
setErrorMessage(null);
|
|
|
|
|
|
|
|
try {
|
2022-08-31 20:57:53 +00:00
|
|
|
const response = await TwoFactorAuthAPI.disable(password, totpCode);
|
2021-09-21 09:29:20 +00:00
|
|
|
if (response.status === 200) {
|
|
|
|
onDisable();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const body = await response.json();
|
|
|
|
if (body.error === ErrorCode.IncorrectPassword) {
|
2021-10-08 11:43:48 +00:00
|
|
|
setErrorMessage(t("incorrect_password"));
|
2022-08-31 20:57:53 +00:00
|
|
|
}
|
|
|
|
if (body.error === ErrorCode.SecondFactorRequired) {
|
|
|
|
setErrorMessage(t("2fa_required"));
|
|
|
|
}
|
|
|
|
if (body.error === ErrorCode.IncorrectTwoFactorCode) {
|
|
|
|
setErrorMessage(t("incorrect_2fa"));
|
2021-09-21 09:29:20 +00:00
|
|
|
} else {
|
2021-10-08 11:43:48 +00:00
|
|
|
setErrorMessage(t("something_went_wrong"));
|
2021-09-21 09:29:20 +00:00
|
|
|
}
|
|
|
|
} catch (e) {
|
2021-10-08 11:43:48 +00:00
|
|
|
setErrorMessage(t("something_went_wrong"));
|
|
|
|
console.error(t("error_disabling_2fa"), e);
|
2021-09-21 09:29:20 +00:00
|
|
|
} finally {
|
|
|
|
setIsDisabling(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Dialog open={true}>
|
|
|
|
<DialogContent>
|
2022-08-31 20:57:53 +00:00
|
|
|
<Form form={form} handleSubmit={handleDisable}>
|
|
|
|
<TwoFactorModalHeader title={t("disable_2fa")} description={t("disable_2fa_recommendation")} />
|
2021-09-21 09:29:20 +00:00
|
|
|
|
|
|
|
<div className="mb-4">
|
2022-08-31 20:57:53 +00:00
|
|
|
<PasswordField
|
|
|
|
labelProps={{
|
2023-04-05 18:14:46 +00:00
|
|
|
className: "block text-sm font-medium text-default",
|
2022-08-31 20:57:53 +00:00
|
|
|
}}
|
|
|
|
{...form.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 text-sm focus:border-black focus:outline-none focus:ring-black"
|
2022-08-31 20:57:53 +00:00
|
|
|
/>
|
|
|
|
<Label className="mt-4"> {t("2fa_code")}</Label>
|
2021-09-21 09:29:20 +00:00
|
|
|
|
2022-08-31 20:57:53 +00:00
|
|
|
<TwoFactor center={false} />
|
2021-09-21 09:29:20 +00:00
|
|
|
{errorMessage && <p className="mt-1 text-sm text-red-700">{errorMessage}</p>}
|
|
|
|
</div>
|
|
|
|
|
2022-08-31 20:57:53 +00:00
|
|
|
<div className="mt-5 sm:mt-4 sm:flex sm:flex-row-reverse">
|
2023-04-09 09:13:57 +00:00
|
|
|
<Button type="submit" className="ms-2 me-2" disabled={isDisabling}>
|
2022-08-31 20:57:53 +00:00
|
|
|
{t("disable")}
|
|
|
|
</Button>
|
|
|
|
<Button color="secondary" onClick={onCancel}>
|
|
|
|
{t("cancel")}
|
|
|
|
</Button>
|
|
|
|
</div>
|
|
|
|
</Form>
|
2021-09-21 09:29:20 +00:00
|
|
|
</DialogContent>
|
|
|
|
</Dialog>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default DisableTwoFactorAuthModal;
|