mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
8d55588b14
--- mobile/android/chrome/content/WebAppRT.js | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
168 lines
5.4 KiB
JavaScript
168 lines
5.4 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/. */
|
|
let Cc = Components.classes;
|
|
let Ci = Components.interfaces;
|
|
let Cu = Components.utils;
|
|
|
|
Cu.import("resource://gre/modules/Services.jsm");
|
|
Cu.import("resource://gre/modules/FileUtils.jsm");
|
|
Cu.import("resource://gre/modules/NetUtil.jsm");
|
|
Cu.import("resource://gre/modules/PermissionsInstaller.jsm");
|
|
|
|
function pref(name, value) {
|
|
return {
|
|
name: name,
|
|
value: value
|
|
}
|
|
}
|
|
|
|
let WebAppRT = {
|
|
DEFAULT_PREFS_FILENAME: "default-prefs.js",
|
|
|
|
prefs: [
|
|
// Disable all add-on locations other than the profile (which can't be disabled this way)
|
|
pref("extensions.enabledScopes", 1),
|
|
// Auto-disable any add-ons that are "dropped in" to the profile
|
|
pref("extensions.autoDisableScopes", 1),
|
|
// Disable add-on installation via the web-exposed APIs
|
|
pref("xpinstall.enabled", false),
|
|
// Set a future policy version to avoid the telemetry prompt.
|
|
pref("toolkit.telemetry.prompted", 999),
|
|
pref("toolkit.telemetry.notifiedOptOut", 999),
|
|
pref("media.useAudioChannelService", true)
|
|
],
|
|
|
|
init: function(aStatus, aUrl, aCallback) {
|
|
this.deck = document.getElementById("browsers");
|
|
this.deck.addEventListener("click", this, false, true);
|
|
|
|
// on first run, update any prefs
|
|
if (aStatus == "new") {
|
|
this.getDefaultPrefs().forEach(this.addPref);
|
|
|
|
// prevent offering to use helper apps for things that this app handles
|
|
// i.e. don't show the "Open in market?" popup when we're showing the market app
|
|
let uri = Services.io.newURI(aUrl, null, null);
|
|
|
|
// update the blocklist url to use a different app id
|
|
let blocklist = Services.prefs.getCharPref("extensions.blocklist.url");
|
|
blocklist = blocklist.replace(/%APP_ID%/g, "webapprt-mobile@mozilla.org");
|
|
Services.prefs.setCharPref("extensions.blocklist.url", blocklist);
|
|
|
|
this.getManifestFor(aUrl, function (aManifest, aApp) {
|
|
if (aManifest) {
|
|
PermissionsInstaller.installPermissions(aApp, true);
|
|
}
|
|
});
|
|
}
|
|
|
|
this.findManifestUrlFor(aUrl, aCallback);
|
|
},
|
|
|
|
getManifestFor: function (aUrl, aCallback) {
|
|
let request = navigator.mozApps.mgmt.getAll();
|
|
request.onsuccess = function() {
|
|
let apps = request.result;
|
|
for (let i = 0; i < apps.length; i++) {
|
|
let app = apps[i];
|
|
let manifest = new ManifestHelper(app.manifest, app.origin);
|
|
|
|
// if this is a path to the manifest, or the launch path, then we have a hit.
|
|
if (app.manifestURL == aUrl || manifest.fullLaunchPath() == aUrl) {
|
|
aCallback(manifest, app);
|
|
return;
|
|
}
|
|
}
|
|
|
|
// Otherwise, once we loop through all of them, we have a miss.
|
|
aCallback(undefined);
|
|
};
|
|
|
|
request.onerror = function() {
|
|
// Treat an error like a miss. We can't find the manifest.
|
|
aCallback(undefined);
|
|
};
|
|
},
|
|
|
|
findManifestUrlFor: function(aUrl, aCallback) {
|
|
this.getManifestFor(aUrl, function(aManifest, aApp) {
|
|
if (!aManifest) {
|
|
// we can't find the manifest, so open it like a web page
|
|
aCallback(aUrl);
|
|
return;
|
|
}
|
|
|
|
BrowserApp.manifest = aManifest;
|
|
BrowserApp.manifestUrl = aApp.manifestURL;
|
|
|
|
aCallback(aManifest.fullLaunchPath());
|
|
});
|
|
},
|
|
|
|
getDefaultPrefs: function() {
|
|
// read default prefs from the disk
|
|
try {
|
|
let defaultPrefs = [];
|
|
try {
|
|
defaultPrefs = this.readDefaultPrefs(FileUtils.getFile("ProfD", [this.DEFAULT_PREFS_FILENAME]));
|
|
} catch(ex) {
|
|
// this can throw if the defaultprefs.js file doesn't exist
|
|
}
|
|
for (let i = 0; i < defaultPrefs.length; i++) {
|
|
this.prefs.push(defaultPrefs[i]);
|
|
}
|
|
} catch(ex) {
|
|
console.log("Error reading defaultPrefs file: " + ex);
|
|
}
|
|
return this.prefs;
|
|
},
|
|
|
|
readDefaultPrefs: function webapps_readDefaultPrefs(aFile) {
|
|
let fstream = Cc["@mozilla.org/network/file-input-stream;1"].createInstance(Ci.nsIFileInputStream);
|
|
fstream.init(aFile, -1, 0, 0);
|
|
let prefsString = NetUtil.readInputStreamToString(fstream, fstream.available(), {});
|
|
return JSON.parse(prefsString);
|
|
},
|
|
|
|
addPref: function(aPref) {
|
|
switch (typeof aPref.value) {
|
|
case "string":
|
|
Services.prefs.setCharPref(aPref.name, aPref.value);
|
|
break;
|
|
case "boolean":
|
|
Services.prefs.setBoolPref(aPref.name, aPref.value);
|
|
break;
|
|
case "number":
|
|
Services.prefs.setIntPref(aPref.name, aPref.value);
|
|
break;
|
|
}
|
|
},
|
|
|
|
handleEvent: function(event) {
|
|
let target = event.target;
|
|
|
|
// walk up the tree to find the nearest link tag
|
|
while (target && !(target instanceof HTMLAnchorElement)) {
|
|
target = target.parentNode;
|
|
}
|
|
|
|
if (!target || target.getAttribute("target") != "_blank") {
|
|
return;
|
|
}
|
|
|
|
let uri = Services.io.newURI(target.href, target.ownerDocument.characterSet, null);
|
|
|
|
// Direct the URL to the browser.
|
|
Cc["@mozilla.org/uriloader/external-protocol-service;1"].
|
|
getService(Ci.nsIExternalProtocolService).
|
|
getProtocolHandlerInfo(uri.scheme).
|
|
launchWithURI(uri);
|
|
|
|
// Prevent the runtime from loading the URL. We do this after directing it
|
|
// to the browser to give the runtime a shot at handling the URL if we fail
|
|
// to direct it to the browser for some reason.
|
|
event.preventDefault();
|
|
}
|
|
}
|