gecko/browser/app/profile/extensions/testpilot@labs.mozilla.com/modules/metadata.js
2012-05-21 12:12:37 +01:00

161 lines
5.7 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/. */
EXPORTED_SYMBOLS = ["MetadataCollector"];
const Cc = Components.classes;
const Ci = Components.interfaces;
const Cu = Components.utils;
Cu.import("resource://testpilot/modules/string_sanitizer.js");
const LOCALE_PREF = "general.useragent.locale";
const EXTENSION_ID = "testpilot@labs.mozilla.com";
const PREFIX_NS_EM = "http://www.mozilla.org/2004/em-rdf#";
const PREFIX_ITEM_URI = "urn:mozilla:item:";
const UPDATE_CHANNEL_PREF = "app.update.channel";
/* The following preference, if present, stores answers to the basic panel
* survey, which tell us user's general tech level, and so should be included
* with any upload.*/
const SURVEY_ANS = "extensions.testpilot.surveyAnswers.basic_panel_survey_2";
let Application = Cc["@mozilla.org/fuel/application;1"]
.getService(Ci.fuelIApplication);
// This function copied over from Weave:
function Weave_sha1(string) {
let converter = Cc["@mozilla.org/intl/scriptableunicodeconverter"].
createInstance(Ci.nsIScriptableUnicodeConverter);
converter.charset = "UTF-8";
let hasher = Cc["@mozilla.org/security/hash;1"]
.createInstance(Ci.nsICryptoHash);
hasher.init(hasher.SHA1);
let data = converter.convertToByteArray(string, {});
hasher.update(data, data.length);
let rawHash = hasher.finish(false);
// return the two-digit hexadecimal code for a byte
function toHexString(charCode) {
return ("0" + charCode.toString(16)).slice(-2);
}
let hash = [toHexString(rawHash.charCodeAt(i)) for (i in rawHash)].join("");
return hash;
}
let MetadataCollector = {
// Collects metadata such as what country you're in, what extensions you have installed, etc.
getExtensions: function MetadataCollector_getExtensions(callback) {
//http://lxr.mozilla.org/aviarybranch/source/toolkit/mozapps/extensions/public/nsIExtensionManager.idl
//http://lxr.mozilla.org/aviarybranch/source/toolkit/mozapps/update/public/nsIUpdateService.idl#45
let myExtensions = [];
if (Application.extensions) {
for each (let ex in Application.extensions.all) {
myExtensions.push({ id: Weave_sha1(ex.id), isEnabled: ex.enabled });
}
callback(myExtensions);
} else {
Application.getExtensions(function(extensions) {
for each (let ex in extensions.all) {
myExtensions.push({ id: Weave_sha1(ex.id), isEnabled: ex.enabled });
}
callback(myExtensions);
});
}
},
getAccessibilities : function MetadataCollector_getAccessibilities() {
let prefs =
Cc["@mozilla.org/preferences-service;1"].getService(Ci.nsIPrefService);
let branch = prefs.getBranch("accessibility.");
let accessibilities = [];
let children = branch.getChildList("", {});
let length = children.length;
let prefName;
let prefValue;
for (let i = 0; i < length; i++) {
prefName = "accessibility." + children[i];
prefValue =
Application.prefs.getValue(prefName, "");
accessibilities.push({ name: prefName, value: prefValue });
}
/* Detect accessibility instantiation
* (David Bolter's code from bug 577694) */
let enabled;
try {
enabled = Components.manager.QueryInterface(Ci.nsIServiceManager)
.isServiceInstantiatedByContractID(
"@mozilla.org/accessibilityService;1",
Ci.nsISupports);
} catch (ex) {
enabled = false;
}
accessibilities.push({name: "isInstantiated", value: enabled});
return accessibilities;
},
getLocation: function MetadataCollector_getLocation() {
// we don't want the lat/long, we just want the country
// so use the Locale.
return Application.prefs.getValue(LOCALE_PREF, "");
},
getVersion: function MetadataCollector_getVersion() {
return Application.version;
},
getOperatingSystem: function MetadataCollector_getOSVersion() {
let oscpu = Cc["@mozilla.org/network/protocol;1?name=http"].getService(Ci.nsIHttpProtocolHandler).oscpu;
let os = Cc["@mozilla.org/xre/app-info;1"].getService(Ci.nsIXULRuntime).OS;
return os + " " + oscpu;
},
getSurveyAnswers: function MetadataCollector_getSurveyAnswers() {
let answers = Application.prefs.getValue(SURVEY_ANS, "");
if (answers == "") {
return "";
} else {
return sanitizeJSONStrings( JSON.parse(answers) );
}
},
getTestPilotVersion: function MetadataCollector_getTPVersion(callback) {
// Application.extensions is undefined if we're in Firefox 4.
if (Application.extensions) {
callback(Application.extensions.get(EXTENSION_ID).version);
} else {
Application.getExtensions(function(extensions) {
callback(extensions.get(EXTENSION_ID).version);
});
}
},
getUpdateChannel: function MetadataCollector_getUpdateChannel() {
return Application.prefs.getValue(UPDATE_CHANNEL_PREF, "");
},
getMetadata: function MetadataCollector_getMetadata(callback) {
let self = this;
self.getTestPilotVersion(function(tpVersion) {
self.getExtensions(function(extensions) {
callback({ extensions: extensions,
accessibilities: self.getAccessibilities(),
location: self.getLocation(),
fxVersion: self.getVersion(),
operatingSystem: self.getOperatingSystem(),
tpVersion: tpVersion,
surveyAnswers: self.getSurveyAnswers(),
updateChannel: self.getUpdateChannel()}
);
});
});
}
// TODO if we make a GUID for the user, we keep it here.
};