2018-03-26 01:41:29 +08:00
|
|
|
import treeService from './tree.js';
|
2018-04-08 21:25:35 +08:00
|
|
|
import noteDetailService from './note_detail.js';
|
2018-03-25 23:09:17 +08:00
|
|
|
import utils from './utils.js';
|
|
|
|
import server from './server.js';
|
2018-03-26 09:16:57 +08:00
|
|
|
import protectedSessionHolder from './protected_session_holder.js';
|
2018-03-26 09:29:35 +08:00
|
|
|
import infoService from "./info.js";
|
2018-03-25 23:09:17 +08:00
|
|
|
|
|
|
|
const $dialog = $("#protected-session-password-dialog");
|
|
|
|
const $passwordForm = $("#protected-session-password-form");
|
|
|
|
const $password = $("#protected-session-password");
|
|
|
|
const $noteDetailWrapper = $("#note-detail-wrapper");
|
|
|
|
const $protectButton = $("#protect-button");
|
|
|
|
const $unprotectButton = $("#unprotect-button");
|
|
|
|
|
|
|
|
let protectedSessionDeferred = null;
|
|
|
|
|
|
|
|
function ensureProtectedSession(requireProtectedSession, modal) {
|
|
|
|
const dfd = $.Deferred();
|
|
|
|
|
2018-03-26 09:16:57 +08:00
|
|
|
if (requireProtectedSession && !protectedSessionHolder.isProtectedSessionAvailable()) {
|
2018-03-25 23:09:17 +08:00
|
|
|
protectedSessionDeferred = dfd;
|
|
|
|
|
|
|
|
if (treeService.getCurrentNode().data.isProtected) {
|
|
|
|
$noteDetailWrapper.hide();
|
|
|
|
}
|
2017-11-05 07:57:40 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
$dialog.dialog({
|
|
|
|
modal: modal,
|
|
|
|
width: 400,
|
|
|
|
open: () => {
|
|
|
|
if (!modal) {
|
|
|
|
// dialog steals focus for itself, which is not what we want for non-modal (viewing)
|
|
|
|
treeService.getCurrentNode().setFocus();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
dfd.resolve();
|
2017-09-07 10:06:43 +08:00
|
|
|
}
|
2017-11-04 08:01:32 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
return dfd.promise();
|
|
|
|
}
|
2017-09-07 10:06:43 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
async function setupProtectedSession() {
|
|
|
|
const password = $password.val();
|
|
|
|
$password.val("");
|
2018-01-27 11:32:44 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
const response = await enterProtectedSession(password);
|
2017-09-07 10:06:43 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
if (!response.success) {
|
2018-03-26 09:29:35 +08:00
|
|
|
infoService.showError("Wrong password.");
|
2018-03-25 23:09:17 +08:00
|
|
|
return;
|
2017-11-05 06:18:55 +08:00
|
|
|
}
|
2017-09-09 08:55:24 +08:00
|
|
|
|
2018-03-26 09:16:57 +08:00
|
|
|
protectedSessionHolder.setProtectedSessionId(response.protectedSessionId);
|
2017-11-11 11:55:19 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
$dialog.dialog("close");
|
2017-09-07 11:13:39 +08:00
|
|
|
|
2018-04-08 21:25:35 +08:00
|
|
|
noteDetailService.reload();
|
2018-03-25 23:09:17 +08:00
|
|
|
treeService.reload();
|
2017-09-07 10:06:43 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
if (protectedSessionDeferred !== null) {
|
|
|
|
ensureDialogIsClosed($dialog, $password);
|
2017-09-18 00:46:14 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
$noteDetailWrapper.show();
|
2017-11-15 12:01:23 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
protectedSessionDeferred.resolve();
|
2018-01-27 11:32:44 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
protectedSessionDeferred = null;
|
2017-11-09 11:33:08 +08:00
|
|
|
}
|
2018-03-25 23:09:17 +08:00
|
|
|
}
|
2017-09-07 10:06:43 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
function ensureDialogIsClosed() {
|
|
|
|
// this may fal if the dialog has not been previously opened
|
|
|
|
try {
|
|
|
|
$dialog.dialog('close');
|
2017-11-15 13:10:11 +08:00
|
|
|
}
|
2018-03-25 23:09:17 +08:00
|
|
|
catch (e) {}
|
2017-11-15 13:10:11 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
$password.val('');
|
|
|
|
}
|
2017-11-11 11:55:19 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
async function enterProtectedSession(password) {
|
|
|
|
return await server.post('login/protected', {
|
|
|
|
password: password
|
|
|
|
});
|
|
|
|
}
|
2017-11-11 11:55:19 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
async function protectNoteAndSendToServer() {
|
|
|
|
await ensureProtectedSession(true, true);
|
2017-09-07 10:06:43 +08:00
|
|
|
|
2018-04-08 21:25:35 +08:00
|
|
|
const note = noteDetailService.getCurrentNote();
|
2018-03-26 11:25:17 +08:00
|
|
|
note.isProtected = true;
|
2017-09-07 10:06:43 +08:00
|
|
|
|
2018-04-08 21:25:35 +08:00
|
|
|
await noteDetailService.saveNote(note);
|
2017-12-25 22:30:37 +08:00
|
|
|
|
2018-03-26 11:25:17 +08:00
|
|
|
treeService.setProtected(note.noteId, note.isProtected);
|
2017-11-03 11:36:58 +08:00
|
|
|
|
2018-04-08 21:25:35 +08:00
|
|
|
noteDetailService.setNoteBackgroundIfProtected(note);
|
2018-03-25 23:09:17 +08:00
|
|
|
}
|
2017-11-03 11:55:22 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
async function unprotectNoteAndSendToServer() {
|
|
|
|
await ensureProtectedSession(true, true);
|
2017-11-04 08:01:32 +08:00
|
|
|
|
2018-04-08 21:25:35 +08:00
|
|
|
const note = noteDetailService.getCurrentNote();
|
2018-03-26 11:25:17 +08:00
|
|
|
note.isProtected = false;
|
2017-09-07 10:06:43 +08:00
|
|
|
|
2018-04-08 21:25:35 +08:00
|
|
|
await noteDetailService.saveNote(note);
|
2017-12-25 22:30:37 +08:00
|
|
|
|
2018-03-26 11:25:17 +08:00
|
|
|
treeService.setProtected(note.noteId, note.isProtected);
|
2017-09-18 00:46:14 +08:00
|
|
|
|
2018-04-08 21:25:35 +08:00
|
|
|
noteDetailService.setNoteBackgroundIfProtected(note);
|
2018-03-25 23:09:17 +08:00
|
|
|
}
|
|
|
|
|
2018-04-02 08:33:10 +08:00
|
|
|
async function protectBranch(noteId, protect) {
|
2018-03-25 23:09:17 +08:00
|
|
|
await ensureProtectedSession(true, true);
|
2017-11-23 09:46:42 +08:00
|
|
|
|
2018-04-02 08:33:10 +08:00
|
|
|
await server.put('notes/' + noteId + "/protect/" + (protect ? 1 : 0));
|
2017-11-15 13:04:26 +08:00
|
|
|
|
2018-03-26 09:29:35 +08:00
|
|
|
infoService.showMessage("Request to un/protect sub tree has finished successfully");
|
2017-11-15 13:04:26 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
treeService.reload();
|
2018-04-08 21:25:35 +08:00
|
|
|
noteDetailService.reload();
|
2018-03-25 23:09:17 +08:00
|
|
|
}
|
2017-11-15 13:04:26 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
$passwordForm.submit(() => {
|
|
|
|
setupProtectedSession();
|
2017-11-09 11:33:08 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
return false;
|
|
|
|
});
|
2017-11-09 11:33:08 +08:00
|
|
|
|
2018-03-25 23:09:17 +08:00
|
|
|
$protectButton.click(protectNoteAndSendToServer);
|
|
|
|
$unprotectButton.click(unprotectNoteAndSendToServer);
|
|
|
|
|
|
|
|
export default {
|
|
|
|
ensureProtectedSession,
|
|
|
|
protectNoteAndSendToServer,
|
|
|
|
unprotectNoteAndSendToServer,
|
2018-04-02 08:33:10 +08:00
|
|
|
protectBranch,
|
2018-03-25 23:09:17 +08:00
|
|
|
ensureDialogIsClosed
|
|
|
|
};
|