Files
notesnook/apps/mobile/app/components/auth/two-factor.js

317 lines
9.0 KiB
JavaScript
Raw Normal View History

/*
This file is part of the Notesnook project (https://notesnook.com/)
Copyright (C) 2022 Streetwriters (Private) Limited
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2022-08-30 16:13:11 +05:00
2022-08-29 16:19:17 +05:00
import React, { useEffect, useRef, useState } from "react";
import { View } from "react-native";
2022-08-29 16:19:17 +05:00
import { db } from "../../common/database/index";
import useTimer from "../../hooks/use-timer";
import {
eSendEvent,
presentSheet,
ToastEvent
} from "../../services/event-manager";
import { useThemeStore } from "../../stores/use-theme-store";
import { eCloseProgressDialog } from "../../utils/events";
import { SIZE } from "../../utils/size";
import { Button } from "../ui/button";
import { IconButton } from "../ui/icon-button";
import Input from "../ui/input";
import { PressableButton } from "../ui/pressable";
import Seperator from "../ui/seperator";
import Heading from "../ui/typography/heading";
import Paragraph from "../ui/typography/paragraph";
2022-08-30 18:27:09 +05:00
import { useCallback } from "react";
2022-03-18 14:40:15 +05:00
const TwoFactorVerification = ({ onMfaLogin, mfaInfo }) => {
const colors = useThemeStore((state) => state.colors);
2022-03-18 14:40:15 +05:00
const code = useRef();
const [currentMethod, setCurrentMethod] = useState({
method: mfaInfo?.primaryMethod,
isPrimary: true
});
const { seconds, start } = useTimer(currentMethod.method);
const [loading, setLoading] = useState(false);
const inputRef = useRef();
2022-03-23 09:54:32 +05:00
const [sending, setSending] = useState(false);
2022-03-18 14:40:15 +05:00
const codeHelpText = {
app: "Enter the 6 digit code from your authenticator app to continue logging in",
sms: "Enter the 6 digit code sent to your phone number to continue logging in",
email: "Enter the 6 digit code sent to your email to continue logging in",
recoveryCode: "Enter the 8 digit recovery code to continue logging in"
2022-03-18 14:40:15 +05:00
};
const secondaryMethodsText = {
app: "I don't have access to authenticator app",
sms: "I don't have access to my phone",
email: "I don't have access to email",
recoveryCode: "I don't have recovery codes"
};
const onNext = async () => {
const length = currentMethod.method === "recoveryCode" ? 8 : 6;
2022-03-18 14:40:15 +05:00
if (!code.current || code.current.length !== length) return;
console.log(currentMethod.method, code.current);
setLoading(true);
inputRef.current?.blur();
await onMfaLogin(
{
method: currentMethod.method,
code: code.current
},
(result) => {
console.log("result recieved");
2022-03-18 14:40:15 +05:00
if (result) {
eSendEvent(eCloseProgressDialog, "two_factor_verify");
2022-03-18 14:40:15 +05:00
}
setLoading(false);
}
);
setLoading(false);
};
const onRequestSecondaryMethod = () => {
setCurrentMethod({
method: null,
isPrimary: false
});
};
const methods = [
{
id: "sms",
title: "Send code via SMS",
icon: "message-plus-outline"
2022-03-18 14:40:15 +05:00
},
{
id: "email",
title: "Send code via email",
icon: "email-outline"
2022-03-18 14:40:15 +05:00
},
{
id: "app",
title: "Enter code from authenticator app",
icon: "cellphone-key"
2022-03-18 14:40:15 +05:00
},
{
id: "recoveryCode",
title: "I have a recovery code",
icon: "key"
2022-03-18 14:40:15 +05:00
}
];
const getMethods = () => {
return methods.filter(
(m) =>
2022-03-18 14:40:15 +05:00
m.id === mfaInfo?.primaryMethod ||
m.id === mfaInfo?.secondaryMethod ||
m.id === "recoveryCode"
2022-03-18 14:40:15 +05:00
);
};
2022-03-23 09:54:32 +05:00
useEffect(() => {
if (currentMethod.method === "sms" || currentMethod.method === "email") {
2022-03-23 09:54:32 +05:00
onSendCode();
}
2022-08-30 18:27:09 +05:00
}, [currentMethod.method, onSendCode]);
2022-03-23 09:54:32 +05:00
2022-08-30 18:27:09 +05:00
const onSendCode = useCallback(async () => {
2022-03-23 09:54:32 +05:00
if (seconds || sending) return;
// TODO
setSending(true);
try {
console.log("sending code", currentMethod.method, mfaInfo.token);
2022-03-23 09:54:32 +05:00
await db.mfa.sendCode(currentMethod.method, mfaInfo.token);
start(60);
setSending(false);
} catch (e) {
setSending(false);
ToastEvent.error(e, "Error sending 2FA Code", "local");
2022-03-23 09:54:32 +05:00
}
2022-08-30 18:27:09 +05:00
}, [currentMethod.method, mfaInfo.token, seconds, sending, start]);
2022-03-23 09:54:32 +05:00
2022-03-18 14:40:15 +05:00
return (
<View>
<View
style={{
alignItems: "center",
2022-03-18 14:40:15 +05:00
paddingHorizontal: currentMethod.method ? 12 : 0
}}
>
<IconButton
customStyle={{
width: 70,
height: 70
}}
size={50}
name="key"
color={colors.accent}
/>
<Heading
style={{
textAlign: "center"
2022-03-18 14:40:15 +05:00
}}
>
{currentMethod.method
? "Two factor authentication"
: "Select methods for two-factor authentication"}
2022-03-18 14:40:15 +05:00
</Heading>
<Paragraph
style={{
width: "80%",
textAlign: "center"
2022-03-18 14:40:15 +05:00
}}
>
{codeHelpText[currentMethod.method] ||
"Select how you would like to recieve the code"}
2022-03-18 14:40:15 +05:00
</Paragraph>
<Seperator />
{currentMethod.method === "sms" || currentMethod.method === "email" ? (
2022-03-18 14:40:15 +05:00
<Button
2022-03-23 09:54:32 +05:00
onPress={onSendCode}
type={seconds ? "gray" : "transparent"}
title={
sending
? ""
: `${seconds ? `Resend code in (${seconds})` : "Send code"}`
}
2022-03-23 09:54:32 +05:00
loading={sending}
2022-03-18 14:40:15 +05:00
height={30}
/>
) : null}
<Seperator />
{currentMethod.method ? (
<>
<Input
placeholder={
currentMethod.method === "recoveryCode" ? "xxxxxxxx" : "xxxxxx"
}
maxLength={currentMethod.method === "recoveryCode" ? 8 : 6}
2022-03-18 14:40:15 +05:00
fwdRef={inputRef}
textAlign="center"
onChangeText={(value) => {
2022-03-18 14:40:15 +05:00
code.current = value;
onNext();
}}
inputStyle={{
fontSize: SIZE.lg,
height: 60,
textAlign: "center",
2022-03-18 14:40:15 +05:00
letterSpacing: 10,
width: null
}}
keyboardType={
currentMethod.method === "recoveryCode" ? "default" : "numeric"
}
2022-03-18 14:40:15 +05:00
containerStyle={{
height: 60,
borderWidth: 0,
2022-08-30 13:30:11 +05:00
width: undefined,
minWidth: "50%"
2022-03-18 14:40:15 +05:00
}}
/>
<Seperator />
<Button
title={loading ? null : "Next"}
2022-03-18 14:40:15 +05:00
type="accent"
width={250}
loading={loading}
onPress={onNext}
style={{
borderRadius: 100,
marginBottom: 10
}}
/>
<Button
title={secondaryMethodsText[currentMethod.method]}
type="gray"
onPress={onRequestSecondaryMethod}
height={30}
/>
</>
) : (
<>
{getMethods().map((item) => (
2022-03-18 14:40:15 +05:00
<PressableButton
key={item.title}
onPress={() => {
setCurrentMethod({
method: item.id,
isPrimary: false
});
}}
customStyle={{
paddingHorizontal: 12,
paddingVertical: 12,
marginTop: 0,
flexDirection: "row",
2022-03-18 14:40:15 +05:00
borderRadius: 0,
alignItems: "center",
width: "100%",
justifyContent: "flex-start"
2022-03-18 14:40:15 +05:00
}}
>
<IconButton
type="grayAccent"
customStyle={{
width: 40,
height: 40,
marginRight: 10
}}
size={15}
color={colors.accent}
name={item.icon}
/>
<View
style={{
flexShrink: 1
}}
>
<Paragraph size={SIZE.md}>{item.title}</Paragraph>
</View>
</PressableButton>
))}
</>
)}
</View>
</View>
);
};
TwoFactorVerification.present = (onMfaLogin, data, context) => {
console.log("presenting sheet");
2022-03-18 14:40:15 +05:00
presentSheet({
component: <TwoFactorVerification onMfaLogin={onMfaLogin} mfaInfo={data} />,
context: context || "two_factor_verify",
2022-03-18 14:40:15 +05:00
onClose: () => {
console.log("on close called");
2022-03-18 14:40:15 +05:00
onMfaLogin();
2022-03-23 19:48:25 +05:00
},
disableClosing: true
2022-03-18 14:40:15 +05:00
});
};
export default TwoFactorVerification;