mirror of
https://github.com/streetwriters/notesnook.git
synced 2026-02-24 20:20:21 +01:00
144 lines
4.3 KiB
JavaScript
144 lines
4.3 KiB
JavaScript
/*
|
|
This file is part of the Notesnook project (https://notesnook.com/)
|
|
|
|
Copyright (C) 2023 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 { strings } from "@notesnook/intl";
|
|
import { db } from "../../common/database";
|
|
import { validateAppLockPassword } from "../../common/database/encryption";
|
|
import { presentDialog } from "../../components/dialog/functions";
|
|
import BiometricService from "../../services/biometrics";
|
|
import { ToastManager } from "../../services/event-manager";
|
|
import SettingsService from "../../services/settings";
|
|
import { useUserStore } from "../../stores/use-user-store";
|
|
import { sleep } from "../../utils/time";
|
|
|
|
export async function verifyUser(
|
|
context,
|
|
onsuccess,
|
|
disableBackdropClosing,
|
|
onclose,
|
|
closeText
|
|
) {
|
|
presentDialog({
|
|
context: context,
|
|
title: strings.verifyItsYou(),
|
|
input: true,
|
|
inputPlaceholder: strings.enterPassword(),
|
|
paragraph: strings.enterPasswordDesc(),
|
|
positiveText: strings.verify(),
|
|
secureTextEntry: true,
|
|
disableBackdropClosing: disableBackdropClosing,
|
|
onClose: onclose,
|
|
negativeText: closeText || strings.cancel(),
|
|
positivePress: async (value) => {
|
|
try {
|
|
const user = await db.user.getUser();
|
|
let verified = !user ? true : await db.user.verifyPassword(value);
|
|
if (verified) {
|
|
sleep(300).then(async () => {
|
|
await onsuccess();
|
|
});
|
|
} else {
|
|
ToastManager.show({
|
|
heading: strings.passwordIncorrect(),
|
|
type: "error",
|
|
context: "global"
|
|
});
|
|
return false;
|
|
}
|
|
} catch (e) {
|
|
ToastManager.show({
|
|
heading: strings.verifyFailed(),
|
|
message: e.message,
|
|
type: "error",
|
|
context: "global"
|
|
});
|
|
return false;
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
export async function verifyUserWithApplock() {
|
|
const keyboardType = SettingsService.getProperty("applockKeyboardType");
|
|
return new Promise((resolve) => {
|
|
if (SettingsService.getProperty("appLockHasPasswordSecurity")) {
|
|
presentDialog({
|
|
title: strings.verifyItsYou(),
|
|
input: true,
|
|
inputPlaceholder:
|
|
keyboardType == "numeric"
|
|
? strings.enterApplockPin()
|
|
: strings.enterApplockPassword(),
|
|
paragraph:
|
|
keyboardType == "numeric"
|
|
? strings.enterApplockPinDesc()
|
|
: strings.enterApplockPasswordDesc(),
|
|
positiveText: strings.verify(),
|
|
secureTextEntry: true,
|
|
negativeText: strings.cancel(),
|
|
keyboardType: keyboardType,
|
|
positivePress: async (value) => {
|
|
try {
|
|
const verified = await validateAppLockPassword(value);
|
|
if (!verified) {
|
|
ToastManager.show({
|
|
heading: strings.invalid(
|
|
keyboardType === "numeric" ? "pin" : "password"
|
|
),
|
|
type: "error",
|
|
context: "local"
|
|
});
|
|
return false;
|
|
}
|
|
resolve(verified);
|
|
} catch (e) {
|
|
resolve(false);
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
});
|
|
} else {
|
|
BiometricService.isBiometryAvailable().then((available) => {
|
|
if (available) {
|
|
BiometricService.validateUser(strings.verifyItsYou()).then(
|
|
(verified) => {
|
|
resolve(verified);
|
|
}
|
|
);
|
|
} else if (useUserStore.getState().user) {
|
|
let verified = false;
|
|
verifyUser(
|
|
null,
|
|
() => {
|
|
resolve(true);
|
|
},
|
|
false,
|
|
() => {
|
|
resolve(verified);
|
|
}
|
|
);
|
|
} else {
|
|
resolve(true);
|
|
}
|
|
});
|
|
}
|
|
});
|
|
}
|