mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
d98d0bfafa
Add onDeleteVisits in addition to onPageExpired to maintain compatibility with old and new API.
332 lines
9.9 KiB
JavaScript
332 lines
9.9 KiB
JavaScript
/* ***** 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 Weave
|
|
*
|
|
* The Initial Developer of the Original Code is Mozilla.
|
|
* Portions created by the Initial Developer are Copyright (C) 2008
|
|
* the Initial Developer. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* Dan Mills <thunder@mozilla.com>
|
|
*
|
|
* 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 ***** */
|
|
|
|
const EXPORTED_SYMBOLS = ['HistoryEngine'];
|
|
|
|
const Cc = Components.classes;
|
|
const Ci = Components.interfaces;
|
|
const Cu = Components.utils;
|
|
|
|
const GUID_ANNO = "weave/guid";
|
|
|
|
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
Cu.import("resource://weave/ext/Sync.js");
|
|
Cu.import("resource://weave/util.js");
|
|
Cu.import("resource://weave/engines.js");
|
|
Cu.import("resource://weave/stores.js");
|
|
Cu.import("resource://weave/trackers.js");
|
|
Cu.import("resource://weave/type_records/history.js");
|
|
|
|
// Create some helper functions to handle GUIDs
|
|
function setGUID(uri, guid) {
|
|
if (arguments.length == 1)
|
|
guid = Utils.makeGUID();
|
|
Utils.anno(uri, GUID_ANNO, guid, "WITH_HISTORY");
|
|
return guid;
|
|
}
|
|
function GUIDForUri(uri, create) {
|
|
try {
|
|
// Use the existing GUID if it exists
|
|
return Utils.anno(uri, GUID_ANNO);
|
|
}
|
|
catch (ex) {
|
|
// Give the uri a GUID if it doesn't have one
|
|
if (create)
|
|
return setGUID(uri);
|
|
}
|
|
}
|
|
|
|
function HistoryEngine() {
|
|
SyncEngine.call(this, "History");
|
|
}
|
|
HistoryEngine.prototype = {
|
|
__proto__: SyncEngine.prototype,
|
|
_recordObj: HistoryRec,
|
|
_storeObj: HistoryStore,
|
|
_trackerObj: HistoryTracker,
|
|
|
|
_sync: Utils.batchSync("History", SyncEngine),
|
|
|
|
_findDupe: function _findDupe(item) {
|
|
return GUIDForUri(item.histUri);
|
|
}
|
|
};
|
|
|
|
function HistoryStore(name) {
|
|
Store.call(this, name);
|
|
}
|
|
HistoryStore.prototype = {
|
|
__proto__: Store.prototype,
|
|
|
|
get _hsvc() {
|
|
let hsvc = Cc["@mozilla.org/browser/nav-history-service;1"].
|
|
getService(Ci.nsINavHistoryService);
|
|
hsvc.QueryInterface(Ci.nsIGlobalHistory2);
|
|
hsvc.QueryInterface(Ci.nsIBrowserHistory);
|
|
hsvc.QueryInterface(Ci.nsPIPlacesDatabase);
|
|
this.__defineGetter__("_hsvc", function() hsvc);
|
|
return hsvc;
|
|
},
|
|
|
|
get _db() {
|
|
return this._hsvc.DBConnection;
|
|
},
|
|
|
|
get _visitStm() {
|
|
this._log.trace("Creating SQL statement: _visitStm");
|
|
let stm = this._db.createStatement(
|
|
"SELECT visit_type type, visit_date date " +
|
|
"FROM moz_historyvisits " +
|
|
"WHERE place_id = (" +
|
|
"SELECT id " +
|
|
"FROM moz_places " +
|
|
"WHERE url = :url) " +
|
|
"ORDER BY date DESC LIMIT 10");
|
|
this.__defineGetter__("_visitStm", function() stm);
|
|
return stm;
|
|
},
|
|
|
|
get _urlStm() {
|
|
this._log.trace("Creating SQL statement: _urlStm");
|
|
let stm = this._db.createStatement(
|
|
"SELECT url, title, frecency " +
|
|
"FROM moz_places " +
|
|
"WHERE id = (" +
|
|
"SELECT place_id " +
|
|
"FROM moz_annos " +
|
|
"WHERE content = :guid AND anno_attribute_id = (" +
|
|
"SELECT id " +
|
|
"FROM moz_anno_attributes " +
|
|
"WHERE name = '" + GUID_ANNO + "'))");
|
|
this.__defineGetter__("_urlStm", function() stm);
|
|
return stm;
|
|
},
|
|
|
|
// See bug 320831 for why we use SQL here
|
|
_getVisits: function HistStore__getVisits(uri) {
|
|
this._visitStm.params.url = uri;
|
|
let [exec, execCb] = Sync.withCb(this._visitStm.executeAsync, this._visitStm);
|
|
return exec({
|
|
visits: [],
|
|
handleResult: function handleResult(results) {
|
|
let row;
|
|
while ((row = results.getNextRow()) != null) {
|
|
this.visits.push({
|
|
date: row.getResultByName("date"),
|
|
type: row.getResultByName("type")
|
|
});
|
|
}
|
|
},
|
|
handleError: function handleError(error) {
|
|
execCb.throw(error);
|
|
},
|
|
handleCompletion: function handleCompletion(reason) {
|
|
execCb(this.visits);
|
|
}
|
|
});
|
|
},
|
|
|
|
// See bug 468732 for why we use SQL here
|
|
_findURLByGUID: function HistStore__findURLByGUID(guid) {
|
|
this._urlStm.params.guid = guid;
|
|
let [exec, execCb] = Sync.withCb(this._urlStm.executeAsync, this._urlStm);
|
|
return exec({
|
|
handleResult: function(results) {
|
|
// Save the one result and its columns
|
|
let row = results.getNextRow();
|
|
this.urlInfo = {
|
|
url: row.getResultByName("url"),
|
|
title: row.getResultByName("title"),
|
|
frecency: row.getResultByName("frecency"),
|
|
};
|
|
},
|
|
handleError: function(error) {
|
|
execCb.throw(error);
|
|
},
|
|
handleCompletion: function(reason) {
|
|
execCb(this.urlInfo);
|
|
}
|
|
});
|
|
},
|
|
|
|
changeItemID: function HStore_changeItemID(oldID, newID) {
|
|
setGUID(this._findURLByGUID(oldID).url, newID);
|
|
},
|
|
|
|
|
|
getAllIDs: function HistStore_getAllIDs() {
|
|
let query = this._hsvc.getNewQuery(),
|
|
options = this._hsvc.getNewQueryOptions();
|
|
|
|
query.minVisits = 1;
|
|
options.maxResults = 1000;
|
|
options.sortingMode = options.SORT_BY_DATE_DESCENDING;
|
|
options.queryType = options.QUERY_TYPE_HISTORY;
|
|
|
|
let root = this._hsvc.executeQuery(query, options).root;
|
|
root.QueryInterface(Ci.nsINavHistoryQueryResultNode);
|
|
root.containerOpen = true;
|
|
|
|
let items = {};
|
|
for (let i = 0; i < root.childCount; i++) {
|
|
let item = root.getChild(i);
|
|
let guid = GUIDForUri(item.uri, true);
|
|
items[guid] = item.uri;
|
|
}
|
|
return items;
|
|
},
|
|
|
|
create: function HistStore_create(record) {
|
|
// Add the url and set the GUID
|
|
this.update(record);
|
|
setGUID(record.histUri, record.id);
|
|
},
|
|
|
|
remove: function HistStore_remove(record) {
|
|
let page = this._findURLByGUID(record.id)
|
|
if (page == null) {
|
|
this._log.debug("Page already removed: " + record.id);
|
|
return;
|
|
}
|
|
|
|
let uri = Utils.makeURI(page.url);
|
|
Svc.History.removePage(uri);
|
|
this._log.trace("Removed page: " + [record.id, page.url, page.title]);
|
|
},
|
|
|
|
update: function HistStore_update(record) {
|
|
this._log.trace(" -> processing history entry: " + record.histUri);
|
|
|
|
let uri = Utils.makeURI(record.histUri);
|
|
if (!uri) {
|
|
this._log.warn("Attempted to process invalid URI, skipping");
|
|
throw "invalid URI in record";
|
|
}
|
|
let curvisits = [];
|
|
if (this.urlExists(uri))
|
|
curvisits = this._getVisits(record.histUri);
|
|
|
|
// Add visits if there's no local visit with the same date
|
|
for each (let {date, type} in record.visits)
|
|
if (curvisits.every(function(cur) cur.date != date))
|
|
Svc.History.addVisit(uri, date, null, type, type == 5 || type == 6, 0);
|
|
|
|
this._hsvc.setPageTitle(uri, record.title);
|
|
},
|
|
|
|
itemExists: function HistStore_itemExists(id) {
|
|
if (this._findURLByGUID(id))
|
|
return true;
|
|
return false;
|
|
},
|
|
|
|
urlExists: function HistStore_urlExists(url) {
|
|
if (typeof(url) == "string")
|
|
url = Utils.makeURI(url);
|
|
// Don't call isVisited on a null URL to work around crasher bug 492442.
|
|
return url ? this._hsvc.isVisited(url) : false;
|
|
},
|
|
|
|
createRecord: function createRecord(guid) {
|
|
let foo = this._findURLByGUID(guid);
|
|
let record = new HistoryRec();
|
|
if (foo) {
|
|
record.histUri = foo.url;
|
|
record.title = foo.title;
|
|
record.sortindex = foo.frecency;
|
|
record.visits = this._getVisits(record.histUri);
|
|
}
|
|
else
|
|
record.deleted = true;
|
|
|
|
return record;
|
|
},
|
|
|
|
wipe: function HistStore_wipe() {
|
|
this._hsvc.removeAllPages();
|
|
}
|
|
};
|
|
|
|
function HistoryTracker(name) {
|
|
Tracker.call(this, name);
|
|
Svc.History.addObserver(this, false);
|
|
}
|
|
HistoryTracker.prototype = {
|
|
__proto__: Tracker.prototype,
|
|
|
|
QueryInterface: XPCOMUtils.generateQI([
|
|
Ci.nsINavHistoryObserver,
|
|
Ci.nsINavHistoryObserver_MOZILLA_1_9_1_ADDITIONS
|
|
]),
|
|
|
|
onBeginUpdateBatch: function HT_onBeginUpdateBatch() {},
|
|
onEndUpdateBatch: function HT_onEndUpdateBatch() {},
|
|
onPageChanged: function HT_onPageChanged() {},
|
|
onTitleChanged: function HT_onTitleChanged() {},
|
|
|
|
/* Every add or remove is worth 1 point.
|
|
* Clearing the whole history is worth 50 points (see below)
|
|
*/
|
|
_upScore: function BMT__upScore() {
|
|
this.score += 1;
|
|
},
|
|
|
|
onVisit: function HT_onVisit(uri, vid, time, session, referrer, trans) {
|
|
if (this.ignoreAll)
|
|
return;
|
|
this._log.trace("onVisit: " + uri.spec);
|
|
if (this.addChangedID(GUIDForUri(uri, true)))
|
|
this._upScore();
|
|
},
|
|
onDeleteVisits: function onDeleteVisits() {
|
|
},
|
|
onPageExpired: function HT_onPageExpired(uri, time, entry) {
|
|
},
|
|
onBeforeDeleteURI: function onBeforeDeleteURI(uri) {
|
|
if (this.ignoreAll)
|
|
return;
|
|
this._log.trace("onBeforeDeleteURI: " + uri.spec);
|
|
if (this.addChangedID(GUIDForUri(uri, true)))
|
|
this._upScore();
|
|
},
|
|
onDeleteURI: function HT_onDeleteURI(uri) {
|
|
},
|
|
onClearHistory: function HT_onClearHistory() {
|
|
this._log.trace("onClearHistory");
|
|
this.score += 500;
|
|
}
|
|
};
|