/* -*- Mode: indent-tabs-mode: nil; js-indent-level: 2 -*- */ /* vim: set sts=2 sw=2 et tw=80: */ "use strict"; const {classes: Cc, interfaces: Ci, utils: Cu} = Components; Cu.import("resource://gre/modules/PlacesUtils.jsm"); var Bookmarks = PlacesUtils.bookmarks; Cu.import("resource://gre/modules/ExtensionUtils.jsm"); XPCOMUtils.defineLazyModuleGetter(this, "Task", "resource://gre/modules/Task.jsm"); function getTree(rootGuid, onlyChildren) { function convert(node, parent) { let treenode = { id: node.guid, title: node.title || "", index: node.index, dateAdded: node.dateAdded / 1000, }; if (parent && node.guid != Bookmarks.rootGuid) { treenode.parentId = parent.guid; } if (node.type == PlacesUtils.TYPE_X_MOZ_PLACE) { // This isn't quite correct. Recently Bookmarked ends up here ... treenode.url = node.uri; } else { treenode.dateGroupModified = node.lastModified / 1000; if (node.children && !onlyChildren) { treenode.children = node.children.map(child => convert(child, node)); } } return treenode; } return PlacesUtils.promiseBookmarksTree(rootGuid, { excludeItemsCallback: item => { if (item.type == PlacesUtils.TYPE_X_MOZ_PLACE_SEPARATOR) { return true; } return item.annos && item.annos.find(a => a.name == PlacesUtils.EXCLUDE_FROM_BACKUP_ANNO); }, }).then(root => { if (onlyChildren) { let children = root.children || []; return children.map(child => convert(child, root)); } else { // It seems like the array always just contains the root node. return [convert(root, null)]; } }); } function convert(result) { let node = { id: result.guid, title: result.title || "", index: result.index, dateAdded: result.dateAdded.getTime(), }; if (result.guid != Bookmarks.rootGuid) { node.parentId = result.parentGuid; } if (result.type == Bookmarks.TYPE_BOOKMARK) { node.url = result.url.href; // Output is always URL object. } else { node.dateGroupModified = result.lastModified.getTime(); } return node; } extensions.registerSchemaAPI("bookmarks", "bookmarks", (extension, context) => { return { bookmarks: { get: function(idOrIdList) { let list = Array.isArray(idOrIdList) ? idOrIdList : [idOrIdList]; return Task.spawn(function* () { let bookmarks = []; for (let id of list) { let bookmark = yield Bookmarks.fetch({guid: id}); if (!bookmark) { throw new Error("Bookmark not found"); } bookmarks.push(convert(bookmark)); } return bookmarks; }); }, getChildren: function(id) { // TODO: We should optimize this. return getTree(id, true); }, getTree: function() { return getTree(Bookmarks.rootGuid, false); }, getSubTree: function(id) { return getTree(id, false); }, search: function(query) { return Bookmarks.search(query).then(result => result.map(convert)); }, getRecent: function(numberOfItems) { return Bookmarks.getRecent(numberOfItems).then(result => result.map(convert)); }, create: function(bookmark) { let info = { title: bookmark.title || "", }; // If url is NULL or missing, it will be a folder. if (bookmark.url !== null) { info.type = Bookmarks.TYPE_BOOKMARK; info.url = bookmark.url || ""; } else { info.type = Bookmarks.TYPE_FOLDER; } if (bookmark.index !== null) { info.index = bookmark.index; } if (bookmark.parentId !== null) { info.parentGuid = bookmark.parentId; } else { info.parentGuid = Bookmarks.unfiledGuid; } try { return Bookmarks.insert(info).then(convert); } catch (e) { return Promise.reject({message: `Invalid bookmark: ${JSON.stringify(info)}`}); } }, move: function(id, destination) { let info = { guid: id, }; if (destination.parentId !== null) { info.parentGuid = destination.parentId; } if (destination.index !== null) { info.index = destination.index; } try { return Bookmarks.update(info).then(convert); } catch (e) { return Promise.reject({message: `Invalid bookmark: ${JSON.stringify(info)}`}); } }, update: function(id, changes) { let info = { guid: id, }; if (changes.title !== null) { info.title = changes.title; } if (changes.url !== null) { info.url = changes.url; } try { return Bookmarks.update(info).then(convert); } catch (e) { return Promise.reject({message: `Invalid bookmark: ${JSON.stringify(info)}`}); } }, remove: function(id) { let info = { guid: id, }; // The API doesn't give you the old bookmark at the moment try { return Bookmarks.remove(info, {preventRemovalOfNonEmptyFolders: true}).then(result => {}); } catch (e) { return Promise.reject({message: `Invalid bookmark: ${JSON.stringify(info)}`}); } }, removeTree: function(id) { let info = { guid: id, }; try { return Bookmarks.remove(info).then(result => {}); } catch (e) { return Promise.reject({message: `Invalid bookmark: ${JSON.stringify(info)}`}); } }, }, }; });