forked from mirrors/gecko-dev
MozReview-Commit-ID: IG84xKxO9Wc --HG-- extra : rebase_source : bc46d1f4dcfee66523a2ede8ec32ef9014cf170c
100 lines
4.1 KiB
JavaScript
100 lines
4.1 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";
|
|
|
|
ChromeUtils.import("resource://gre/modules/Services.jsm");
|
|
ChromeUtils.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
|
|
ChromeUtils.defineModuleGetter(this, "NetUtil",
|
|
"resource://gre/modules/NetUtil.jsm");
|
|
|
|
function MainProcessSingleton() {}
|
|
MainProcessSingleton.prototype = {
|
|
classID: Components.ID("{0636a680-45cb-11e4-916c-0800200c9a66}"),
|
|
QueryInterface: ChromeUtils.generateQI([Ci.nsIObserver,
|
|
Ci.nsISupportsWeakReference]),
|
|
|
|
// Called when a webpage calls window.external.AddSearchProvider
|
|
addSearchEngine({ target: browser, data: { pageURL, engineURL } }) {
|
|
pageURL = NetUtil.newURI(pageURL);
|
|
engineURL = NetUtil.newURI(engineURL, null, pageURL);
|
|
|
|
let iconURL;
|
|
let tabbrowser = browser.getTabBrowser();
|
|
if (browser.mIconURL && (!tabbrowser || tabbrowser.shouldLoadFavIcon(pageURL)))
|
|
iconURL = NetUtil.newURI(browser.mIconURL);
|
|
|
|
try {
|
|
// Make sure the URLs are HTTP, HTTPS, or FTP.
|
|
let isWeb = ["https", "http", "ftp"];
|
|
|
|
if (!isWeb.includes(engineURL.scheme))
|
|
throw "Unsupported search engine URL: " + engineURL.spec;
|
|
|
|
if (iconURL && !isWeb.includes(iconURL.scheme))
|
|
throw "Unsupported search icon URL: " + iconURL.spec;
|
|
|
|
if (Services.policies &&
|
|
!Services.policies.isAllowed("installSearchEngine")) {
|
|
throw "Search Engine installation blocked by the Enterprise Policy Manager.";
|
|
}
|
|
} catch (ex) {
|
|
Cu.reportError("Invalid argument passed to window.external.AddSearchProvider: " + ex);
|
|
|
|
var searchBundle = Services.strings.createBundle("chrome://global/locale/search/search.properties");
|
|
var brandBundle = Services.strings.createBundle("chrome://branding/locale/brand.properties");
|
|
var brandName = brandBundle.GetStringFromName("brandShortName");
|
|
var title = searchBundle.GetStringFromName("error_invalid_format_title");
|
|
var msg = searchBundle.formatStringFromName("error_invalid_engine_msg2",
|
|
[brandName, engineURL.spec], 2);
|
|
Services.ww.getNewPrompter(browser.ownerGlobal).alert(title, msg);
|
|
return;
|
|
}
|
|
|
|
Services.search.init(function(status) {
|
|
if (status != Cr.NS_OK)
|
|
return;
|
|
|
|
Services.search.addEngine(engineURL.spec, null, iconURL ? iconURL.spec : null, true);
|
|
});
|
|
},
|
|
|
|
observe(subject, topic, data) {
|
|
switch (topic) {
|
|
case "app-startup": {
|
|
Services.obs.addObserver(this, "xpcom-shutdown");
|
|
Services.obs.addObserver(this, "document-element-inserted");
|
|
|
|
// Load this script early so that console.* is initialized
|
|
// before other frame scripts.
|
|
Services.mm.loadFrameScript("chrome://global/content/browser-content.js", true);
|
|
Services.ppmm.loadProcessScript("chrome://global/content/process-content.js", true);
|
|
Services.mm.addMessageListener("Search:AddEngine", this.addSearchEngine);
|
|
Services.ppmm.loadProcessScript("resource:///modules/ContentObservers.js", true);
|
|
break;
|
|
}
|
|
|
|
case "document-element-inserted":
|
|
// Set up Custom Elements for XUL windows before anything else happens
|
|
// in the document. Anything loaded here should be considered part of
|
|
// core XUL functionality. Any window-specific elements can be registered
|
|
// via <script> tags at the top of individual documents.
|
|
const doc = subject;
|
|
if (doc.nodePrincipal.isSystemPrincipal &&
|
|
doc.contentType == "application/vnd.mozilla.xul+xml") {
|
|
Services.scriptloader.loadSubScript(
|
|
"chrome://global/content/customElements.js", doc.ownerGlobal);
|
|
}
|
|
break;
|
|
|
|
case "xpcom-shutdown":
|
|
Services.mm.removeMessageListener("Search:AddEngine", this.addSearchEngine);
|
|
Services.obs.removeObserver(this, "document-element-inserted");
|
|
break;
|
|
}
|
|
},
|
|
};
|
|
|
|
this.NSGetFactory = XPCOMUtils.generateNSGetFactory([MainProcessSingleton]);
|