mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-15 19:27:51 +01:00
285 lines
8.2 KiB
JavaScript
285 lines
8.2 KiB
JavaScript
/* 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/>.
|
|
*/
|
|
|
|
import React, { useEffect, useRef, useState } from "react";
|
|
import { Modal, View } from "react-native";
|
|
import { db } from "../../common/database";
|
|
import BiometricService from "../../services/biometrics";
|
|
import {
|
|
eSendEvent,
|
|
eSubscribeEvent,
|
|
eUnSubscribeEvent,
|
|
ToastEvent
|
|
} from "../../services/event-manager";
|
|
import { clearMessage } from "../../services/message";
|
|
import PremiumService from "../../services/premium";
|
|
import SettingsService from "../../services/settings";
|
|
import Sync from "../../services/sync";
|
|
import { useThemeStore } from "../../stores/use-theme-store";
|
|
import { useUserStore } from "../../stores/use-user-store";
|
|
import { SIZE } from "../../utils/size";
|
|
import { sleep } from "../../utils/time";
|
|
import { Dialog } from "../dialog";
|
|
import { presentDialog } from "../dialog/functions";
|
|
import SheetProvider from "../sheet-provider";
|
|
import { Progress } from "../sheets/progress";
|
|
import { Toast } from "../toast";
|
|
import { Button } from "../ui/button";
|
|
import { IconButton } from "../ui/icon-button";
|
|
import Input from "../ui/input";
|
|
import Heading from "../ui/typography/heading";
|
|
import Paragraph from "../ui/typography/paragraph";
|
|
import TwoFactorVerification from "./two-factor";
|
|
|
|
function getEmail(email) {
|
|
if (!email) return null;
|
|
return email.replace(/(.{2})(.*)(?=@)/, function (gp1, gp2, gp3) {
|
|
for (let i = 0; i < gp3.length; i++) {
|
|
gp2 += "*";
|
|
}
|
|
return gp2;
|
|
});
|
|
}
|
|
|
|
export const SessionExpired = () => {
|
|
const colors = useThemeStore((state) => state.colors);
|
|
const email = useRef();
|
|
const passwordInputRef = useRef();
|
|
const password = useRef();
|
|
const [visible, setVisible] = useState(false);
|
|
const [focused, setFocused] = useState(false);
|
|
|
|
const setUser = useUserStore((state) => state.setUser);
|
|
|
|
const [loading, setLoading] = useState(false);
|
|
|
|
const logout = async () => {
|
|
try {
|
|
await db.user.logout();
|
|
await BiometricService.resetCredentials();
|
|
SettingsService.set({
|
|
introCompleted: true
|
|
});
|
|
setVisible(false);
|
|
} catch (e) {
|
|
ToastEvent.show({
|
|
heading: e.message,
|
|
type: "error",
|
|
context: "local"
|
|
});
|
|
}
|
|
};
|
|
|
|
useEffect(() => {
|
|
eSubscribeEvent("session_expired", open);
|
|
return () => {
|
|
eUnSubscribeEvent("session_expired", open);
|
|
setFocused(false);
|
|
};
|
|
}, [visible]);
|
|
|
|
const open = async () => {
|
|
try {
|
|
console.log("REQUESTING NEW TOKEN");
|
|
let res = await db.user.tokenManager.getToken();
|
|
if (!res) throw new Error("no token found");
|
|
if (db.user.tokenManager._isTokenExpired(res))
|
|
throw new Error("token expired");
|
|
Sync.run("global", false, true, async (complete) => {
|
|
if (!complete) {
|
|
let user = await db.user.getUser();
|
|
if (!user) return;
|
|
email.current = user.email;
|
|
setVisible(true);
|
|
return;
|
|
}
|
|
SettingsService.set({
|
|
sessionExpired: false
|
|
});
|
|
setVisible(false);
|
|
});
|
|
} catch (e) {
|
|
console.log(e);
|
|
let user = await db.user.getUser();
|
|
if (!user) return;
|
|
email.current = user.email;
|
|
setVisible(true);
|
|
}
|
|
};
|
|
|
|
const login = async (mfa, callback) => {
|
|
setLoading(true);
|
|
let user;
|
|
try {
|
|
if (mfa) {
|
|
await db.user.mfaLogin(
|
|
email.current.toLowerCase(),
|
|
password.current,
|
|
mfa
|
|
);
|
|
} else {
|
|
await db.user.login(email.current.toLowerCase(), password.current);
|
|
}
|
|
callback && callback(true);
|
|
setVisible(false);
|
|
user = await db.user.getUser();
|
|
if (!user) throw new Error("Email or password incorrect!");
|
|
PremiumService.setPremiumStatus();
|
|
setUser(user);
|
|
clearMessage();
|
|
ToastEvent.show({
|
|
heading: "Login successful",
|
|
message: `Logged in as ${user.email}`,
|
|
type: "success",
|
|
context: "global"
|
|
});
|
|
await SettingsService.set({
|
|
sessionExpired: false,
|
|
userEmailConfirmed: user?.isEmailConfirmed
|
|
});
|
|
eSendEvent("userLoggedIn", true);
|
|
await sleep(500);
|
|
Progress.present();
|
|
setLoading(false);
|
|
} catch (e) {
|
|
callback && callback(false);
|
|
if (e.message === "Multifactor authentication required.") {
|
|
TwoFactorVerification.present(async (mfa) => {
|
|
if (mfa) {
|
|
console.log(mfa);
|
|
await login(mfa);
|
|
} else {
|
|
setLoading(false);
|
|
}
|
|
}, e.data);
|
|
} else {
|
|
console.log(e.stack);
|
|
setLoading(false);
|
|
ToastEvent.show({
|
|
heading: user ? "Failed to sync" : "Login failed",
|
|
message: e.message,
|
|
type: "error",
|
|
context: "local"
|
|
});
|
|
}
|
|
}
|
|
};
|
|
return (
|
|
visible && (
|
|
<Modal
|
|
onShow={async () => {
|
|
await sleep(300);
|
|
passwordInputRef.current?.focus();
|
|
setFocused(true);
|
|
}}
|
|
visible={true}
|
|
>
|
|
<SheetProvider context="two_factor_verify" />
|
|
<View
|
|
style={{
|
|
width: focused ? "100%" : "99.9%",
|
|
padding: 12,
|
|
justifyContent: "center",
|
|
flex: 1
|
|
}}
|
|
>
|
|
<View
|
|
style={{
|
|
justifyContent: "center",
|
|
alignItems: "center",
|
|
width: "100%",
|
|
marginBottom: 20,
|
|
borderRadius: 10,
|
|
paddingVertical: 20
|
|
}}
|
|
>
|
|
<IconButton
|
|
customStyle={{
|
|
width: 60,
|
|
height: 60
|
|
}}
|
|
name="alert"
|
|
color={colors.errorText}
|
|
size={50}
|
|
/>
|
|
<Heading size={SIZE.xxxl} color={colors.heading}>
|
|
Session expired
|
|
</Heading>
|
|
<Paragraph
|
|
style={{
|
|
textAlign: "center"
|
|
}}
|
|
>
|
|
Your session on this device has expired. Please enter password for{" "}
|
|
{getEmail(email.current)} to continue.
|
|
</Paragraph>
|
|
</View>
|
|
|
|
<Input
|
|
fwdRef={passwordInputRef}
|
|
onChangeText={(value) => {
|
|
password.current = value;
|
|
}}
|
|
returnKeyLabel="Next"
|
|
returnKeyType="next"
|
|
secureTextEntry
|
|
autoComplete="password"
|
|
autoCapitalize="none"
|
|
autoCorrect={false}
|
|
placeholder="Password"
|
|
onSubmit={() => login()}
|
|
/>
|
|
|
|
<Button
|
|
style={{
|
|
marginTop: 10,
|
|
width: "100%"
|
|
}}
|
|
loading={loading}
|
|
onPress={() => login()}
|
|
type="accent"
|
|
title={loading ? null : "Login"}
|
|
/>
|
|
|
|
<Button
|
|
style={{
|
|
marginTop: 10,
|
|
width: "100%"
|
|
}}
|
|
onPress={() => {
|
|
presentDialog({
|
|
context: "session_expiry",
|
|
title: "Logout",
|
|
paragraph:
|
|
"Are you sure you want to logout from this device? Any unsynced changes will be lost.",
|
|
positiveText: "Logout",
|
|
positiveType: "errorShade",
|
|
positivePress: logout
|
|
});
|
|
}}
|
|
type="errorShade"
|
|
title={loading ? null : "Logout from this device"}
|
|
/>
|
|
</View>
|
|
<Toast context="local" />
|
|
<Dialog context="session_expiry" />
|
|
</Modal>
|
|
)
|
|
);
|
|
};
|