import { t } from "i18next"; import { useEffect, useState } from "react"; import { sendOtt } from "@ente/accounts/api/user"; import { PAGES } from "@ente/accounts/constants/pages"; import { APP_HOMES } from "@ente/shared/apps/constants"; import { PageProps } from "@ente/shared/apps/types"; import { VerticallyCentered } from "@ente/shared/components/Container"; import FormPaper from "@ente/shared/components/Form/FormPaper"; import FormPaperFooter from "@ente/shared/components/Form/FormPaper/Footer"; import FormPaperTitle from "@ente/shared/components/Form/FormPaper/Title"; import LinkButton from "@ente/shared/components/LinkButton"; import SingleInputForm, { SingleInputFormProps, } from "@ente/shared/components/SingleInputForm"; import ComlinkCryptoWorker from "@ente/shared/crypto"; import { decryptAndStoreToken, saveKeyInSessionStore, } from "@ente/shared/crypto/helpers"; import { logError } from "@ente/shared/sentry"; import InMemoryStore, { MS_KEYS } from "@ente/shared/storage/InMemoryStore"; import { LS_KEYS, getData, setData } from "@ente/shared/storage/localStorage"; import { SESSION_KEYS, getKey } from "@ente/shared/storage/sessionStorage"; import { KeyAttributes, User } from "@ente/shared/user/types"; const bip39 = require("bip39"); // mobile client library only supports english. bip39.setDefaultWordlist("english"); export default function Recover({ appContext, router, appName }: PageProps) { const [keyAttributes, setKeyAttributes] = useState(); useEffect(() => { const user: User = getData(LS_KEYS.USER); const keyAttributes: KeyAttributes = getData(LS_KEYS.KEY_ATTRIBUTES); const key = getKey(SESSION_KEYS.ENCRYPTION_KEY); if (!user?.email) { router.push(PAGES.ROOT); return; } if (!user?.encryptedToken && !user?.token) { sendOtt(appName, user.email); InMemoryStore.set(MS_KEYS.REDIRECT_URL, PAGES.RECOVER); router.push(PAGES.VERIFY); return; } if (!keyAttributes) { router.push(PAGES.GENERATE); } else if (key) { router.push(APP_HOMES.get(appName)); } else { setKeyAttributes(keyAttributes); } appContext.showNavBar(true); }, []); const recover: SingleInputFormProps["callback"] = async ( recoveryKey: string, setFieldError, ) => { try { recoveryKey = recoveryKey .trim() .split(" ") .map((part) => part.trim()) .filter((part) => !!part) .join(" "); // check if user is entering mnemonic recovery key if (recoveryKey.indexOf(" ") > 0) { if (recoveryKey.split(" ").length !== 24) { throw new Error("recovery code should have 24 words"); } recoveryKey = bip39.mnemonicToEntropy(recoveryKey); } const cryptoWorker = await ComlinkCryptoWorker.getInstance(); const masterKey = await cryptoWorker.decryptB64( keyAttributes.masterKeyEncryptedWithRecoveryKey, keyAttributes.masterKeyDecryptionNonce, await cryptoWorker.fromHex(recoveryKey), ); await saveKeyInSessionStore(SESSION_KEYS.ENCRYPTION_KEY, masterKey); await decryptAndStoreToken(keyAttributes, masterKey); setData(LS_KEYS.SHOW_BACK_BUTTON, { value: false }); router.push(PAGES.CHANGE_PASSWORD); } catch (e) { logError(e, "password recovery failed"); setFieldError(t("INCORRECT_RECOVERY_KEY")); } }; const showNoRecoveryKeyMessage = () => { appContext.setDialogBoxAttributesV2({ title: t("SORRY"), close: {}, content: t("NO_RECOVERY_KEY_MESSAGE"), }); }; return ( {t("RECOVER_ACCOUNT")} {t("NO_RECOVERY_KEY")} {t("GO_BACK")} ); }