2008-06-06 19:28:01 -07:00
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is Bookmarks Sync.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Mozilla.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2007
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Dan Mills <thunder@mozilla.com>
|
|
|
|
* Jono DiCarlo <jdicarlo@mozilla.org>
|
2008-08-04 17:23:23 -07:00
|
|
|
* Anant Narayanan <anant@kix.in>
|
2008-06-06 19:28:01 -07:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
2008-06-30 18:50:06 -07:00
|
|
|
const EXPORTED_SYMBOLS = ['BookmarksEngine', 'BookmarksSharingManager'];
|
2008-06-03 12:38:48 -07:00
|
|
|
|
|
|
|
const Cc = Components.classes;
|
|
|
|
const Ci = Components.interfaces;
|
|
|
|
const Cu = Components.utils;
|
|
|
|
|
2008-06-09 11:48:52 -07:00
|
|
|
// Annotation to use for shared bookmark folders, incoming and outgoing:
|
|
|
|
const INCOMING_SHARED_ANNO = "weave/shared-incoming";
|
|
|
|
const OUTGOING_SHARED_ANNO = "weave/shared-outgoing";
|
2008-06-18 12:26:51 -07:00
|
|
|
const SERVER_PATH_ANNO = "weave/shared-server-path";
|
|
|
|
// Standard names for shared files on the server
|
|
|
|
const KEYRING_FILE_NAME = "keyring";
|
|
|
|
const SHARED_BOOKMARK_FILE_NAME = "shared_bookmarks";
|
2008-06-24 18:38:29 -07:00
|
|
|
// Information for the folder that contains all incoming shares
|
|
|
|
const INCOMING_SHARE_ROOT_ANNO = "weave/mounted-shares-folder";
|
|
|
|
const INCOMING_SHARE_ROOT_NAME = "Shared Folders";
|
|
|
|
|
2008-12-11 14:26:20 -08:00
|
|
|
const SERVICE_NOT_SUPPORTED = "Service not supported on this platform";
|
|
|
|
|
2008-06-29 11:44:27 -07:00
|
|
|
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
|
2008-06-03 12:38:48 -07:00
|
|
|
Cu.import("resource://weave/log4moz.js");
|
|
|
|
Cu.import("resource://weave/util.js");
|
|
|
|
Cu.import("resource://weave/crypto.js");
|
|
|
|
Cu.import("resource://weave/async.js");
|
|
|
|
Cu.import("resource://weave/engines.js");
|
|
|
|
Cu.import("resource://weave/stores.js");
|
|
|
|
Cu.import("resource://weave/trackers.js");
|
2008-06-20 17:19:10 -07:00
|
|
|
Cu.import("resource://weave/identity.js");
|
2008-06-26 17:00:55 -07:00
|
|
|
Cu.import("resource://weave/notifications.js");
|
2008-11-03 15:00:38 -08:00
|
|
|
Cu.import("resource://weave/resource.js");
|
2008-06-03 12:38:48 -07:00
|
|
|
|
|
|
|
Function.prototype.async = Async.sugar;
|
|
|
|
|
2008-12-09 12:26:14 -08:00
|
|
|
function BookmarksEngine() {
|
|
|
|
this._init();
|
2008-06-24 21:15:14 -07:00
|
|
|
}
|
|
|
|
BookmarksEngine.prototype = {
|
2008-12-05 00:39:54 -08:00
|
|
|
__proto__: SyncEngine.prototype,
|
|
|
|
get _super() SyncEngine.prototype,
|
2008-07-25 01:06:23 -07:00
|
|
|
|
2008-12-05 00:39:54 -08:00
|
|
|
get name() "bookmarks",
|
|
|
|
get displayName() "Bookmarks",
|
2008-12-09 12:26:14 -08:00
|
|
|
get logName() "Bookmarks",
|
2008-12-05 00:39:54 -08:00
|
|
|
get serverPrefix() "user-data/bookmarks/",
|
2008-06-24 21:15:14 -07:00
|
|
|
|
|
|
|
get _store() {
|
2008-12-05 00:39:54 -08:00
|
|
|
let store = new BookmarksStore();
|
|
|
|
this.__defineGetter__("_store", function() store);
|
|
|
|
return store;
|
2008-06-24 21:15:14 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
get _tracker() {
|
2008-12-05 00:39:54 -08:00
|
|
|
let tracker = new BookmarksTracker();
|
|
|
|
this.__defineGetter__("_tracker", function() tracker);
|
|
|
|
return tracker;
|
2008-06-26 17:00:55 -07:00
|
|
|
}
|
2008-11-06 19:18:46 -08:00
|
|
|
// XXX for sharing, will need to re-add code to get new shares before syncing,
|
|
|
|
// and updating incoming/outgoing shared folders after syncing
|
2008-06-03 12:38:48 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
function BookmarksStore() {
|
|
|
|
this._init();
|
|
|
|
}
|
|
|
|
BookmarksStore.prototype = {
|
2008-11-06 19:18:46 -08:00
|
|
|
__proto__: Store.prototype,
|
2008-06-03 12:38:48 -07:00
|
|
|
_logName: "BStore",
|
2008-06-27 20:16:43 -07:00
|
|
|
_lookup: null,
|
2008-06-03 12:38:48 -07:00
|
|
|
|
|
|
|
__bms: null,
|
|
|
|
get _bms() {
|
|
|
|
if (!this.__bms)
|
|
|
|
this.__bms = Cc["@mozilla.org/browser/nav-bookmarks-service;1"].
|
|
|
|
getService(Ci.nsINavBookmarksService);
|
|
|
|
return this.__bms;
|
|
|
|
},
|
|
|
|
|
|
|
|
__hsvc: null,
|
|
|
|
get _hsvc() {
|
|
|
|
if (!this.__hsvc)
|
|
|
|
this.__hsvc = Cc["@mozilla.org/browser/nav-history-service;1"].
|
|
|
|
getService(Ci.nsINavHistoryService);
|
|
|
|
return this.__hsvc;
|
|
|
|
},
|
|
|
|
|
|
|
|
__ls: null,
|
|
|
|
get _ls() {
|
|
|
|
if (!this.__ls)
|
|
|
|
this.__ls = Cc["@mozilla.org/browser/livemark-service;2"].
|
|
|
|
getService(Ci.nsILivemarkService);
|
|
|
|
return this.__ls;
|
|
|
|
},
|
|
|
|
|
|
|
|
__ms: null,
|
|
|
|
get _ms() {
|
|
|
|
if (!this.__ms)
|
2008-12-11 14:26:20 -08:00
|
|
|
try {
|
|
|
|
this.__ms = Cc["@mozilla.org/microsummary/service;1"].
|
|
|
|
getService(Ci.nsIMicrosummaryService);
|
|
|
|
} catch( e ) {
|
|
|
|
this.__ms = SERVICE_NOT_SUPPORTED;
|
|
|
|
this._log.warn("There is no Microsummary service.");
|
|
|
|
}
|
2008-06-03 12:38:48 -07:00
|
|
|
return this.__ms;
|
|
|
|
},
|
|
|
|
|
|
|
|
__ts: null,
|
|
|
|
get _ts() {
|
|
|
|
if (!this.__ts)
|
|
|
|
this.__ts = Cc["@mozilla.org/browser/tagging-service;1"].
|
|
|
|
getService(Ci.nsITaggingService);
|
|
|
|
return this.__ts;
|
|
|
|
},
|
|
|
|
|
|
|
|
__ans: null,
|
|
|
|
get _ans() {
|
|
|
|
if (!this.__ans)
|
|
|
|
this.__ans = Cc["@mozilla.org/browser/annotation-service;1"].
|
|
|
|
getService(Ci.nsIAnnotationService);
|
|
|
|
return this.__ans;
|
|
|
|
},
|
|
|
|
|
|
|
|
_getItemIdForGUID: function BStore__getItemIdForGUID(GUID) {
|
|
|
|
switch (GUID) {
|
|
|
|
case "menu":
|
|
|
|
return this._bms.bookmarksMenuFolder;
|
|
|
|
case "toolbar":
|
|
|
|
return this._bms.toolbarFolder;
|
|
|
|
case "unfiled":
|
|
|
|
return this._bms.unfiledBookmarksFolder;
|
|
|
|
default:
|
|
|
|
return this._bms.getItemIdForGUID(GUID);
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
},
|
2008-06-29 11:44:27 -07:00
|
|
|
|
2008-12-17 02:29:28 -08:00
|
|
|
_itemExists: function BStore__itemExists(id) {
|
2008-12-18 01:09:17 -08:00
|
|
|
return this._getItemIdForGUID(id) >= 0;
|
2008-11-19 16:21:12 -08:00
|
|
|
},
|
|
|
|
|
2008-12-16 17:06:45 -08:00
|
|
|
create: function BStore_create(record) {
|
2008-06-03 12:38:48 -07:00
|
|
|
let newId;
|
2008-12-23 11:30:31 -08:00
|
|
|
let parentId = this._getItemIdForGUID(record.parentid);
|
2008-06-03 12:38:48 -07:00
|
|
|
|
|
|
|
if (parentId < 0) {
|
|
|
|
this._log.warn("Creating node with unknown parent -> reparenting to root");
|
|
|
|
parentId = this._bms.bookmarksMenuFolder;
|
|
|
|
}
|
|
|
|
|
2008-12-23 11:30:31 -08:00
|
|
|
switch (record.cleartext.type) {
|
2008-06-03 12:38:48 -07:00
|
|
|
case "query":
|
|
|
|
case "bookmark":
|
|
|
|
case "microsummary": {
|
2008-12-23 11:30:31 -08:00
|
|
|
this._log.debug(" -> creating bookmark \"" + record.cleartext.title + "\"");
|
|
|
|
let URI = Utils.makeURI(record.cleartext.URI);
|
|
|
|
newId = this._bms.insertBookmark(parentId, URI, record.sortindex,
|
|
|
|
record.cleartext.title);
|
2008-06-03 12:38:48 -07:00
|
|
|
this._ts.untagURI(URI, null);
|
2008-12-23 11:30:31 -08:00
|
|
|
this._ts.tagURI(URI, record.cleartext.tags);
|
|
|
|
this._bms.setKeywordForBookmark(newId, record.cleartext.keyword);
|
|
|
|
if (record.cleartext.description) {
|
2008-06-03 12:38:48 -07:00
|
|
|
this._ans.setItemAnnotation(newId, "bookmarkProperties/description",
|
2008-12-23 11:30:31 -08:00
|
|
|
record.cleartext.description, 0,
|
2008-12-16 17:06:45 -08:00
|
|
|
this._ans.EXPIRE_NEVER);
|
2008-06-03 12:38:48 -07:00
|
|
|
}
|
|
|
|
|
2008-12-23 11:30:31 -08:00
|
|
|
if (record.cleartext.type == "microsummary") {
|
2008-06-03 12:38:48 -07:00
|
|
|
this._log.debug(" \-> is a microsummary");
|
|
|
|
this._ans.setItemAnnotation(newId, "bookmarks/staticTitle",
|
2008-12-23 11:30:31 -08:00
|
|
|
record.cleartext.staticTitle || "", 0, this._ans.EXPIRE_NEVER);
|
|
|
|
let genURI = Utils.makeURI(record.cleartext.generatorURI);
|
2008-12-11 14:26:20 -08:00
|
|
|
if (this._ms == SERVICE_NOT_SUPPORTED) {
|
|
|
|
this._log.warn("Can't create microsummary -- not supported.");
|
|
|
|
} else {
|
|
|
|
try {
|
|
|
|
let micsum = this._ms.createMicrosummary(URI, genURI);
|
|
|
|
this._ms.setMicrosummary(newId, micsum);
|
|
|
|
}
|
|
|
|
catch(ex) { /* ignore "missing local generator" exceptions */ }
|
|
|
|
}
|
2008-06-03 12:38:48 -07:00
|
|
|
}
|
|
|
|
} break;
|
|
|
|
case "folder":
|
2008-12-23 11:30:31 -08:00
|
|
|
this._log.debug(" -> creating folder \"" + record.cleartext.title + "\"");
|
2008-06-03 12:38:48 -07:00
|
|
|
newId = this._bms.createFolder(parentId,
|
2008-12-23 11:30:31 -08:00
|
|
|
record.cleartext.title,
|
|
|
|
record.sortindex);
|
2008-06-24 18:09:41 -07:00
|
|
|
// If folder is an outgoing share, put the annotations on it:
|
2008-12-23 11:30:31 -08:00
|
|
|
if ( record.cleartext.outgoingSharedAnno != undefined ) {
|
2008-06-24 18:09:41 -07:00
|
|
|
this._ans.setItemAnnotation(newId,
|
2008-06-24 18:28:01 -07:00
|
|
|
OUTGOING_SHARED_ANNO,
|
2008-12-23 11:30:31 -08:00
|
|
|
record.cleartext.outgoingSharedAnno,
|
2008-06-24 18:09:41 -07:00
|
|
|
0,
|
|
|
|
this._ans.EXPIRE_NEVER);
|
|
|
|
this._ans.setItemAnnotation(newId,
|
|
|
|
SERVER_PATH_ANNO,
|
2008-12-23 11:30:31 -08:00
|
|
|
record.cleartext.serverPathAnno,
|
2008-06-24 18:09:41 -07:00
|
|
|
0,
|
|
|
|
this._ans.EXPIRE_NEVER);
|
|
|
|
|
|
|
|
}
|
2008-06-03 12:38:48 -07:00
|
|
|
break;
|
|
|
|
case "livemark":
|
2008-12-23 11:30:31 -08:00
|
|
|
this._log.debug(" -> creating livemark \"" + record.cleartext.title + "\"");
|
2008-06-03 12:38:48 -07:00
|
|
|
newId = this._ls.createLivemark(parentId,
|
2008-12-23 11:30:31 -08:00
|
|
|
record.cleartext.title,
|
|
|
|
Utils.makeURI(record.cleartext.siteURI),
|
|
|
|
Utils.makeURI(record.cleartext.feedURI),
|
|
|
|
record.sortindex);
|
2008-06-03 12:38:48 -07:00
|
|
|
break;
|
2008-06-24 18:09:41 -07:00
|
|
|
case "incoming-share":
|
2008-06-24 18:23:43 -07:00
|
|
|
/* even though incoming shares are folders according to the
|
|
|
|
* bookmarkService, _wrap() wraps them as type=incoming-share, so we
|
|
|
|
* handle them separately, like so: */
|
2008-12-23 11:30:31 -08:00
|
|
|
this._log.debug(" -> creating incoming-share \"" + record.cleartext.title + "\"");
|
2008-06-24 18:09:41 -07:00
|
|
|
newId = this._bms.createFolder(parentId,
|
2008-12-23 11:30:31 -08:00
|
|
|
record.cleartext.title,
|
|
|
|
record.sortindex);
|
2008-06-24 18:28:01 -07:00
|
|
|
this._ans.setItemAnnotation(newId,
|
|
|
|
INCOMING_SHARED_ANNO,
|
2008-12-23 11:30:31 -08:00
|
|
|
record.cleartext.incomingSharedAnno,
|
2008-06-24 18:28:01 -07:00
|
|
|
0,
|
|
|
|
this._ans.EXPIRE_NEVER);
|
|
|
|
this._ans.setItemAnnotation(newId,
|
|
|
|
SERVER_PATH_ANNO,
|
2008-12-23 11:30:31 -08:00
|
|
|
record.cleartext.serverPathAnno,
|
2008-06-24 18:28:01 -07:00
|
|
|
0,
|
|
|
|
this._ans.EXPIRE_NEVER);
|
2008-06-24 18:09:41 -07:00
|
|
|
break;
|
2008-06-03 12:38:48 -07:00
|
|
|
case "separator":
|
|
|
|
this._log.debug(" -> creating separator");
|
2008-12-23 11:30:31 -08:00
|
|
|
newId = this._bms.insertSeparator(parentId, record.sortindex);
|
2008-06-03 12:38:48 -07:00
|
|
|
break;
|
|
|
|
default:
|
2008-12-23 11:30:31 -08:00
|
|
|
this._log.error("_create: Unknown item type: " + record.cleartext.type);
|
2008-06-03 12:38:48 -07:00
|
|
|
break;
|
|
|
|
}
|
2008-12-05 00:39:54 -08:00
|
|
|
if (newId) {
|
2008-12-23 11:30:31 -08:00
|
|
|
this._log.trace("Setting GUID of new item " + newId + " to " + record.id);
|
2008-12-06 00:12:40 -08:00
|
|
|
let cur = this._bms.getItemGUID(newId);
|
2008-12-23 11:30:31 -08:00
|
|
|
if (cur == record.id)
|
|
|
|
this._log.warn("Item " + newId + " already has GUID " + record.id);
|
2008-12-06 00:12:40 -08:00
|
|
|
else {
|
2008-12-23 11:30:31 -08:00
|
|
|
this._bms.setItemGUID(newId, record.id);
|
|
|
|
Engines.get("bookmarks")._tracker._all[newId] = record.id; // HACK - see tracker
|
2008-12-06 00:12:40 -08:00
|
|
|
}
|
2008-12-05 00:39:54 -08:00
|
|
|
}
|
2008-06-03 12:38:48 -07:00
|
|
|
},
|
|
|
|
|
2008-12-16 17:06:45 -08:00
|
|
|
remove: function BStore_remove(record) {
|
|
|
|
if (record.id == "menu" ||
|
|
|
|
record.id == "toolbar" ||
|
|
|
|
record.id == "unfiled") {
|
|
|
|
this._log.warn("Attempted to remove root node (" + record.id +
|
|
|
|
"). Skipping record removal.");
|
2008-06-03 12:38:48 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-12-16 17:06:45 -08:00
|
|
|
var itemId = this._bms.getItemIdForGUID(record.id);
|
2008-06-03 12:38:48 -07:00
|
|
|
if (itemId < 0) {
|
2008-12-19 11:48:09 -08:00
|
|
|
this._log.debug("Item " + record.id + " already removed");
|
2008-06-03 12:38:48 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
var type = this._bms.getItemType(itemId);
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case this._bms.TYPE_BOOKMARK:
|
2008-12-16 17:06:45 -08:00
|
|
|
this._log.debug(" -> removing bookmark " + record.id);
|
2008-06-03 12:38:48 -07:00
|
|
|
this._bms.removeItem(itemId);
|
|
|
|
break;
|
|
|
|
case this._bms.TYPE_FOLDER:
|
2008-12-16 17:06:45 -08:00
|
|
|
this._log.debug(" -> removing folder " + record.id);
|
2008-06-03 12:38:48 -07:00
|
|
|
this._bms.removeFolder(itemId);
|
|
|
|
break;
|
|
|
|
case this._bms.TYPE_SEPARATOR:
|
2008-12-16 17:06:45 -08:00
|
|
|
this._log.debug(" -> removing separator " + record.id);
|
2008-06-03 12:38:48 -07:00
|
|
|
this._bms.removeItem(itemId);
|
|
|
|
break;
|
|
|
|
default:
|
2008-12-16 17:06:45 -08:00
|
|
|
this._log.error("remove: Unknown item type: " + type);
|
2008-06-03 12:38:48 -07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2008-12-16 17:06:45 -08:00
|
|
|
update: function BStore_update(record) {
|
2008-12-23 11:30:31 -08:00
|
|
|
let itemId = this._getItemIdForGUID(record.id);
|
2008-12-16 17:06:45 -08:00
|
|
|
|
2008-12-23 11:30:31 -08:00
|
|
|
if (record.id == "menu" ||
|
|
|
|
record.id == "toolbar" ||
|
|
|
|
record.id == "unfiled") {
|
|
|
|
this._log.debug("Skipping update for root node.");
|
2008-06-03 12:38:48 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (itemId < 0) {
|
2008-12-23 11:30:31 -08:00
|
|
|
this._log.debug("Skipping update for unknown item: " + record.id);
|
2008-06-03 12:38:48 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-12-23 11:30:31 -08:00
|
|
|
this._log.trace("Updating " + record.id + " (" + itemId + ")");
|
|
|
|
|
|
|
|
if ((this._bms.getItemIndex(itemId) != record.sortindex) ||
|
|
|
|
(this._bms.getFolderIdForItem(itemId) !=
|
|
|
|
this._getItemIdForGUID(record.parentid))) {
|
|
|
|
this._log.trace("Moving item (changing folder/index)");
|
|
|
|
let parentid = this._getItemIdForGUID(record.parentid);
|
|
|
|
this._bms.moveItem(itemId, parentid, record.sortindex);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (let key in record.cleartext) {
|
2008-06-03 12:38:48 -07:00
|
|
|
switch (key) {
|
|
|
|
case "title":
|
2008-12-23 11:30:31 -08:00
|
|
|
this._bms.setItemTitle(itemId, record.cleartext.title);
|
2008-06-03 12:38:48 -07:00
|
|
|
break;
|
|
|
|
case "URI":
|
2008-12-23 11:30:31 -08:00
|
|
|
this._bms.changeBookmarkURI(itemId, Utils.makeURI(record.cleartext.URI));
|
2008-06-03 12:38:48 -07:00
|
|
|
break;
|
|
|
|
case "tags": {
|
2008-07-31 00:21:22 -07:00
|
|
|
// filter out null/undefined/empty tags
|
2008-12-23 11:30:31 -08:00
|
|
|
let tags = record.cleartext.tags.filter(function(t) t);
|
2008-06-03 12:38:48 -07:00
|
|
|
let tagsURI = this._bms.getBookmarkURI(itemId);
|
|
|
|
this._ts.untagURI(tagsURI, null);
|
2008-07-31 00:21:22 -07:00
|
|
|
this._ts.tagURI(tagsURI, tags);
|
2008-06-03 12:38:48 -07:00
|
|
|
} break;
|
|
|
|
case "keyword":
|
2008-12-23 11:30:31 -08:00
|
|
|
this._bms.setKeywordForBookmark(itemId, record.cleartext.keyword);
|
2008-06-03 12:38:48 -07:00
|
|
|
break;
|
|
|
|
case "description":
|
2008-12-23 11:30:31 -08:00
|
|
|
this._ans.setItemAnnotation(itemId, "bookmarkProperties/description",
|
|
|
|
record.cleartext.description, 0,
|
|
|
|
this._ans.EXPIRE_NEVER);
|
2008-06-03 12:38:48 -07:00
|
|
|
break;
|
|
|
|
case "generatorURI": {
|
|
|
|
let micsumURI = Utils.makeURI(this._bms.getBookmarkURI(itemId));
|
2008-12-23 11:30:31 -08:00
|
|
|
let genURI = Utils.makeURI(record.cleartext.generatorURI);
|
2008-12-11 14:26:20 -08:00
|
|
|
if (this._ms == SERVICE_NOT_SUPPORTED) {
|
|
|
|
this._log.warn("Can't create microsummary -- not supported.");
|
|
|
|
} else {
|
|
|
|
let micsum = this._ms.createMicrosummary(micsumURI, genURI);
|
|
|
|
this._ms.setMicrosummary(itemId, micsum);
|
|
|
|
}
|
2008-06-03 12:38:48 -07:00
|
|
|
} break;
|
|
|
|
case "siteURI":
|
2008-12-23 11:30:31 -08:00
|
|
|
this._ls.setSiteURI(itemId, Utils.makeURI(record.cleartext.siteURI));
|
2008-06-03 12:38:48 -07:00
|
|
|
break;
|
|
|
|
case "feedURI":
|
2008-12-23 11:30:31 -08:00
|
|
|
this._ls.setFeedURI(itemId, Utils.makeURI(record.cleartext.feedURI));
|
2008-06-03 12:38:48 -07:00
|
|
|
break;
|
2008-06-24 18:28:01 -07:00
|
|
|
case "outgoingSharedAnno":
|
|
|
|
this._ans.setItemAnnotation(itemId, OUTGOING_SHARED_ANNO,
|
2008-12-23 11:30:31 -08:00
|
|
|
record.cleartext.outgoingSharedAnno, 0,
|
2008-06-24 18:15:17 -07:00
|
|
|
this._ans.EXPIRE_NEVER);
|
|
|
|
break;
|
2008-06-24 18:28:01 -07:00
|
|
|
case "incomingSharedAnno":
|
|
|
|
this._ans.setItemAnnotation(itemId, INCOMING_SHARED_ANNO,
|
2008-12-23 11:30:31 -08:00
|
|
|
record.cleartext.incomingSharedAnno, 0,
|
2008-06-24 18:15:17 -07:00
|
|
|
this._ans.EXPIRE_NEVER);
|
|
|
|
break;
|
|
|
|
case "serverPathAnno":
|
|
|
|
this._ans.setItemAnnotation(itemId, SERVER_PATH_ANNO,
|
2008-12-23 11:30:31 -08:00
|
|
|
record.cleartext.serverPathAnno, 0,
|
2008-06-24 18:15:17 -07:00
|
|
|
this._ans.EXPIRE_NEVER);
|
|
|
|
break;
|
2008-06-03 12:38:48 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2008-12-08 13:21:25 -08:00
|
|
|
changeItemID: function BStore_changeItemID(oldID, newID) {
|
2008-12-05 00:39:54 -08:00
|
|
|
var itemId = this._getItemIdForGUID(oldID);
|
|
|
|
if (itemId == null) // toplevel folder
|
|
|
|
return;
|
2008-11-26 07:25:28 -08:00
|
|
|
if (itemId < 0) {
|
|
|
|
this._log.warn("Can't change GUID " + oldID + " to " +
|
|
|
|
newID + ": Item does not exist");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var collision = this._getItemIdForGUID(newID);
|
|
|
|
if (collision >= 0) {
|
|
|
|
this._log.warn("Can't change GUID " + oldID + " to " +
|
|
|
|
newID + ": new ID already in use");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._log.debug("Changing GUID " + oldID + " to " + newID);
|
|
|
|
this._bms.setItemGUID(itemId, newID);
|
2008-12-06 00:12:40 -08:00
|
|
|
Engines.get("bookmarks")._tracker._all[itemId] = newID; // HACK - see tracker
|
2008-11-26 07:25:28 -08:00
|
|
|
},
|
|
|
|
|
2008-06-03 12:38:48 -07:00
|
|
|
_getNode: function BSS__getNode(folder) {
|
|
|
|
let query = this._hsvc.getNewQuery();
|
|
|
|
query.setFolders([folder], 1);
|
|
|
|
return this._hsvc.executeQuery(query, this._hsvc.getNewQueryOptions()).root;
|
|
|
|
},
|
|
|
|
|
2008-12-23 11:30:31 -08:00
|
|
|
__wrap: function BSS___wrap(node, items, parentid, index, depth, guidOverride) {
|
2008-06-03 12:38:48 -07:00
|
|
|
let GUID, item;
|
|
|
|
|
|
|
|
// we override the guid for the root items, "menu", "toolbar", etc.
|
|
|
|
if (guidOverride) {
|
|
|
|
GUID = guidOverride;
|
2008-12-23 11:30:31 -08:00
|
|
|
item = {sortindex: index, depth: depth};
|
2008-06-03 12:38:48 -07:00
|
|
|
} else {
|
|
|
|
GUID = this._bms.getItemGUID(node.itemId);
|
2008-12-23 11:30:31 -08:00
|
|
|
item = {parentid: parentid, sortindex: index, depth: depth};
|
2008-06-03 12:38:48 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (node.type == node.RESULT_TYPE_FOLDER) {
|
|
|
|
if (this._ls.isLivemark(node.itemId)) {
|
|
|
|
item.type = "livemark";
|
|
|
|
let siteURI = this._ls.getSiteURI(node.itemId);
|
|
|
|
let feedURI = this._ls.getFeedURI(node.itemId);
|
|
|
|
item.siteURI = siteURI? siteURI.spec : "";
|
|
|
|
item.feedURI = feedURI? feedURI.spec : "";
|
2008-06-24 18:28:01 -07:00
|
|
|
} else if (this._ans.itemHasAnnotation(node.itemId, INCOMING_SHARED_ANNO)){
|
2008-06-24 18:23:43 -07:00
|
|
|
/* When there's an incoming share, we just sync the folder itself
|
|
|
|
and the values of its annotations: NOT any of its contents. So
|
|
|
|
we'll wrap it as type=incoming-share, not as a "folder". */
|
2008-06-24 18:09:41 -07:00
|
|
|
item.type = "incoming-share";
|
|
|
|
item.title = node.title;
|
2008-06-24 18:28:01 -07:00
|
|
|
item.serverPathAnno = this._ans.getItemAnnotation(node.itemId,
|
2008-06-24 18:09:41 -07:00
|
|
|
SERVER_PATH_ANNO);
|
2008-06-24 18:28:01 -07:00
|
|
|
item.incomingSharedAnno = this._ans.getItemAnnotation(node.itemId,
|
|
|
|
INCOMING_SHARED_ANNO);
|
2008-06-03 12:38:48 -07:00
|
|
|
} else {
|
|
|
|
item.type = "folder";
|
|
|
|
node.QueryInterface(Ci.nsINavHistoryQueryResultNode);
|
|
|
|
node.containerOpen = true;
|
2008-06-24 18:09:41 -07:00
|
|
|
// If folder is an outgoing share, wrap its annotations:
|
2008-06-24 18:28:01 -07:00
|
|
|
if (this._ans.itemHasAnnotation(node.itemId, OUTGOING_SHARED_ANNO)) {
|
|
|
|
item.outgoingSharedAnno = this._ans.getItemAnnotation(node.itemId,
|
|
|
|
OUTGOING_SHARED_ANNO);
|
2008-07-09 13:45:10 -07:00
|
|
|
}
|
|
|
|
if (this._ans.itemHasAnnotation(node.itemId, SERVER_PATH_ANNO)) {
|
|
|
|
item.serverPathAnno = this._ans.getItemAnnotation(node.itemId,
|
|
|
|
SERVER_PATH_ANNO);
|
2008-06-24 18:09:41 -07:00
|
|
|
}
|
|
|
|
|
2008-06-03 12:38:48 -07:00
|
|
|
for (var i = 0; i < node.childCount; i++) {
|
2008-12-23 11:30:31 -08:00
|
|
|
this.__wrap(node.getChild(i), items, GUID, i, depth + 1);
|
2008-06-03 12:38:48 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!guidOverride)
|
|
|
|
item.title = node.title; // no titles for root nodes
|
|
|
|
|
|
|
|
} else if (node.type == node.RESULT_TYPE_URI ||
|
|
|
|
node.type == node.RESULT_TYPE_QUERY) {
|
2008-12-11 14:26:20 -08:00
|
|
|
if (this._ms != SERVICE_NOT_SUPPORTED &&
|
|
|
|
this._ms.hasMicrosummary(node.itemId)) {
|
2008-06-03 12:38:48 -07:00
|
|
|
item.type = "microsummary";
|
|
|
|
let micsum = this._ms.getMicrosummary(node.itemId);
|
|
|
|
item.generatorURI = micsum.generator.uri.spec; // breaks local generators
|
2008-08-13 15:23:15 -07:00
|
|
|
item.staticTitle = "";
|
|
|
|
try {
|
|
|
|
item.staticTitle = this._ans.getItemAnnotation(node.itemId,
|
|
|
|
"bookmarks/staticTitle");
|
|
|
|
} catch (e) {}
|
2008-06-03 12:38:48 -07:00
|
|
|
} else if (node.type == node.RESULT_TYPE_QUERY) {
|
|
|
|
item.type = "query";
|
|
|
|
item.title = node.title;
|
|
|
|
} else {
|
|
|
|
item.type = "bookmark";
|
|
|
|
item.title = node.title;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
item.description =
|
|
|
|
this._ans.getItemAnnotation(node.itemId, "bookmarkProperties/description");
|
|
|
|
} catch (e) {
|
|
|
|
item.description = undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
item.URI = node.uri;
|
2008-06-04 13:40:53 -07:00
|
|
|
|
|
|
|
// This will throw if makeURI can't make an nsIURI object out of the
|
|
|
|
// node.uri string (or return null if node.uri is null), in which case
|
|
|
|
// we won't be able to get tags for the bookmark (but we'll still sync
|
|
|
|
// the rest of the record).
|
|
|
|
let uri;
|
|
|
|
try {
|
|
|
|
uri = Utils.makeURI(node.uri);
|
|
|
|
}
|
|
|
|
catch(e) {
|
|
|
|
this._log.error("error parsing URI string <" + node.uri + "> " +
|
|
|
|
"for item " + node.itemId + " (" + node.title + "): " +
|
|
|
|
e);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (uri)
|
|
|
|
item.tags = this._ts.getTagsForURI(uri, {});
|
|
|
|
|
2008-06-03 12:38:48 -07:00
|
|
|
item.keyword = this._bms.getKeywordForBookmark(node.itemId);
|
|
|
|
|
|
|
|
} else if (node.type == node.RESULT_TYPE_SEPARATOR) {
|
|
|
|
item.type = "separator";
|
|
|
|
|
|
|
|
} else {
|
|
|
|
this._log.warn("Warning: unknown item type, cannot serialize: " + node.type);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
items[GUID] = item;
|
|
|
|
},
|
|
|
|
|
|
|
|
// helper
|
|
|
|
_wrap: function BStore__wrap(node, items, rootName) {
|
2008-12-23 11:30:31 -08:00
|
|
|
return this.__wrap(node, items, null, 0, 0, rootName);
|
2008-06-03 12:38:48 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
wrap: function BStore_wrap() {
|
|
|
|
var items = {};
|
|
|
|
this._wrap(this._getNode(this._bms.bookmarksMenuFolder), items, "menu");
|
|
|
|
this._wrap(this._getNode(this._bms.toolbarFolder), items, "toolbar");
|
|
|
|
this._wrap(this._getNode(this._bms.unfiledBookmarksFolder), items, "unfiled");
|
2008-06-27 20:16:43 -07:00
|
|
|
this._lookup = items;
|
2008-06-03 12:38:48 -07:00
|
|
|
return items;
|
|
|
|
},
|
|
|
|
|
2008-12-08 09:53:32 -08:00
|
|
|
// FIXME: the fast path here is not so bad, specially since the engine always
|
|
|
|
// gives the cache hint atm. but wrapping all items to return just one
|
|
|
|
// (the slow path) is pretty bad
|
|
|
|
wrapItem: function BStore_wrapItem(id) {
|
|
|
|
if (this._itemCache)
|
|
|
|
return this._itemCache[id];
|
|
|
|
let all = this.wrap();
|
|
|
|
return all[id];
|
|
|
|
},
|
|
|
|
|
|
|
|
// XXX need a better way to query Places for all GUIDs
|
|
|
|
getAllIDs: function BStore_getAllIDs() {
|
|
|
|
let all = this.wrap();
|
|
|
|
delete all["unfiled"];
|
|
|
|
delete all["toolbar"];
|
|
|
|
delete all["menu"];
|
|
|
|
return all;
|
|
|
|
},
|
|
|
|
|
2008-06-03 12:38:48 -07:00
|
|
|
wipe: function BStore_wipe() {
|
|
|
|
this._bms.removeFolderChildren(this._bms.bookmarksMenuFolder);
|
|
|
|
this._bms.removeFolderChildren(this._bms.toolbarFolder);
|
|
|
|
this._bms.removeFolderChildren(this._bms.unfiledBookmarksFolder);
|
|
|
|
},
|
|
|
|
|
2008-06-29 07:00:53 -07:00
|
|
|
__resetGUIDs: function BStore___resetGUIDs(node) {
|
|
|
|
let self = yield;
|
|
|
|
|
|
|
|
if (this._ans.itemHasAnnotation(node.itemId, "placesInternal/GUID"))
|
|
|
|
this._ans.removeItemAnnotation(node.itemId, "placesInternal/GUID");
|
|
|
|
|
|
|
|
if (node.type == node.RESULT_TYPE_FOLDER &&
|
|
|
|
!this._ls.isLivemark(node.itemId)) {
|
|
|
|
yield Utils.makeTimerForCall(self.cb); // Yield to main loop
|
|
|
|
node.QueryInterface(Ci.nsINavHistoryQueryResultNode);
|
|
|
|
node.containerOpen = true;
|
|
|
|
for (var i = 0; i < node.childCount; i++) {
|
|
|
|
this.__resetGUIDs(node.getChild(i));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_resetGUIDs: function BStore__resetGUIDs() {
|
|
|
|
let self = yield;
|
2008-06-29 11:44:27 -07:00
|
|
|
this.__resetGUIDs(this._getNode(this._bms.bookmarksMenuFolder));
|
|
|
|
this.__resetGUIDs(this._getNode(this._bms.toolbarFolder));
|
|
|
|
this.__resetGUIDs(this._getNode(this._bms.unfiledBookmarksFolder));
|
2008-06-03 12:38:48 -07:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2008-12-05 00:39:54 -08:00
|
|
|
function BookmarksTracker() {
|
|
|
|
this._init();
|
2008-06-03 12:38:48 -07:00
|
|
|
}
|
|
|
|
BookmarksTracker.prototype = {
|
2008-11-06 19:18:46 -08:00
|
|
|
__proto__: Tracker.prototype,
|
2008-12-05 00:39:54 -08:00
|
|
|
_logName: "BmkTracker",
|
|
|
|
file: "bookmarks",
|
|
|
|
|
|
|
|
get _bms() {
|
|
|
|
let bms = Cc["@mozilla.org/browser/nav-bookmarks-service;1"].
|
|
|
|
getService(Ci.nsINavBookmarksService);
|
|
|
|
this.__defineGetter__("_bms", function() bms);
|
|
|
|
return bms;
|
|
|
|
},
|
2008-06-03 12:38:48 -07:00
|
|
|
|
2008-11-19 16:21:12 -08:00
|
|
|
QueryInterface: XPCOMUtils.generateQI([Ci.nsINavBookmarkObserver]),
|
2008-06-03 12:38:48 -07:00
|
|
|
|
2008-12-05 00:39:54 -08:00
|
|
|
_init: function BMT__init() {
|
|
|
|
this.__proto__.__proto__._init.call(this);
|
2008-12-06 00:12:40 -08:00
|
|
|
|
|
|
|
// NOTE: since the callbacks give us item IDs (not GUIDs), we use
|
|
|
|
// getItemGUID to get it within the callback. For removals, however,
|
|
|
|
// that doesn't work because the item is already gone! (and worse, Places
|
|
|
|
// has a bug where it will generate a new one instead of throwing).
|
|
|
|
// Our solution: cache item IDs -> GUIDs
|
|
|
|
|
|
|
|
// FIXME: very roundabout way of getting id -> guid mapping!
|
|
|
|
let store = new BookmarksStore();
|
|
|
|
let all = store.wrap();
|
|
|
|
this._all = {};
|
|
|
|
for (let guid in all) {
|
|
|
|
this._all[this._bms.getItemIdForGUID(guid)] = guid;
|
|
|
|
}
|
|
|
|
|
2008-12-05 00:39:54 -08:00
|
|
|
this._bms.addObserver(this, false);
|
2008-06-03 12:38:48 -07:00
|
|
|
},
|
|
|
|
|
2008-11-19 16:21:12 -08:00
|
|
|
/* Every add/remove/change is worth 10 points */
|
2008-12-06 00:12:40 -08:00
|
|
|
_upScore: function BMT__upScore() {
|
2008-12-05 00:39:54 -08:00
|
|
|
if (!this.enabled)
|
|
|
|
return;
|
2008-11-19 16:21:12 -08:00
|
|
|
this._score += 10;
|
2008-06-03 12:38:48 -07:00
|
|
|
},
|
2008-11-19 16:21:12 -08:00
|
|
|
|
2008-12-06 00:12:40 -08:00
|
|
|
onItemAdded: function BMT_onEndUpdateBatch(itemId, folder, index) {
|
|
|
|
this._all[itemId] = this._bms.getItemGUID(itemId);
|
2008-12-19 11:48:09 -08:00
|
|
|
//if (!this.enabled)
|
|
|
|
//return;
|
|
|
|
this._log.trace("onItemAdded: " + itemId);
|
2008-12-06 00:12:40 -08:00
|
|
|
this.addChangedID(this._all[itemId]);
|
|
|
|
this._upScore();
|
|
|
|
},
|
|
|
|
|
2008-12-02 16:46:24 -08:00
|
|
|
onItemRemoved: function BMT_onItemRemoved(itemId, folder, index) {
|
2008-12-19 11:48:09 -08:00
|
|
|
delete this._all[itemId];
|
|
|
|
if (!this.enabled)
|
|
|
|
return;
|
2008-12-06 00:12:40 -08:00
|
|
|
this._log.trace("onItemRemoved: " + itemId);
|
|
|
|
this.addChangedID(this._all[itemId]);
|
|
|
|
this._upScore();
|
2008-06-03 12:38:48 -07:00
|
|
|
},
|
2008-11-19 16:21:12 -08:00
|
|
|
|
2008-12-02 16:46:24 -08:00
|
|
|
onItemChanged: function BMT_onItemChanged(itemId, property, isAnnotationProperty, value) {
|
2008-12-19 11:48:09 -08:00
|
|
|
if (!this.enabled)
|
|
|
|
return;
|
2008-12-06 00:12:40 -08:00
|
|
|
this._log.trace("onItemChanged: " + itemId + ", property: " + property +
|
|
|
|
", isAnno: " + isAnnotationProperty + ", value: " + value);
|
|
|
|
|
|
|
|
// NOTE: we get onItemChanged too much, when adding an item, changing its
|
|
|
|
// GUID, before removal... it makes removals break, because trying
|
|
|
|
// to update our cache before removals makes it so we think the
|
|
|
|
// temporary guid was removed, instead of the real one.
|
|
|
|
// Therefore, we ignore all guid changes. When *Weave* changes the
|
|
|
|
// GUID, we take care to update the tracker's cache. If anyone else
|
|
|
|
// changes the GUID, that will case breakage.
|
2008-12-05 00:39:54 -08:00
|
|
|
let guid = this._bms.getItemGUID(itemId);
|
2008-12-06 00:12:40 -08:00
|
|
|
if (guid != this._all[itemId])
|
|
|
|
this._log.trace("GUID change, ignoring");
|
|
|
|
else
|
|
|
|
this.addChangedID(this._all[itemId]); // some other change
|
|
|
|
|
|
|
|
this._upScore();
|
2008-06-03 12:38:48 -07:00
|
|
|
},
|
|
|
|
|
2008-12-02 16:46:24 -08:00
|
|
|
onItemMoved: function BMT_onItemMoved(itemId, oldParent, oldIndex, newParent, newIndex) {
|
2008-12-19 11:48:09 -08:00
|
|
|
if (!this.enabled)
|
|
|
|
return;
|
2008-12-06 00:12:40 -08:00
|
|
|
this._log.trace("onItemMoved: " + itemId);
|
|
|
|
this.addChangedID(this._all[itemId]);
|
|
|
|
this._upScore();
|
2008-11-19 16:21:12 -08:00
|
|
|
},
|
2008-06-03 12:38:48 -07:00
|
|
|
|
2008-11-19 16:21:12 -08:00
|
|
|
onBeginUpdateBatch: function BMT_onBeginUpdateBatch() {},
|
|
|
|
onEndUpdateBatch: function BMT_onEndUpdateBatch() {},
|
2008-12-02 16:46:24 -08:00
|
|
|
onItemVisited: function BMT_onItemVisited(itemId, aVisitID, time) {}
|
2008-11-06 19:18:46 -08:00
|
|
|
};
|