jquery ui dialog for encryption password

This commit is contained in:
azivner 2017-09-05 23:48:41 -04:00
parent a760fbbf1b
commit a024978d7b
4 changed files with 91 additions and 42 deletions

View file

@ -98,6 +98,17 @@
</form> </form>
</div> </div>
<div id="encryptionPasswordDialog" title="Enter password" style="display: none;">
<form id="encryptionPasswordForm">
<div class="form-group">
<label for="encryptionPassword">This note is encrypted. Enter password to show it:</label>
<input id="encryptionPassword" type="password">
</div>
<button class="btn btn-sm">Show</button>
</form>
</div>
<script type="text/javascript"> <script type="text/javascript">
const baseUrl = ''; const baseUrl = '';
</script> </script>

View file

@ -4,6 +4,8 @@ $(function() {
if (fancyTree.length) { if (fancyTree.length) {
fancyTree.height($(window).height() - fancyTree.offset().top - 10); fancyTree.height($(window).height() - fancyTree.offset().top - 10);
console.log("height: ", $(window).height() - fancyTree.offset().top - 10);
} }
const noteEditable = $('div.note-editable'); const noteEditable = $('div.note-editable');

View file

@ -67,9 +67,9 @@ function saveNoteIfChanged(callback) {
updateNoteFromInputs(note); updateNoteFromInputs(note);
encryptNoteIfNecessary(note).then(note => { encryptNoteIfNecessary(note);
saveNoteToServer(note, callback);
}); saveNoteToServer(note, callback);
} }
setInterval(saveNoteIfChanged, 5000); setInterval(saveNoteIfChanged, 5000);
@ -154,6 +154,23 @@ function setNoteBackgroundIfEncrypted(note) {
} }
} }
let globalEncryptionCallback = null;
function handleEncryption(requireEncryption, callback) {
if (requireEncryption && globalEncryptionKey === null) {
globalEncryptionCallback = callback;
$("#noteDetailWrapper").hide();
$("#encryptionPasswordDialog").dialog({
modal: false,
width: 400
});
}
else {
callback();
}
}
function loadNote(noteId) { function loadNote(noteId) {
$.get(baseUrl + 'notes/' + noteId).then(function(note) { $.get(baseUrl + 'notes/' + noteId).then(function(note) {
globalNote = note; globalNote = note;
@ -166,8 +183,16 @@ function loadNote(noteId) {
$("#noteTitle").focus().select(); $("#noteTitle").focus().select();
} }
decryptNoteIfNecessary(note).then(decrypted => { handleEncryption(note.detail.encryption > 0, () => {
note.detail.note_text = decrypted; $("#noteDetailWrapper").show();
try {
$("#encryptionPasswordDialog").dialog('close');
}
catch(e) {}
$("#encryptionPassword").val('');
note.detail.note_text = decryptNoteIfNecessary(note);
let noteText = notecase2html(note); let noteText = notecase2html(note);
@ -256,27 +281,35 @@ function deriveEncryptionKey(password) {
}); });
} }
let globalEncryptionKeyPromise = null; let globalEncryptionKey = null;
function getEncryptionKey() { $("#encryptionPasswordForm").submit(function() {
if (globalEncryptionKeyPromise === null) { const password = $("#encryptionPassword").val();
const password = prompt("Enter password for encryption"); $("#encryptionPassword").val("");
globalEncryptionKeyPromise = deriveEncryptionKey(password); deriveEncryptionKey(password).then(key => {
} $("#noteDetailWrapper").show();
$("#encryptionPasswordDialog").dialog("close");
return globalEncryptionKeyPromise; globalEncryptionKey = key;
}
if (globalEncryptionCallback !== null) {
globalEncryptionCallback();
globalEncryptionCallback = null;
}
});
return false;
});
function getAes() { function getAes() {
return getEncryptionKey().then(encryptionKey => { return new aesjs.ModeOfOperation.ctr(globalEncryptionKey, new aesjs.Counter(5));
return new aesjs.ModeOfOperation.ctr(encryptionKey, new aesjs.Counter(5));
});
} }
function encryptNoteIfNecessary(note) { function encryptNoteIfNecessary(note) {
if (note.detail.encryption === 0) { if (note.detail.encryption === 0) {
return Promise.resolve(note); return note;
} }
else { else {
return encryptNote(note); return encryptNote(note);
@ -284,24 +317,27 @@ function encryptNoteIfNecessary(note) {
} }
function encryptNote(note) { function encryptNote(note) {
return getAes().then(aes => { const aes = getAes();
const noteJson = note.detail.note_text; const noteJson = note.detail.note_text;
const noteBytes = aesjs.utils.utf8.toBytes(noteJson); const noteBytes = aesjs.utils.utf8.toBytes(noteJson);
const encryptedBytes = aes.encrypt(noteBytes); const encryptedBytes = aes.encrypt(noteBytes);
// To print or store the binary data, you may convert it to hex // To print or store the binary data, you may convert it to hex
note.detail.note_text = uint8ToBase64(encryptedBytes); note.detail.note_text = uint8ToBase64(encryptedBytes);
return note; return note;
});
} }
function encryptNoteAndSendToServer() { function encryptNoteAndSendToServer() {
updateNoteFromInputs(globalNote); handleEncryption(true, () => {
const note = globalNote;
updateNoteFromInputs(note);
encryptNote(note);
encryptNote(globalNote).then(note => {
note.detail.encryption = 1; note.detail.encryption = 1;
saveNoteToServer(note); saveNoteToServer(note);
@ -311,37 +347,35 @@ function encryptNoteAndSendToServer() {
} }
function decryptNoteAndSendToServer() { function decryptNoteAndSendToServer() {
const note = globalNote; handleEncryption(true, () => {
const note = globalNote;
updateNoteFromInputs(note); updateNoteFromInputs(note);
note.detail.encryption = 0; note.detail.encryption = 0;
saveNoteToServer(note); saveNoteToServer(note);
setNoteBackgroundIfEncrypted(note); setNoteBackgroundIfEncrypted(note);
});
} }
function decryptNoteIfNecessary(note) { function decryptNoteIfNecessary(note) {
let decryptPromise;
if (note.detail.encryption === 1) { if (note.detail.encryption === 1) {
decryptPromise = decryptNote(note.detail.note_text); return decryptNote(note.detail.note_text);
} }
else { else {
decryptPromise = Promise.resolve(note.detail.note_text); return note.detail.note_text;
} }
return decryptPromise;
} }
function decryptNote(encryptedBase64) { function decryptNote(encryptedBase64) {
return getAes().then(aes => { const aes = getAes();
const encryptedBytes = base64ToUint8Array(encryptedBase64); const encryptedBytes = base64ToUint8Array(encryptedBase64);
const decryptedBytes = aes.decrypt(encryptedBytes); const decryptedBytes = aes.decrypt(encryptedBytes);
return aesjs.utils.utf8.fromBytes(decryptedBytes); return aesjs.utils.utf8.fromBytes(decryptedBytes);
});
} }
function uint8ToBase64(u8Arr) { function uint8ToBase64(u8Arr) {

View file

@ -212,6 +212,8 @@ $(function(){
if (startNoteId) { if (startNoteId) {
data.tree.activateKey(startNoteId); data.tree.activateKey(startNoteId);
} }
$(window).resize();
}, },
hotkeys: { hotkeys: {
keydown: keybindings keydown: keybindings