gecko-dev/toolkit/mozapps/extensions/amContentHandler.jsm

82 строки
2.3 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";
const XPI_CONTENT_TYPE = "application/x-xpinstall";
const MSG_INSTALL_ADDON = "WebInstallerInstallAddonFromWebpage";
const { Services } = ChromeUtils.import("resource://gre/modules/Services.jsm");
function amContentHandler() {}
amContentHandler.prototype = {
/**
* Handles a new request for an application/x-xpinstall file.
*
* @param aMimetype
* The mimetype of the file
* @param aContext
* The context passed to nsIChannel.asyncOpen
* @param aRequest
* The nsIRequest dealing with the content
*/
handleContent(aMimetype, aContext, aRequest) {
if (aMimetype != XPI_CONTENT_TYPE) {
throw Components.Exception("", Cr.NS_ERROR_WONT_HANDLE_CONTENT);
}
if (!(aRequest instanceof Ci.nsIChannel)) {
throw Components.Exception("", Cr.NS_ERROR_WONT_HANDLE_CONTENT);
}
let uri = aRequest.URI;
aRequest.cancel(Cr.NS_BINDING_ABORTED);
let { loadInfo } = aRequest;
const { triggeringPrincipal } = loadInfo;
let browsingContext = loadInfo.targetBrowsingContext;
let sourceHost;
let sourceURL;
try {
sourceURL =
triggeringPrincipal.spec != "" ? triggeringPrincipal.spec : undefined;
sourceHost = triggeringPrincipal.host;
} catch (error) {
// Ignore errors when retrieving the host for the principal (e.g. data URIs return
// an NS_ERROR_FAILURE when principal.host is accessed).
}
let install = {
uri: uri.spec,
hash: null,
name: null,
icon: null,
mimetype: XPI_CONTENT_TYPE,
triggeringPrincipal,
callbackID: -1,
method: "link",
sourceHost,
sourceURL,
browsingContext,
};
Services.cpmm.sendAsyncMessage(MSG_INSTALL_ADDON, install);
},
classID: Components.ID("{7beb3ba8-6ec3-41b4-b67c-da89b8518922}"),
QueryInterface: ChromeUtils.generateQI(["nsIContentHandler"]),
log(aMsg) {
let msg = "amContentHandler.js: " + (aMsg.join ? aMsg.join("") : aMsg);
Services.console.logStringMessage(msg);
dump(msg + "\n");
},
};
var EXPORTED_SYMBOLS = ["amContentHandler"];