Backed out changeset 10cd387da114 (bug 1963014) Backed out changeset db1cc23f2502 (bug 1963014) Backed out changeset 076cbc895e0c (bug 1963014) Backed out changeset 4df46947d96f (bug 1963014) Backed out changeset 8692782e408c (bug 1963014) Backed out changeset ddbecd248a02 (bug 1963014) Backed out changeset f25d7077fec6 (bug 1963014) Backed out changeset 96e088ca29d2 (bug 1963014)
94 lines
2.7 KiB
JavaScript
94 lines
2.7 KiB
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
const lazy = {};
|
|
|
|
ChromeUtils.defineESModuleGetters(lazy, {
|
|
RemoteSettings: "resource://services-settings/remote-settings.sys.mjs",
|
|
RemoteSettingsClient:
|
|
"resource://services-settings/RemoteSettingsClient.sys.mjs",
|
|
});
|
|
|
|
const SETTINGS_IGNORELIST_KEY = "hijack-blocklists";
|
|
|
|
class IgnoreListsManager {
|
|
async init() {
|
|
if (!this._ignoreListSettings) {
|
|
this._ignoreListSettings = lazy.RemoteSettings(SETTINGS_IGNORELIST_KEY);
|
|
}
|
|
}
|
|
|
|
async getAndSubscribe(listener) {
|
|
await this.init();
|
|
|
|
// Trigger a get of the initial value.
|
|
const settings = await this._getIgnoreList();
|
|
|
|
// Listen for future updates after we first get the values.
|
|
this._ignoreListSettings.on("sync", listener);
|
|
|
|
return settings;
|
|
}
|
|
|
|
unsubscribe(listener) {
|
|
if (!this._ignoreListSettings) {
|
|
return;
|
|
}
|
|
|
|
this._ignoreListSettings.off("sync", listener);
|
|
}
|
|
|
|
async _getIgnoreList() {
|
|
if (this._getSettingsPromise) {
|
|
return this._getSettingsPromise;
|
|
}
|
|
|
|
const settings = await (this._getSettingsPromise =
|
|
this._getIgnoreListSettings());
|
|
delete this._getSettingsPromise;
|
|
return settings;
|
|
}
|
|
|
|
/**
|
|
* Obtains the current ignore list from remote settings. This includes
|
|
* verifying the signature of the ignore list within the database.
|
|
*
|
|
* If the signature in the database is invalid, the database will be wiped
|
|
* and the stored dump will be used, until the settings next update.
|
|
*
|
|
* Note that this may cause a network check of the certificate, but that
|
|
* should generally be quick.
|
|
*
|
|
* @param {boolean} [firstTime]
|
|
* Internal boolean to indicate if this is the first time check or not.
|
|
* @returns {array}
|
|
* An array of objects in the database, or an empty array if none
|
|
* could be obtained.
|
|
*/
|
|
async _getIgnoreListSettings(firstTime = true) {
|
|
let result = [];
|
|
try {
|
|
result = await this._ignoreListSettings.get({
|
|
verifySignature: true,
|
|
});
|
|
} catch (ex) {
|
|
if (
|
|
ex instanceof lazy.RemoteSettingsClient.InvalidSignatureError &&
|
|
firstTime
|
|
) {
|
|
// The local database is invalid, try and reset it.
|
|
await this._ignoreListSettings.db.clear();
|
|
// Now call this again.
|
|
return this._getIgnoreListSettings(false);
|
|
}
|
|
// Don't throw an error just log it, just continue with no data, and hopefully
|
|
// a sync will fix things later on.
|
|
console.error(ex);
|
|
}
|
|
return result;
|
|
}
|
|
}
|
|
|
|
export const IgnoreLists = new IgnoreListsManager();
|