mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
109 lines
2.9 KiB
JavaScript
109 lines
2.9 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/. */
|
|
|
|
"use strict";
|
|
|
|
this.EXPORTED_SYMBOLS = [ "UserAgentOverrides" ];
|
|
|
|
const Ci = Components.interfaces;
|
|
const Cc = Components.classes;
|
|
|
|
Components.utils.import("resource://gre/modules/Services.jsm");
|
|
|
|
const PREF_OVERRIDES_ENABLED = "general.useragent.site_specific_overrides";
|
|
const DEFAULT_UA = Cc["@mozilla.org/network/protocol;1?name=http"]
|
|
.getService(Ci.nsIHttpProtocolHandler)
|
|
.userAgent;
|
|
|
|
var gPrefBranch;
|
|
var gOverrides;
|
|
var gInitialized = false;
|
|
var gOverrideFunctions = [
|
|
function (aHttpChannel) UserAgentOverrides.getOverrideForURI(aHttpChannel.URI)
|
|
];
|
|
|
|
this.UserAgentOverrides = {
|
|
init: function uao_init() {
|
|
if (gInitialized)
|
|
return;
|
|
|
|
gPrefBranch = Services.prefs.getBranch("general.useragent.override.");
|
|
gPrefBranch.addObserver("", buildOverrides, false);
|
|
|
|
Services.prefs.addObserver(PREF_OVERRIDES_ENABLED, buildOverrides, false);
|
|
|
|
try {
|
|
Services.obs.addObserver(HTTP_on_modify_request, "http-on-modify-request", false);
|
|
} catch (x) {
|
|
// The http-on-modify-request notification is disallowed in content processes.
|
|
}
|
|
|
|
buildOverrides();
|
|
gInitialized = true;
|
|
},
|
|
|
|
addComplexOverride: function uao_addComplexOverride(callback) {
|
|
gOverrideFunctions.push(callback);
|
|
},
|
|
|
|
getOverrideForURI: function uao_getOverrideForURI(aURI) {
|
|
if (!gInitialized)
|
|
return null;
|
|
|
|
let host = aURI.asciiHost;
|
|
for (let domain in gOverrides) {
|
|
if (host == domain ||
|
|
host.endsWith("." + domain)) {
|
|
return gOverrides[domain];
|
|
}
|
|
}
|
|
|
|
return null;
|
|
},
|
|
|
|
uninit: function uao_uninit() {
|
|
if (!gInitialized)
|
|
return;
|
|
gInitialized = false;
|
|
|
|
gPrefBranch.removeObserver("", buildOverrides);
|
|
|
|
Services.prefs.removeObserver(PREF_OVERRIDES_ENABLED, buildOverrides);
|
|
|
|
Services.obs.removeObserver(HTTP_on_modify_request, "http-on-modify-request");
|
|
}
|
|
};
|
|
|
|
function buildOverrides() {
|
|
gOverrides = {};
|
|
|
|
if (!Services.prefs.getBoolPref(PREF_OVERRIDES_ENABLED))
|
|
return;
|
|
|
|
let domains = gPrefBranch.getChildList("");
|
|
|
|
for (let domain of domains) {
|
|
let override = gPrefBranch.getCharPref(domain);
|
|
|
|
let [search, replace] = override.split("#", 2);
|
|
if (search && replace) {
|
|
gOverrides[domain] = DEFAULT_UA.replace(new RegExp(search, "g"), replace);
|
|
} else {
|
|
gOverrides[domain] = override;
|
|
}
|
|
}
|
|
}
|
|
|
|
function HTTP_on_modify_request(aSubject, aTopic, aData) {
|
|
let channel = aSubject.QueryInterface(Ci.nsIHttpChannel);
|
|
|
|
for (let callback of gOverrideFunctions) {
|
|
let modifiedUA = callback(channel, DEFAULT_UA);
|
|
if (modifiedUA) {
|
|
channel.setRequestHeader("User-Agent", modifiedUA, false);
|
|
return;
|
|
}
|
|
}
|
|
}
|