Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 4 | |
michael@0 | 5 | 'use strict'; |
michael@0 | 6 | |
michael@0 | 7 | /** |
michael@0 | 8 | * Utility singleton for manipulating bookmarks. |
michael@0 | 9 | */ |
michael@0 | 10 | var Bookmarks = { |
michael@0 | 11 | get metroRoot() { |
michael@0 | 12 | return PlacesUtils.annotations.getItemsWithAnnotation('metro/bookmarksRoot', {})[0]; |
michael@0 | 13 | }, |
michael@0 | 14 | |
michael@0 | 15 | logging: false, |
michael@0 | 16 | log: function(msg) { |
michael@0 | 17 | if (this.logging) { |
michael@0 | 18 | Services.console.logStringMessage(msg); |
michael@0 | 19 | } |
michael@0 | 20 | }, |
michael@0 | 21 | |
michael@0 | 22 | addForURI: function bh_addForURI(aURI, aTitle, callback) { |
michael@0 | 23 | this.isURIBookmarked(aURI, function (isBookmarked) { |
michael@0 | 24 | if (isBookmarked) |
michael@0 | 25 | return; |
michael@0 | 26 | |
michael@0 | 27 | let bookmarkTitle = aTitle || aURI.spec; |
michael@0 | 28 | let bookmarkService = PlacesUtils.bookmarks; |
michael@0 | 29 | let bookmarkId = bookmarkService.insertBookmark(Bookmarks.metroRoot, |
michael@0 | 30 | aURI, |
michael@0 | 31 | bookmarkService.DEFAULT_INDEX, |
michael@0 | 32 | bookmarkTitle); |
michael@0 | 33 | |
michael@0 | 34 | // XXX Used for browser-chrome tests |
michael@0 | 35 | let event = document.createEvent("Events"); |
michael@0 | 36 | event.initEvent("BookmarkCreated", true, false); |
michael@0 | 37 | window.dispatchEvent(event); |
michael@0 | 38 | |
michael@0 | 39 | if (callback) |
michael@0 | 40 | callback(bookmarkId); |
michael@0 | 41 | }); |
michael@0 | 42 | }, |
michael@0 | 43 | |
michael@0 | 44 | _isMetroBookmark: function(aItemId) { |
michael@0 | 45 | return PlacesUtils.bookmarks.getFolderIdForItem(aItemId) == Bookmarks.metroRoot; |
michael@0 | 46 | }, |
michael@0 | 47 | |
michael@0 | 48 | isURIBookmarked: function bh_isURIBookmarked(aURI, callback) { |
michael@0 | 49 | if (!callback) |
michael@0 | 50 | return; |
michael@0 | 51 | PlacesUtils.asyncGetBookmarkIds(aURI, aItemIds => { |
michael@0 | 52 | callback(aItemIds && aItemIds.length > 0 && aItemIds.some(this._isMetroBookmark)); |
michael@0 | 53 | }); |
michael@0 | 54 | }, |
michael@0 | 55 | |
michael@0 | 56 | removeForURI: function bh_removeForURI(aURI, callback) { |
michael@0 | 57 | // XXX blargle xpconnect! might not matter, but a method on |
michael@0 | 58 | // nsINavBookmarksService that takes an array of items to |
michael@0 | 59 | // delete would be faster. better yet, a method that takes a URI! |
michael@0 | 60 | PlacesUtils.asyncGetBookmarkIds(aURI, (aItemIds) => { |
michael@0 | 61 | aItemIds.forEach((aItemId) => { |
michael@0 | 62 | if (this._isMetroBookmark(aItemId)) { |
michael@0 | 63 | PlacesUtils.bookmarks.removeItem(aItemId); |
michael@0 | 64 | } |
michael@0 | 65 | }); |
michael@0 | 66 | |
michael@0 | 67 | if (callback) |
michael@0 | 68 | callback(); |
michael@0 | 69 | |
michael@0 | 70 | // XXX Used for browser-chrome tests |
michael@0 | 71 | let event = document.createEvent("Events"); |
michael@0 | 72 | event.initEvent("BookmarkRemoved", true, false); |
michael@0 | 73 | window.dispatchEvent(event); |
michael@0 | 74 | }); |
michael@0 | 75 | } |
michael@0 | 76 | }; |