Files
notesnook/packages/core/src/api/user-manager.ts

590 lines
16 KiB
TypeScript
Raw Normal View History

/*
This file is part of the Notesnook project (https://notesnook.com/)
2023-01-16 13:44:52 +05:00
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/>.
*/
2022-08-30 16:13:11 +05:00
2024-09-23 15:08:57 +05:00
import { User } from "../types.js";
import http from "../utils/http.js";
import constants from "../utils/constants.js";
import TokenManager from "./token-manager.js";
import { EV, EVENTS } from "../common.js";
import { HealthCheck } from "./healthcheck.js";
import Database from "./index.js";
import { SerializedKey } from "@notesnook/crypto";
2024-09-23 15:08:57 +05:00
import { logger } from "../logger.js";
2020-12-16 12:06:25 +05:00
const ENDPOINTS = {
signup: "/users",
token: "/connect/token",
user: "/users",
deleteUser: "/users/delete",
patchUser: "/account",
verifyUser: "/account/verify",
2020-12-16 12:06:25 +05:00
revoke: "/connect/revocation",
2020-12-22 09:36:35 +05:00
recoverAccount: "/account/recover",
2022-04-01 18:41:33 +05:00
resetUser: "/users/reset",
activateTrial: "/subscriptions/trial"
2020-12-16 12:06:25 +05:00
};
class UserManager {
private tokenManager: TokenManager;
private cachedAttachmentKey?: SerializedKey;
constructor(private readonly db: Database) {
this.tokenManager = new TokenManager(this.db.kv);
EV.subscribe(EVENTS.userUnauthorized, async (url: string) => {
if (url.includes("/connect/token") || !(await HealthCheck.auth())) return;
try {
await this.tokenManager._refreshToken(true);
} catch (e) {
if (
e instanceof Error &&
(e.message === "invalid_grant" || e.message === "invalid_client")
) {
await this.logout(
false,
`Your token has been revoked. Error: ${e.message}.`
);
}
}
});
2020-12-16 12:06:25 +05:00
}
2020-12-22 16:13:01 +05:00
async init() {
const user = await this.getUser();
if (!user) return;
}
async signup(email: string, password: string) {
email = email.toLowerCase();
const hashedPassword = await this.db.storage().hash(password, email);
2020-12-16 12:06:25 +05:00
await http.post(`${constants.API_HOST}${ENDPOINTS.signup}`, {
email,
2021-01-18 23:29:49 +05:00
password: hashedPassword,
client_id: "notesnook"
2020-12-16 12:06:25 +05:00
});
EV.publish(EVENTS.userSignedUp);
2022-03-17 22:58:08 +05:00
return await this._login({ email, password, hashedPassword });
2021-01-18 23:29:49 +05:00
}
async authenticateEmail(email: string) {
if (!email) throw new Error("Email is required.");
email = email.toLowerCase();
const result = await http.post(`${constants.AUTH_HOST}${ENDPOINTS.token}`, {
email,
grant_type: "email",
client_id: "notesnook"
});
await this.tokenManager.saveToken(result);
return result.additional_data;
}
async authenticateMultiFactorCode(code: string, method: string) {
if (!code || !method) throw new Error("code & method are required.");
const token = await this.tokenManager.getToken();
if (!token || token.scope !== "auth:grant_types:mfa")
throw new Error("No token found.");
await this.tokenManager.saveToken(
await http.post(
`${constants.AUTH_HOST}${ENDPOINTS.token}`,
{
grant_type: "mfa",
client_id: "notesnook",
"mfa:code": code,
"mfa:method": method
},
token.access_token
)
);
return true;
}
2023-10-30 11:55:43 +05:00
async authenticatePassword(
email: string,
password: string,
hashedPassword?: string,
sessionExpired?: boolean
2023-10-30 11:55:43 +05:00
) {
if (!email || !password) throw new Error("email & password are required.");
2024-03-06 11:28:45 +05:00
const token = await this.tokenManager.getToken();
if (!token || token.scope !== "auth:grant_types:mfa_password")
throw new Error("No token found.");
email = email.toLowerCase();
if (!hashedPassword) {
hashedPassword = await this.db.storage().hash(password, email);
}
2024-03-06 11:28:45 +05:00
try {
let usesFallback = false;
2024-03-06 11:28:45 +05:00
await this.tokenManager.saveToken(
await http
.post(
`${constants.AUTH_HOST}${ENDPOINTS.token}`,
{
grant_type: "mfa_password",
client_id: "notesnook",
scope: "notesnook.sync offline_access IdentityServerApi",
password: hashedPassword
},
token.access_token
)
.catch(async (e) => {
2024-12-13 14:06:17 +05:00
if (e instanceof Error && e.message === "Password is incorrect.") {
hashedPassword = await this.db
.storage()
.hash(password, email, { usesFallback: true });
if (hashedPassword === null) return Promise.reject(e);
usesFallback = true;
return await http.post(
`${constants.AUTH_HOST}${ENDPOINTS.token}`,
{
grant_type: "mfa_password",
client_id: "notesnook",
scope: "notesnook.sync offline_access IdentityServerApi",
password: hashedPassword
},
token.access_token
);
}
return Promise.reject(e);
})
2024-03-06 11:28:45 +05:00
);
const user = await this.fetchUser();
if (!user) throw new Error("Failed to fetch user.");
2024-03-06 11:28:45 +05:00
if (!sessionExpired) {
await this.db.setLastSynced(0);
2023-12-08 11:51:51 +05:00
await this.db.syncer.devices.register();
2024-03-06 11:28:45 +05:00
}
if (usesFallback) {
await this.db.storage().deriveCryptoKeyFallback({
password,
salt: user.salt
});
} else {
await this.db.storage().deriveCryptoKey({
password,
salt: user.salt
});
}
await this.db.kv().write("usesFallbackPWHash", usesFallback);
2024-03-06 11:28:45 +05:00
EV.publish(EVENTS.userLoggedIn, user);
} catch (e) {
await this.tokenManager.saveToken(token);
throw e;
2023-10-30 11:55:43 +05:00
}
}
async _login({
email,
password,
hashedPassword,
code,
method
}: {
email: string;
password: string;
hashedPassword?: string;
code?: string;
method?: string;
}) {
2023-01-09 18:58:30 +05:00
email = email && email.toLowerCase();
if (!hashedPassword && password) {
hashedPassword = await this.db.storage().hash(password, email);
2023-01-09 18:58:30 +05:00
}
await this.tokenManager.saveToken(
await http.post(`${constants.AUTH_HOST}${ENDPOINTS.token}`, {
username: email,
password: hashedPassword,
grant_type: code ? "mfa" : "password",
2024-05-11 10:29:02 +05:00
scope: "notesnook.sync offline_access IdentityServerApi",
2023-01-09 18:58:30 +05:00
client_id: "notesnook",
"mfa:code": code,
"mfa:method": method
})
);
const user = await this.fetchUser();
if (!user) return;
await this.db.storage().deriveCryptoKey({
2023-01-09 18:58:30 +05:00
password,
salt: user.salt
});
await this.db.setLastSynced(0);
2023-12-08 11:51:51 +05:00
await this.db.syncer.devices.register();
2023-01-09 18:58:30 +05:00
EV.publish(EVENTS.userLoggedIn, user);
}
2020-12-16 12:06:25 +05:00
async getSessions() {
const token = await this.tokenManager.getAccessToken();
if (!token) return;
await http.get(`${constants.AUTH_HOST}/account/sessions`, token);
}
async clearSessions(all = false) {
const token = await this.tokenManager.getToken();
if (!token) return;
const { access_token, refresh_token } = token;
await http.post(
`${constants.AUTH_HOST}/account/sessions/clear?all=${all}`,
{ refresh_token },
access_token
);
}
2022-02-17 21:22:22 +05:00
async activateTrial() {
const token = await this.tokenManager.getAccessToken();
if (!token) return false;
await http.post(
`${constants.SUBSCRIPTIONS_HOST}${ENDPOINTS.activateTrial}`,
null,
token
);
return true;
}
async logout(revoke = true, reason?: string) {
2020-12-22 16:13:01 +05:00
try {
2023-12-08 11:51:51 +05:00
await this.db.syncer.devices.unregister();
2020-12-22 16:13:01 +05:00
if (revoke) await this.tokenManager.revokeToken();
} catch (e) {
logger.error(e, "Error logging out user.", { revoke, reason });
2020-12-22 16:13:01 +05:00
} finally {
this.cachedAttachmentKey = undefined;
2023-12-12 10:02:26 +05:00
await this.db.reset();
EV.publish(EVENTS.userLoggedOut, reason);
2021-07-03 23:07:54 +05:00
EV.publish(EVENTS.appRefreshRequested);
2020-12-22 16:13:01 +05:00
}
2020-12-16 12:06:25 +05:00
}
setUser(user: User) {
return this.db.kv().write("user", user);
2020-12-16 12:06:25 +05:00
}
getUser() {
return this.db.kv().read("user");
2020-12-16 12:06:25 +05:00
}
/**
* @deprecated
*/
getLegacyUser() {
return this.db.storage().read<User>("user");
}
2022-04-01 18:41:33 +05:00
async resetUser(removeAttachments = true) {
const token = await this.tokenManager.getAccessToken();
2022-04-01 18:41:33 +05:00
if (!token) return;
await http.post(
`${constants.API_HOST}${ENDPOINTS.resetUser}`,
{ removeAttachments },
token
);
return true;
}
private async updateUser(partial: Partial<User>) {
const user = await this.getUser();
if (!user) return;
const token = await this.tokenManager.getAccessToken();
await http.patch.json(
`${constants.API_HOST}${ENDPOINTS.user}`,
partial,
token
);
await this.setUser({ ...user, ...partial });
}
async deleteUser(password: string) {
const token = await this.tokenManager.getAccessToken();
const user = await this.getUser();
if (!token || !user) return;
2020-12-16 12:06:25 +05:00
await http.post(
`${constants.API_HOST}${ENDPOINTS.deleteUser}`,
{
password: await this.db.storage().hash(password, user.email, {
usesFallback: await this.db.kv().read("usesFallbackPWHash")
})
},
2020-12-16 12:06:25 +05:00
token
);
await this.logout(false, "Account deleted.");
return true;
}
async fetchUser(): Promise<User | undefined> {
2020-12-16 12:06:25 +05:00
try {
const token = await this.tokenManager.getAccessToken();
2020-12-16 12:06:25 +05:00
if (!token) return;
const user = await http.get(
`${constants.API_HOST}${ENDPOINTS.user}`,
token
);
if (user) {
const oldUser = await this.getUser();
if (
oldUser &&
(oldUser.subscription.type !== user.subscription.type ||
oldUser.subscription.provider !== user.subscription.provider)
) {
await this.tokenManager._refreshToken(true);
EV.publish(EVENTS.userSubscriptionUpdated, user.subscription);
}
if (oldUser && !oldUser.isEmailConfirmed && user.isEmailConfirmed)
EV.publish(EVENTS.userEmailConfirmed);
2021-05-25 16:19:58 +05:00
await this.setUser(user);
EV.publish(EVENTS.userFetched, user);
2020-12-16 12:06:25 +05:00
return user;
} else {
return await this.getUser();
2020-12-16 12:06:25 +05:00
}
2021-01-22 22:08:56 +05:00
} catch (e) {
logger.error(e, "Error fetching user");
2021-01-22 22:08:56 +05:00
return await this.getUser();
2020-12-16 12:06:25 +05:00
}
}
changePassword(oldPassword: string, newPassword: string) {
2020-12-22 13:13:18 +05:00
return this._updatePassword("change_password", {
old_password: oldPassword,
new_password: newPassword
2020-12-22 13:13:18 +05:00
});
}
async changeMarketingConsent(enabled: boolean) {
const token = await this.tokenManager.getAccessToken();
if (!token) return;
await http.patch(
`${constants.AUTH_HOST}${ENDPOINTS.patchUser}`,
{
type: "change_marketing_consent",
enabled: enabled
},
token
);
}
resetPassword(newPassword: string) {
2020-12-22 13:13:18 +05:00
return this._updatePassword("reset_password", {
new_password: newPassword
2020-12-22 13:13:18 +05:00
});
}
async getEncryptionKey(): Promise<SerializedKey | undefined> {
2020-12-16 12:06:25 +05:00
const user = await this.getUser();
if (!user) return;
const key = await this.db.storage().getCryptoKey();
if (!key) return;
2020-12-16 12:06:25 +05:00
return { key, salt: user.salt };
}
/**
* @deprecated
*/
async getLegacyEncryptionKey(): Promise<SerializedKey | undefined> {
const user = await this.getLegacyUser();
if (!user) return;
const key = await this.db.storage().getCryptoKey();
if (!key) return;
return { key, salt: user.salt };
}
async getAttachmentsKey() {
if (this.cachedAttachmentKey) return this.cachedAttachmentKey;
try {
let user = await this.getUser();
if (!user) return;
if (!user.attachmentsKey) {
const token = await this.tokenManager.getAccessToken();
user = await http.get(`${constants.API_HOST}${ENDPOINTS.user}`, token);
}
if (!user) return;
const userEncryptionKey = await this.getEncryptionKey();
if (!userEncryptionKey) return;
if (!user.attachmentsKey) {
const key = await this.db.crypto().generateRandomKey();
user.attachmentsKey = await this.db
.storage()
.encrypt(userEncryptionKey, JSON.stringify(key));
await this.updateUser({ attachmentsKey: user.attachmentsKey });
return key;
}
const plainData = await this.db
.storage()
.decrypt(userEncryptionKey, user.attachmentsKey);
if (!plainData) return;
this.cachedAttachmentKey = JSON.parse(plainData) as SerializedKey;
return this.cachedAttachmentKey;
} catch (e) {
logger.error(e, "Could not get attachments encryption key.");
if (e instanceof Error)
throw new Error(
`Could not get attachments encryption key. Error: ${e.message}`
);
}
}
2024-07-16 14:26:19 +05:00
async sendVerificationEmail(newEmail?: string) {
const token = await this.tokenManager.getAccessToken();
2020-12-22 13:13:18 +05:00
if (!token) return;
await http.post(
`${constants.AUTH_HOST}${ENDPOINTS.verifyUser}`,
{ newEmail },
token
);
}
async changeEmail(newEmail: string, password: string, code: string) {
const token = await this.tokenManager.getAccessToken();
if (!token) return;
const user = await this.getUser();
if (!user) return;
const email = newEmail.toLowerCase();
await http.patch(
`${constants.AUTH_HOST}${ENDPOINTS.patchUser}`,
{
type: "change_email",
new_email: newEmail,
password: await this.db.storage().hash(password, email, {
usesFallback: await this.db.kv().read("usesFallbackPWHash")
}),
verification_code: code
},
2020-12-22 13:13:18 +05:00
token
);
await this.db.storage().deriveCryptoKey({
password,
salt: user.salt
});
2020-12-22 13:13:18 +05:00
}
recoverAccount(email: string) {
2020-12-22 13:13:18 +05:00
return http.post(`${constants.AUTH_HOST}${ENDPOINTS.recoverAccount}`, {
email,
client_id: "notesnook"
2020-12-22 13:13:18 +05:00
});
}
async verifyPassword(password: string) {
try {
const user = await this.getUser();
const key = await this.getEncryptionKey();
if (!user || !key) return false;
const cipher = await this.db.storage().encrypt(key, "notesnook");
const plainText = await this.db.storage().decrypt({ password }, cipher);
return plainText === "notesnook";
} catch (e) {
return false;
}
}
async _updatePassword(
type: "change_password" | "reset_password",
data: {
new_password: string;
old_password?: string;
encryptionKey?: SerializedKey;
}
) {
const token = await this.tokenManager.getAccessToken();
const user = await this.getUser();
if (!token || !user) throw new Error("You are not logged in.");
const { email, salt } = user;
let { new_password, old_password } = data;
if (old_password && !(await this.verifyPassword(old_password)))
throw new Error("Incorrect old password.");
if (!new_password) throw new Error("New password is required.");
const attachmentsKey = await this.getAttachmentsKey();
data.encryptionKey = data.encryptionKey || (await this.getEncryptionKey());
await this.clearSessions();
if (data.encryptionKey) await this.db.sync({ type: "fetch", force: true });
2022-04-01 18:41:33 +05:00
await this.db.storage().deriveCryptoKey({
password: new_password,
salt
});
if (!(await this.resetUser(false))) return;
await this.db.sync({ type: "send", force: true });
if (attachmentsKey) {
const userEncryptionKey = await this.getEncryptionKey();
if (!userEncryptionKey) return;
user.attachmentsKey = await this.db
.storage()
.encrypt(userEncryptionKey, JSON.stringify(attachmentsKey));
await this.updateUser({ attachmentsKey: user.attachmentsKey });
}
if (old_password)
old_password = await this.db.storage().hash(old_password, email, {
usesFallback: await this.db.kv().read("usesFallbackPWHash")
});
if (new_password)
new_password = await this.db.storage().hash(new_password, email);
await http.patch(
`${constants.AUTH_HOST}${ENDPOINTS.patchUser}`,
{
type,
old_password,
new_password
},
token
);
2024-12-13 14:06:17 +05:00
await this.db.kv().write("usesFallbackPWHash", false);
2020-12-16 12:06:25 +05:00
return true;
}
}
export default UserManager;