mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
269 lines
7.3 KiB
JavaScript
269 lines
7.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/. */
|
|
|
|
const Cc = Components.classes;
|
|
const Ci = Components.interfaces;
|
|
const CC = Components.Constructor;
|
|
const Cu = Components.utils;
|
|
|
|
Cu.import("resource://gre/modules/Services.jsm");
|
|
Cu.import("resource://gre/modules/AppsUtils.jsm");
|
|
Cu.import("resource://gre/modules/FileUtils.jsm");
|
|
|
|
this.EXPORTED_SYMBOLS = ["WebappOSUtils"];
|
|
|
|
this.WebappOSUtils = {
|
|
getUniqueName: function(aApp) {
|
|
let name;
|
|
|
|
// During the installation of a new app, the aApp object
|
|
// doesn't have a name property. We then need to use the manifest.
|
|
// For some mozApps calls, the aApp object doesn't have a manifest
|
|
// associated, and so we need to use the name property.
|
|
// They're guaranteed to be always identical to the application
|
|
// name in the user locale.
|
|
if (aApp.name) {
|
|
name = aApp.name;
|
|
} else {
|
|
let manifest =
|
|
new ManifestHelper(aApp.updateManifest || aApp.manifest, aApp.origin);
|
|
name = manifest.name;
|
|
}
|
|
|
|
return this.sanitizeStringForFilename(name).toLowerCase() + "-" +
|
|
AppsUtils.computeHash(aApp.manifestURL);
|
|
},
|
|
|
|
/**
|
|
* Returns the executable of the given app, identifying it by its unique name,
|
|
* which is in either the new format or the old format.
|
|
* On Mac OS X, it returns the identifier of the app.
|
|
*
|
|
* The new format ensures a readable and unique name for an app by combining
|
|
* its name with a hash of its manifest URL. The old format uses its origin,
|
|
* which is only unique until we support multiple apps per origin.
|
|
*/
|
|
getLaunchTarget: function(aApp) {
|
|
let uniqueName = this.getUniqueName(aApp);
|
|
|
|
#ifdef XP_WIN
|
|
let appRegKey;
|
|
try {
|
|
let open = CC("@mozilla.org/windows-registry-key;1",
|
|
"nsIWindowsRegKey", "open");
|
|
appRegKey = open(Ci.nsIWindowsRegKey.ROOT_KEY_CURRENT_USER,
|
|
"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\" +
|
|
uniqueName, Ci.nsIWindowsRegKey.ACCESS_READ);
|
|
} catch (ex) {
|
|
try {
|
|
appRegKey = open(Ci.nsIWindowsRegKey.ROOT_KEY_CURRENT_USER,
|
|
"SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\" +
|
|
aApp.origin, Ci.nsIWindowsRegKey.ACCESS_READ);
|
|
} catch (ex) {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
let appFilename, installLocation;
|
|
try {
|
|
appFilename = appRegKey.readStringValue("AppFilename");
|
|
installLocation = appRegKey.readStringValue("InstallLocation");
|
|
} catch (ex) {
|
|
return null;
|
|
} finally {
|
|
appRegKey.close();
|
|
}
|
|
|
|
installLocation = installLocation.substring(1, installLocation.length - 1);
|
|
let initWithPath = CC("@mozilla.org/file/local;1",
|
|
"nsILocalFile", "initWithPath");
|
|
let launchTarget = initWithPath(installLocation);
|
|
launchTarget.append(appFilename + ".exe");
|
|
|
|
return launchTarget;
|
|
#elifdef XP_MACOSX
|
|
let mwaUtils = Cc["@mozilla.org/widget/mac-web-app-utils;1"]
|
|
.createInstance(Ci.nsIMacWebAppUtils);
|
|
|
|
try {
|
|
if (mwaUtils.pathForAppWithIdentifier(uniqueName)) {
|
|
return uniqueName;
|
|
}
|
|
if (mwaUtils.pathForAppWithIdentifier(aApp.origin)) {
|
|
return aApp.origin;
|
|
}
|
|
} catch(ex) {}
|
|
|
|
return null;
|
|
#elifdef XP_UNIX
|
|
let exeFile = Services.dirsvc.get("Home", Ci.nsIFile);
|
|
exeFile.append("." + uniqueName);
|
|
exeFile.append("webapprt-stub");
|
|
|
|
if (!exeFile.exists()) {
|
|
exeFile = Services.dirsvc.get("Home", Ci.nsIFile);
|
|
|
|
let origin = Services.io.newURI(aApp.origin, null, null);
|
|
let installDir = "." + origin.scheme + ";" +
|
|
origin.host +
|
|
(origin.port != -1 ? ";" + origin.port : "");
|
|
|
|
exeFile.append(installDir);
|
|
exeFile.append("webapprt-stub");
|
|
|
|
if (!exeFile.exists()) {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
return exeFile;
|
|
#endif
|
|
},
|
|
|
|
launch: function(aApp) {
|
|
let uniqueName = this.getUniqueName(aApp);
|
|
|
|
#ifdef XP_WIN
|
|
let initProcess = CC("@mozilla.org/process/util;1",
|
|
"nsIProcess", "init");
|
|
|
|
let launchTarget = this.getLaunchTarget(aApp);
|
|
if (!launchTarget) {
|
|
return false;
|
|
}
|
|
|
|
try {
|
|
let process = initProcess(launchTarget);
|
|
process.runwAsync([], 0);
|
|
} catch (e) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
#elifdef XP_MACOSX
|
|
let launchIdentifier = this.getLaunchTarget(aApp);
|
|
if (!launchIdentifier) {
|
|
return false;
|
|
}
|
|
|
|
let mwaUtils = Cc["@mozilla.org/widget/mac-web-app-utils;1"]
|
|
.createInstance(Ci.nsIMacWebAppUtils);
|
|
|
|
try {
|
|
mwaUtils.launchAppWithIdentifier(launchIdentifier);
|
|
} catch(e) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
#elifdef XP_UNIX
|
|
let exeFile = this.getLaunchTarget(aApp);
|
|
if (!exeFile) {
|
|
return false;
|
|
}
|
|
|
|
try {
|
|
let process = Cc["@mozilla.org/process/util;1"]
|
|
.createInstance(Ci.nsIProcess);
|
|
|
|
process.init(exeFile);
|
|
process.runAsync([], 0);
|
|
} catch (e) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
#endif
|
|
},
|
|
|
|
uninstall: function(aApp) {
|
|
let uniqueName = this.getUniqueName(aApp);
|
|
|
|
#ifdef XP_UNIX
|
|
#ifndef XP_MACOSX
|
|
let exeFile = this.getLaunchTarget(aApp);
|
|
if (!exeFile) {
|
|
return false;
|
|
}
|
|
|
|
try {
|
|
let process = Cc["@mozilla.org/process/util;1"]
|
|
.createInstance(Ci.nsIProcess);
|
|
|
|
process.init(exeFile);
|
|
process.runAsync(["-remove"], 1);
|
|
} catch (e) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
#endif
|
|
#endif
|
|
},
|
|
|
|
/**
|
|
* Checks if the given app is locally installed.
|
|
*/
|
|
isLaunchable: function(aApp) {
|
|
let uniqueName = this.getUniqueName(aApp);
|
|
|
|
#ifdef XP_WIN
|
|
if (!this.getLaunchTarget(aApp)) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
#elifdef XP_MACOSX
|
|
if (!this.getLaunchTarget(aApp)) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
#elifdef XP_UNIX
|
|
let env = Cc["@mozilla.org/process/environment;1"]
|
|
.getService(Ci.nsIEnvironment);
|
|
|
|
let xdg_data_home_env;
|
|
try {
|
|
xdg_data_home_env = env.get("XDG_DATA_HOME");
|
|
} catch(ex) {}
|
|
|
|
let desktopINI;
|
|
if (xdg_data_home_env) {
|
|
desktopINI = new FileUtils.File(xdg_data_home_env);
|
|
} else {
|
|
desktopINI = FileUtils.getFile("Home", [".local", "share"]);
|
|
}
|
|
desktopINI.append("applications");
|
|
desktopINI.append("owa-" + uniqueName + ".desktop");
|
|
|
|
if (!desktopINI.exists()) {
|
|
if (xdg_data_home_env) {
|
|
desktopINI = new FileUtils.File(xdg_data_home_env);
|
|
} else {
|
|
desktopINI = FileUtils.getFile("Home", [".local", "share"]);
|
|
}
|
|
|
|
let origin = Services.io.newURI(aApp.origin, null, null);
|
|
let oldUniqueName = origin.scheme + ";" +
|
|
origin.host +
|
|
(origin.port != -1 ? ";" + origin.port : "");
|
|
|
|
desktopINI.append("owa-" + oldUniqueName + ".desktop");
|
|
|
|
return desktopINI.exists();
|
|
}
|
|
|
|
return true;
|
|
#endif
|
|
},
|
|
|
|
/**
|
|
* Sanitize the filename (accepts only a-z, 0-9, - and _)
|
|
*/
|
|
sanitizeStringForFilename: function(aPossiblyBadFilenameString) {
|
|
return aPossiblyBadFilenameString.replace(/[^a-z0-9_\-]/gi, "");
|
|
}
|
|
}
|