2017-12-13 00:41:59 +00:00
|
|
|
$(document).ready(function () {
|
2017-12-27 23:27:08 +00:00
|
|
|
$("#importExportModal").on("shown.bs.modal", showBookmarkData);
|
2017-12-13 00:41:59 +00:00
|
|
|
|
2017-12-14 22:13:26 +00:00
|
|
|
$("#btnImportDialog").click(importBookmarks);
|
2017-12-13 00:41:59 +00:00
|
|
|
|
|
|
|
$("#exportText").click(function () {
|
|
|
|
$("#exportText").select();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-12-27 23:27:08 +00:00
|
|
|
function showBookmarkData() {
|
|
|
|
var openDBRequest = window.indexedDB.open("bookmarks");
|
|
|
|
|
|
|
|
openDBRequest.onsuccess = function (e) {
|
|
|
|
var db = e.target.result;
|
|
|
|
|
|
|
|
db.transaction("Groups").objectStore("Groups").getAllKeys().onsuccess = function (evt) {
|
|
|
|
var data = JSON.stringify(bookmarkList, null, 4);
|
|
|
|
if (data != null)
|
|
|
|
$("#exportText").text(data);
|
|
|
|
else
|
|
|
|
$("#exportText").text("[]");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-13 00:41:59 +00:00
|
|
|
function importBookmarks() {
|
|
|
|
try {
|
|
|
|
var newData = $.parseJSON($("#importText").val());
|
|
|
|
} catch (err) {
|
|
|
|
console.error("Import failed: " + err.message);
|
|
|
|
window.alert("Invalid Format");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-12-27 23:27:08 +00:00
|
|
|
if (validateBookmarks(newData)) {
|
|
|
|
$("#btnImportDialog").prop("disabled", true);
|
2017-12-13 00:41:59 +00:00
|
|
|
setList(newData);
|
|
|
|
} else {
|
|
|
|
window.alert("Invalid Format");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function setList(data) {
|
|
|
|
// empty the DB and fill it with the new data
|
|
|
|
bookmarkList = data;
|
|
|
|
|
2017-12-27 23:27:08 +00:00
|
|
|
var openDBRequest = window.indexedDB.open("bookmarks");
|
2017-12-13 00:41:59 +00:00
|
|
|
|
|
|
|
openDBRequest.onsuccess = function (e) {
|
|
|
|
db = e.target.result;
|
|
|
|
|
2017-12-27 23:27:08 +00:00
|
|
|
var groupStore = db.transaction("Groups", "readwrite").objectStore("Groups");
|
|
|
|
groupStore.clear();
|
2017-12-13 00:41:59 +00:00
|
|
|
|
|
|
|
// create the object stores
|
2017-12-27 23:27:08 +00:00
|
|
|
for (group of data) {
|
|
|
|
groupStore.add(group);
|
2017-12-13 00:41:59 +00:00
|
|
|
}
|
2017-12-27 23:27:08 +00:00
|
|
|
|
|
|
|
$("#importExportModal").modal("hide");
|
|
|
|
$("#btnImportDialog").prop("disabled", false);
|
|
|
|
|
|
|
|
db.close();
|
|
|
|
loadBookmarks();
|
2017-12-13 00:41:59 +00:00
|
|
|
}
|
2017-12-27 23:27:08 +00:00
|
|
|
|
|
|
|
openDBRequest.onerror = function (err) { console.error(err); }
|
2017-12-13 00:41:59 +00:00
|
|
|
}
|
|
|
|
|
2017-12-27 23:27:08 +00:00
|
|
|
function validateBookmarks(bookmarks) {
|
|
|
|
var indexes = [];
|
|
|
|
|
2017-12-13 00:41:59 +00:00
|
|
|
if (!Array.isArray(bookmarks))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
for (var i = 0; i < bookmarks.length; i++) {
|
|
|
|
var item = bookmarks[i];
|
|
|
|
|
|
|
|
if (item == null || typeof item != "object")
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (item.title == null || typeof item.title != "string")
|
|
|
|
return false;
|
|
|
|
|
2017-12-27 23:27:08 +00:00
|
|
|
if (item.groupIndex == null || typeof item.groupIndex != "number")
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (arrayContains(indexes, item.groupIndex))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
indexes.push(item.groupIndex);
|
|
|
|
|
2017-12-13 00:41:59 +00:00
|
|
|
for (var j = 0; j < item.bookmarks.length; j++) {
|
|
|
|
var bkmk = item.bookmarks[j];
|
|
|
|
|
|
|
|
if (bkmk == null || typeof bkmk != "object")
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (bkmk.name == null || typeof bkmk.name != "string")
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (bkmk.address == null || typeof bkmk.address != "string")
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2017-12-27 23:27:08 +00:00
|
|
|
|
|
|
|
function arrayContains(array, searchFor) {
|
|
|
|
for (item of array) {
|
|
|
|
if (item == searchFor)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|