2010-04-29 13:11:23 -07:00
|
|
|
/*
|
|
|
|
# ***** 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 the Extension Manager.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is
|
|
|
|
# the Mozilla Foundation.
|
|
|
|
# Portions created by the Initial Developer are Copyright (C) 2009
|
|
|
|
# the Initial Developer. All Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
|
|
|
# Dave Townsend <dtownsend@oxymoronical.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 *****
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This component serves as integration between the platform and AddonManager.
|
|
|
|
* It is responsible for initializing and shutting down the AddonManager as well
|
|
|
|
* as passing new installs from webpages to the AddonManager.
|
|
|
|
*/
|
|
|
|
|
|
|
|
const Cc = Components.classes;
|
|
|
|
const Ci = Components.interfaces;
|
|
|
|
const Cr = Components.results;
|
|
|
|
|
|
|
|
const PREF_EM_UPDATE_INTERVAL = "extensions.update.interval";
|
|
|
|
|
|
|
|
// The old XPInstall error codes
|
|
|
|
const EXECUTION_ERROR = -203;
|
|
|
|
const CANT_READ_ARCHIVE = -207;
|
|
|
|
const USER_CANCELLED = -210;
|
|
|
|
const DOWNLOAD_ERROR = -228;
|
|
|
|
const UNSUPPORTED_TYPE = -244;
|
|
|
|
const SUCCESS = 0;
|
|
|
|
|
2010-08-16 13:41:46 -07:00
|
|
|
const MSG_INSTALL_ENABLED = "WebInstallerIsInstallEnabled";
|
|
|
|
const MSG_INSTALL_ADDONS = "WebInstallerInstallAddonsFromWebpage";
|
|
|
|
const MSG_INSTALL_CALLBACK = "WebInstallerInstallCallback";
|
|
|
|
|
|
|
|
const CHILD_SCRIPT =
|
|
|
|
"chrome://mozapps/content/extensions/extensions-content.js";
|
|
|
|
|
2010-04-29 13:11:23 -07:00
|
|
|
Components.utils.import("resource://gre/modules/XPCOMUtils.jsm");
|
2010-08-16 13:41:46 -07:00
|
|
|
Components.utils.import("resource://gre/modules/Services.jsm");
|
2010-04-29 13:11:23 -07:00
|
|
|
|
|
|
|
var gSingleton = null;
|
|
|
|
|
|
|
|
function amManager() {
|
|
|
|
Components.utils.import("resource://gre/modules/AddonManager.jsm");
|
2010-08-16 13:41:46 -07:00
|
|
|
|
|
|
|
var messageManager = Cc["@mozilla.org/globalmessagemanager;1"].
|
|
|
|
getService(Ci.nsIChromeFrameMessageManager);
|
|
|
|
|
|
|
|
messageManager.addMessageListener(MSG_INSTALL_ENABLED, this);
|
|
|
|
messageManager.addMessageListener(MSG_INSTALL_ADDONS, this);
|
|
|
|
messageManager.loadFrameScript(CHILD_SCRIPT, true, true);
|
2010-04-29 13:11:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
amManager.prototype = {
|
2010-04-28 09:42:07 -07:00
|
|
|
observe: function AMC_observe(aSubject, aTopic, aData) {
|
2010-04-29 13:11:23 -07:00
|
|
|
let os = Cc["@mozilla.org/observer-service;1"].
|
|
|
|
getService(Ci.nsIObserverService);
|
|
|
|
|
2010-04-28 09:42:07 -07:00
|
|
|
switch (aTopic) {
|
2010-06-11 12:02:44 -07:00
|
|
|
case "addons-startup":
|
2010-04-29 13:11:23 -07:00
|
|
|
os.addObserver(this, "xpcom-shutdown", false);
|
|
|
|
AddonManagerPrivate.startup();
|
|
|
|
break;
|
|
|
|
case "xpcom-shutdown":
|
|
|
|
os.removeObserver(this, "xpcom-shutdown");
|
|
|
|
AddonManagerPrivate.shutdown();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @see amIWebInstaller.idl
|
|
|
|
*/
|
2010-04-28 09:42:07 -07:00
|
|
|
isInstallEnabled: function AMC_isInstallEnabled(aMimetype, aReferer) {
|
|
|
|
return AddonManager.isInstallEnabled(aMimetype);
|
2010-04-29 13:11:23 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @see amIWebInstaller.idl
|
|
|
|
*/
|
2010-04-28 09:42:07 -07:00
|
|
|
installAddonsFromWebpage: function AMC_installAddonsFromWebpage(aMimetype,
|
|
|
|
aWindow,
|
|
|
|
aReferer, aUris,
|
|
|
|
aHashes, aNames,
|
|
|
|
aIcons, aCallback) {
|
|
|
|
if (aUris.length == 0)
|
2010-04-29 13:11:23 -07:00
|
|
|
return false;
|
|
|
|
|
|
|
|
let retval = true;
|
2010-04-28 09:42:07 -07:00
|
|
|
if (!AddonManager.isInstallAllowed(aMimetype, aReferer)) {
|
|
|
|
aCallback = null;
|
2010-04-29 13:11:23 -07:00
|
|
|
retval = false;
|
|
|
|
}
|
|
|
|
|
2010-04-28 09:33:43 -07:00
|
|
|
let loadGroup = null;
|
2010-04-29 13:11:23 -07:00
|
|
|
|
|
|
|
try {
|
2010-04-28 09:42:07 -07:00
|
|
|
loadGroup = aWindow.QueryInterface(Ci.nsIInterfaceRequestor)
|
|
|
|
.getInterface(Ci.nsIWebNavigation)
|
|
|
|
.QueryInterface(Ci.nsIDocumentLoader).loadGroup;
|
2010-04-29 13:11:23 -07:00
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
}
|
|
|
|
|
|
|
|
let installs = [];
|
|
|
|
function buildNextInstall() {
|
2010-04-28 09:42:07 -07:00
|
|
|
if (aUris.length == 0) {
|
|
|
|
AddonManager.installAddonsFromWebpage(aMimetype, aWindow, aReferer, installs);
|
2010-04-29 13:11:23 -07:00
|
|
|
return;
|
|
|
|
}
|
2010-04-28 09:42:07 -07:00
|
|
|
let uri = aUris.shift();
|
|
|
|
AddonManager.getInstallForURL(uri, function(aInstall) {
|
|
|
|
if (aInstall) {
|
|
|
|
installs.push(aInstall);
|
|
|
|
if (aCallback) {
|
2010-08-20 15:48:05 -07:00
|
|
|
function callCallback(aUri, aStatus) {
|
|
|
|
try {
|
|
|
|
aCallback.onInstallEnded(aUri, aStatus);
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
Components.utils.reportError(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-04-28 09:42:07 -07:00
|
|
|
aInstall.addListener({
|
|
|
|
onDownloadCancelled: function(aInstall) {
|
2010-08-20 15:48:05 -07:00
|
|
|
callCallback(uri, USER_CANCELLED);
|
2010-04-29 13:11:23 -07:00
|
|
|
},
|
|
|
|
|
2010-06-10 16:39:47 -07:00
|
|
|
onDownloadFailed: function(aInstall) {
|
|
|
|
if (aInstall.error == AddonManager.ERROR_CORRUPT_FILE)
|
2010-08-20 15:48:05 -07:00
|
|
|
callCallback(uri, CANT_READ_ARCHIVE);
|
2010-04-29 13:11:23 -07:00
|
|
|
else
|
2010-08-20 15:48:05 -07:00
|
|
|
callCallback(uri, DOWNLOAD_ERROR);
|
2010-04-29 13:11:23 -07:00
|
|
|
},
|
|
|
|
|
2010-06-10 16:39:47 -07:00
|
|
|
onInstallFailed: function(aInstall) {
|
2010-08-20 15:48:05 -07:00
|
|
|
callCallback(uri, EXECUTION_ERROR);
|
2010-04-29 13:11:23 -07:00
|
|
|
},
|
|
|
|
|
2010-04-28 09:42:07 -07:00
|
|
|
onInstallEnded: function(aInstall, aStatus) {
|
2010-08-20 15:48:05 -07:00
|
|
|
callCallback(uri, SUCCESS);
|
2010-04-29 13:11:23 -07:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2010-04-28 09:42:07 -07:00
|
|
|
else if (aCallback) {
|
|
|
|
aCallback.onInstallEnded(uri, UNSUPPORTED_TYPE);
|
2010-04-29 13:11:23 -07:00
|
|
|
}
|
|
|
|
buildNextInstall();
|
2010-04-28 09:42:07 -07:00
|
|
|
}, aMimetype, aHashes.shift(), aNames.shift(), aIcons.shift(), null, loadGroup);
|
2010-04-29 13:11:23 -07:00
|
|
|
}
|
|
|
|
buildNextInstall();
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
},
|
|
|
|
|
2010-04-28 09:42:07 -07:00
|
|
|
notify: function AMC_notify(aTimer) {
|
2010-04-29 13:11:23 -07:00
|
|
|
AddonManagerPrivate.backgroundUpdateCheck();
|
|
|
|
},
|
|
|
|
|
2010-08-16 13:41:46 -07:00
|
|
|
/**
|
|
|
|
* messageManager callback function.
|
|
|
|
*
|
|
|
|
* Listens to requests from child processes for InstallTrigger
|
|
|
|
* activity, and sends back callbacks.
|
|
|
|
*/
|
|
|
|
receiveMessage: function(aMessage) {
|
|
|
|
var payload = aMessage.json;
|
|
|
|
var referer = Services.io.newURI(payload.referer, null, null);
|
|
|
|
switch (aMessage.name) {
|
|
|
|
case MSG_INSTALL_ENABLED:
|
|
|
|
return this.isInstallEnabled(payload.mimetype, referer);
|
|
|
|
|
|
|
|
case MSG_INSTALL_ADDONS:
|
|
|
|
var callback = null;
|
|
|
|
if (payload.callbackId != -1) {
|
|
|
|
callback = {
|
|
|
|
onInstallEnded: function ITP_callback(url, status) {
|
|
|
|
// Doing it this way, instead of aMessage.target.messageManager,
|
|
|
|
// ensures it works in Firefox and not only Fennec. See bug
|
|
|
|
// 578172. TODO: Clean up this code once that bug is fixed
|
|
|
|
var flo = aMessage.target.QueryInterface(Ci.nsIFrameLoaderOwner);
|
|
|
|
var returnMessageManager = flo.frameLoader.messageManager;
|
|
|
|
returnMessageManager.sendAsyncMessage(MSG_INSTALL_CALLBACK,
|
|
|
|
{ installerId: payload.installerId,
|
|
|
|
callbackId: payload.callbackId, url: url, status: status }
|
|
|
|
);
|
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|
2010-09-15 10:46:55 -07:00
|
|
|
var window = null;
|
2010-08-16 13:41:46 -07:00
|
|
|
try {
|
|
|
|
// Normal approach for single-process mode
|
2010-09-15 10:46:55 -07:00
|
|
|
window = aMessage.target.contentWindow;
|
2010-08-16 13:41:46 -07:00
|
|
|
} catch (e) {
|
2010-09-15 10:46:55 -07:00
|
|
|
// Fallback for multiprocess (e10s) mode. Should reimplement this
|
|
|
|
// properly with Window IDs when possible, see bug 596109.
|
2010-08-16 13:41:46 -07:00
|
|
|
window = aMessage.target.ownerDocument.defaultView;
|
|
|
|
}
|
|
|
|
return this.installAddonsFromWebpage(payload.mimetype,
|
|
|
|
window, referer, payload.uris, payload.hashes, payload.names,
|
|
|
|
payload.icons, callback, payload.uris.length);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2010-04-29 13:11:23 -07:00
|
|
|
classID: Components.ID("{4399533d-08d1-458c-a87a-235f74451cfa}"),
|
|
|
|
_xpcom_factory: {
|
2010-04-28 09:42:07 -07:00
|
|
|
createInstance: function(aOuter, aIid) {
|
|
|
|
if (aOuter != null)
|
2010-04-29 13:11:23 -07:00
|
|
|
throw Cr.NS_ERROR_NO_AGGREGATION;
|
|
|
|
|
|
|
|
if (!gSingleton)
|
|
|
|
gSingleton = new amManager();
|
2010-04-28 09:42:07 -07:00
|
|
|
return gSingleton.QueryInterface(aIid);
|
2010-04-29 13:11:23 -07:00
|
|
|
}
|
|
|
|
},
|
|
|
|
QueryInterface: XPCOMUtils.generateQI([Ci.amIWebInstaller,
|
|
|
|
Ci.nsITimerCallback,
|
|
|
|
Ci.nsIObserver])
|
|
|
|
};
|
|
|
|
|
2010-06-22 09:59:15 -07:00
|
|
|
var NSGetFactory = XPCOMUtils.generateNSGetFactory([amManager]);
|