gecko/browser/app/profile/extensions/testpilot@labs.mozilla.com/modules/remote-experiment-loader.js

340 lines
13 KiB
JavaScript

/* ***** 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 Test Pilot.
*
* The Initial Developer of the Original Code is Mozilla.
* Portions created by the Initial Developer are Copyright (C) 2007
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
* Jono X <jono@mozilla.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 ***** */
const BASE_URL_PREF = "extensions.testpilot.indexBaseURL";
var Cuddlefish = require("cuddlefish");
var resolveUrl = require("url").resolve;
var SecurableModule = require("securable-module");
let JarStore = require("jar-code-store").JarStore;
/* Security info should look like this:
* Security Info:
Security state: secure
Security description: Authenticated by Equifax
Security error message: null
Certificate Status:
Verification: OK
Common name (CN) = *.mozillalabs.com
Organisation = Mozilla Corporation
Issuer = Equifax
SHA1 fingerprint = E5:CD:91:97:08:E6:88:F2:A2:AE:31:3C:F9:91:8D:14:33:07:C4:EE
Valid from 8/12/09 14:04:39
Valid until 8/14/11 3:27:26
*/
function verifyChannelSecurity(channel) {
// http://mdn.beonex.com/En/How_to_check_the_security_state_of_an_XMLHTTPRequest_over_SSL
// Expect channel to have security state = secure, CN = *.mozillalabs.com,
// Organization = "Mozilla Corporation", verification = OK.
console.info("Verifying SSL channel security info before download...");
try {
if (! channel instanceof Ci.nsIChannel) {
console.warn("Not a channel. This should never happen.");
return false;
}
let secInfo = channel.securityInfo;
if (secInfo instanceof Ci.nsITransportSecurityInfo) {
secInfo.QueryInterface(Ci.nsITransportSecurityInfo);
let secState = secInfo.securityState & Ci.nsIWebProgressListener.STATE_IS_SECURE;
if (secState != Ci.nsIWebProgressListener.STATE_IS_SECURE) {
console.warn("Failing security check: Security state is not secure.");
return false;
}
} else {
console.warn("Failing secuity check: No TransportSecurityInfo.");
return false;
}
// check SSL certificate details
if (secInfo instanceof Ci.nsISSLStatusProvider) {
let cert = secInfo.QueryInterface(Ci.nsISSLStatusProvider).
SSLStatus.QueryInterface(Ci.nsISSLStatus).serverCert;
let verificationResult = cert.verifyForUsage(
Ci.nsIX509Cert.CERT_USAGE_SSLServer);
if (verificationResult != Ci.nsIX509Cert.VERIFIED_OK) {
console.warn("Failing security check: Cert not verified OK.");
return false;
}
if (cert.commonName != "*.mozillalabs.com") {
console.warn("Failing security check: Cert not for *.mozillalabs.com");
return false;
}
if (cert.organization != "Mozilla Corporation") {
console.warn("Failing security check: Cert not for Mozilla corporation.");
return false;
}
} else {
console.warn("Failing security check: No SSL cert info.");
return false;
}
// Passed everything
console.info("Channel passed SSL security check.");
return true;
} catch(err) {
console.warn("Failing security check: Error: " + err);
return false;
}
}
function downloadFile(url, cb, lastModified) {
// lastModified is a timestamp (ms since epoch); if provided, then the file
// will not be downloaded unless it is newer than this.
var req = Cc["@mozilla.org/xmlextras/xmlhttprequest;1"]
.createInstance( Ci.nsIXMLHttpRequest );
req.open('GET', url, true);
if (lastModified != undefined) {
let d = new Date();
d.setTime(lastModified);
// example header: If-Modified-Since: Sat, 29 Oct 1994 19:43:31 GMT
req.setRequestHeader("If-Modified-Since", d.toGMTString());
console.info("Setting if-modified-since header to " + d.toGMTString());
}
//Use binary mode to download jars TODO find a better switch
if (url.indexOf(".jar") == url.length - 4) {
console.info("Using binary mode to download jar file.");
req.overrideMimeType('text/plain; charset=x-user-defined');
}
req.onreadystatechange = function(aEvt) {
if (req.readyState == 4) {
if (req.status == 200) {
// check security channel:
if (verifyChannelSecurity(req.channel)) {
cb(req.responseText);
} else {
cb(null);
}
} else if (req.status == 304) {
// 304 is "Not Modified", which we can get because we send an
// If-Modified-Since header.
console.info("File " + url + " not modified; using cached version.");
cb(null);
// calling back with null lets the RemoteExperimentLoader know it should
// keep using the old cached version of the code.
} else {
// Some kind of error.
console.warn("Got a " + req.status + " error code downloading " + url);
cb(null);
}
}
};
req.send();
}
// example contents of extensions.testpilot.experiment.codeFs:
// {'fs': {"bookmark01/experiment": "<plain-text code @ bookmarks.js>"}}
// sample code
// example data:
// {'experiments': [{'name': 'Bookmark Experiment',
// 'filename': 'bookmarks.js'}]}
exports.RemoteExperimentLoader = function(logRepo, fileGetterFunction ) {
/* fileGetterFunction is an optional stub function for unit testing. Pass in
* nothing to have it use the default behavior of downloading the files from the
* Test Pilot server. FileGetterFunction must take (url, callback).*/
this._init(logRepo, fileGetterFunction);
};
exports.RemoteExperimentLoader.prototype = {
_init: function(logRepo, fileGetterFunction) {
this._logger = logRepo.getLogger("TestPilot.Loader");
this._expLogger = logRepo.getLogger("TestPilot.RemoteCode");
this._studyResults = [];
this._legacyStudies = [];
let prefs = require("preferences-service");
this._baseUrl = prefs.get(BASE_URL_PREF, "");
if (fileGetterFunction != undefined) {
this._fileGetter = fileGetterFunction;
} else {
this._fileGetter = downloadFile;
}
this._logger.trace("About to instantiate preferences store.");
this._jarStore = new JarStore();
this._experimentFileNames = [];
let self = this;
this._logger.trace("About to instantiate cuddlefish loader.");
this._refreshLoader();
// set up the unloading
require("unload").when( function() {
self._loader.unload();
});
this._logger.trace("Done instantiating remoteExperimentLoader.");
},
_refreshLoader: function() {
if (this._loader) {
this._loader.unload();
}
/* Pass in "TestPilot.experiment" logger as the console object for
* all remote modules loaded through cuddlefish, so they will log their
* stuff to the same file as all other modules. This logger is not
* technically a console object but as long as it has .debug, .info,
* .warn, and .error methods, it will work fine.*/
/* Use a composite file system here, compositing codeStorage and a new
* local file system so that securable modules loaded remotely can
* themselves require modules in the cuddlefish lib. */
let self = this;
this._loader = Cuddlefish.Loader(
{fs: new SecurableModule.CompositeFileSystem(
[self._jarStore, Cuddlefish.parentLoader.fs]),
console: this._expLogger
});
},
checkForUpdates: function(callback) {
/* Callback will be called with true or false
* to let us know whether there are any updates, so that client code can
* restart any experiment whose code has changed. */
let prefs = require("preferences-service");
let indexFileName = prefs.get("extensions.testpilot.indexFileName",
"index.json");
let self = this;
// Unload everything before checking for updates, to be sure we
// get the newest stuff.
this._logger.info("Unloading everything to prepare to check for updates.");
this._refreshLoader();
// Check for surveys and studies
let url = resolveUrl(self._baseUrl, indexFileName);
self._fileGetter(url, function onDone(data) {
if (data) {
try {
data = JSON.parse(data);
} catch (e) {
self._logger.warn("Error parsing index.json: " + e );
callback(false);
return;
}
// Cache study results...
self._studyResults = data.results;
self._legacyStudies = data.legacy;
/* Go through each file indicated in index.json, attempt to load it into
* codeStorage (replacing any older version there).
*/
let jarFiles = data.experiment_jars;
let numFilesToDload = jarFiles.length;
for each (let j in jarFiles) {
let filename = j.jarfile;
let hash = j.hash;
if (j.studyfile) {
self._experimentFileNames.push(j.studyfile);
}
self._logger.trace("I'm gonna go try to get the code for " + filename);
let modDate = self._jarStore.getFileModifiedDate(filename);
self._fileGetter(resolveUrl(self._baseUrl, filename),
function onDone(code) {
// code will be non-null if there is actually new code to download.
if (code) {
self._logger.info("Downloaded jar file " + filename);
self._jarStore.saveJarFile(filename, code, hash);
self._logger.trace("Saved code for: " + filename);
} else {
self._logger.info("Nothing to download for " + filename);
}
numFilesToDload--;
if (numFilesToDload == 0) {
self._logger.trace("Calling callback.");
callback(true);
}
}, modDate);
}
} else {
self._logger.warn("Could not download index.json from test pilot server.");
callback(false);
}
});
},
getExperiments: function() {
/* Load up and return all studies/surveys (not libraries)
* already stored in codeStorage. Returns a dict with key =
* the module name and value = the module object. */
this._logger.trace("GetExperiments called.");
let remoteExperiments = {};
for each (filename in this._experimentFileNames) {
this._logger.debug("GetExperiments is loading " + filename);
try {
remoteExperiments[filename] = this._loader.require(filename);
this._logger.info("Loaded " + filename + " OK.");
} catch(e) {
this._logger.warn("Error loading " + filename);
this._logger.warn(e);
}
}
return remoteExperiments;
},
getStudyResults: function() {
return this._studyResults;
},
getLegacyStudies: function() {
return this._legacyStudies;
}
};
// TODO purge the pref store of anybody who has one.
// TODO i realized that right now there is no way for experiments
// on disk to get loaded if the index file is not accessible for
// any reason. getExperiments needs to be able to return names of
// experiment modules on disk even if connection to server fails. But
// we can't just load everything; some modules in the jar are not
// experiments. Right now the information as to which modules are
// experiments lives ONLY in index.json. What if we put it into the .jar
// file itself somehow? Like calling one of the files "study.js". Or
// "survey.js" Hey, that would be neat - one .jar file containing both
// the study.js and the survey.js. Or there could be a mini-manifest in the
// jar telling which files are experiments.
// TODO Also, if user has a study id foo that is not expired yet, and
// a LegacyStudy appears with the same id, they should keep their "real"
// version of id foo and not load the LegacyStudy version.
// TODO but once the study is expired, should delete the jar for it and
// just load the LegacyStudy version.