trilium/src/public/app/services/protected_session.js

117 lines
3.5 KiB
JavaScript
Raw Normal View History

import utils from './utils.js';
import server from './server.js';
import protectedSessionHolder from './protected_session_holder.js';
2019-10-20 16:00:18 +08:00
import toastService from "./toast.js";
import ws from "./ws.js";
2020-01-12 19:30:30 +08:00
import appContext from "./app_context.js";
import treeCache from "./tree_cache.js";
let protectedSessionDeferred = null;
async function leaveProtectedSession() {
if (protectedSessionHolder.isProtectedSessionAvailable()) {
protectedSessionHolder.resetProtectedSession();
}
}
/** returned promise resolves with true if new protected session was established, false if no action was necessary */
function enterProtectedSession() {
const dfd = $.Deferred();
if (protectedSessionHolder.isProtectedSessionAvailable()) {
dfd.resolve(false);
}
else {
// using deferred instead of promise because it allows resolving from outside
protectedSessionDeferred = dfd;
2019-09-08 17:25:57 +08:00
import("../dialogs/protected_session.js").then(dialog => dialog.show());
}
return dfd.promise();
}
async function reloadData() {
const allNoteIds = Object.keys(treeCache.notes);
await treeCache.loadInitialTree();
// make sure that all notes used in the application are loaded, including the ones not shown in the tree
await treeCache.reloadNotes(allNoteIds, true);
}
async function setupProtectedSession(password) {
const response = await enterProtectedSessionOnServer(password);
if (!response.success) {
2019-10-20 16:00:18 +08:00
toastService.showError("Wrong password.", 3000);
return;
2017-11-05 06:18:55 +08:00
}
protectedSessionHolder.setProtectedSessionId(response.protectedSessionId);
protectedSessionHolder.touchProtectedSession();
2017-11-11 11:55:19 +08:00
await reloadData();
await appContext.triggerEvent('treeCacheReloaded');
2020-02-17 02:21:17 +08:00
appContext.triggerEvent('protectedSessionStarted');
if (protectedSessionDeferred !== null) {
2019-09-08 17:25:57 +08:00
import("../dialogs/protected_session.js").then(dialog => dialog.close());
protectedSessionDeferred.resolve(true);
protectedSessionDeferred = null;
2017-11-09 11:33:08 +08:00
}
2019-10-20 16:00:18 +08:00
toastService.showMessage("Protected session has been started.");
}
async function enterProtectedSessionOnServer(password) {
return await server.post('login/protected', {
password: password
});
}
2017-11-11 11:55:19 +08:00
async function protectNote(noteId, protect, includingSubtree) {
await enterProtectedSession();
2017-11-23 09:46:42 +08:00
await server.put(`notes/${noteId}/protect/${protect ? 1 : 0}?subtree=${includingSubtree ? 1 : 0}`);
}
2017-11-15 13:04:26 +08:00
function makeToast(message, protectingLabel, text) {
return {
id: message.taskId,
title: protectingLabel + " status",
message: text,
2019-11-09 20:32:06 +08:00
icon: message.data.protect ? "check-shield" : "shield"
};
}
ws.subscribeToMessages(async message => {
if (message.taskType !== 'protect-notes') {
return;
}
const protectingLabel = message.data.protect ? "Protecting" : "Unprotecting";
if (message.type === 'task-error') {
2019-10-20 16:00:18 +08:00
toastService.closePersistent(message.taskId);
toastService.showError(message.message);
} else if (message.type === 'task-progress-count') {
2019-10-20 16:00:18 +08:00
toastService.showPersistent(makeToast(message, protectingLabel,protectingLabel + " in progress: " + message.progressCount));
} else if (message.type === 'task-succeeded') {
const toast = makeToast(message, protectingLabel, protectingLabel + " finished successfully.");
toast.closeAfter = 3000;
2019-10-20 16:00:18 +08:00
toastService.showPersistent(toast);
}
});
export default {
protectNote,
enterProtectedSession,
leaveProtectedSession,
setupProtectedSession
};