131 lines
4.5 KiB
JavaScript
131 lines
4.5 KiB
JavaScript
|
|
function appName()
|
|
{
|
|
return installer.value("Name")
|
|
}
|
|
|
|
function serviceName()
|
|
{
|
|
return (appName() + "-service")
|
|
}
|
|
|
|
function appExecutableFileName()
|
|
{
|
|
if (runningOnWindows()) {
|
|
return appName() + ".exe";
|
|
} else {
|
|
return appName();
|
|
}
|
|
}
|
|
|
|
function runningOnWindows()
|
|
{
|
|
return (systemInfo.kernelType === "winnt");
|
|
}
|
|
|
|
function runningOnMacOS()
|
|
{
|
|
return (systemInfo.kernelType === "darwin");
|
|
}
|
|
|
|
function runningOnLinux()
|
|
{
|
|
return (systemInfo.kernelType === "linux");
|
|
}
|
|
|
|
function vcRuntimeIsInstalled()
|
|
{
|
|
return (installer.findPath("msvcp140.dll", [installer.value("RootDir")+ "\\Windows\\System32\\"]).length !== 0)
|
|
}
|
|
|
|
function Component()
|
|
{
|
|
component.loaded.connect(this, Component.prototype.componentLoaded);
|
|
installer.installationFinished.connect(this, Component.prototype.installationFinishedPageIsShown);
|
|
installer.finishButtonClicked.connect(this, Component.prototype.installationFinished);
|
|
}
|
|
|
|
Component.prototype.componentLoaded = function ()
|
|
{
|
|
|
|
}
|
|
|
|
Component.prototype.installationFinishedPageIsShown = function()
|
|
{
|
|
if (installer.isInstaller() && installer.status === QInstaller.Success) {
|
|
gui.clickButton(buttons.FinishButton);
|
|
}
|
|
}
|
|
|
|
Component.prototype.createOperations = function()
|
|
{
|
|
component.createOperations();
|
|
|
|
if (runningOnWindows()) {
|
|
|
|
component.addOperation("CreateShortcut", "@TargetDir@/" + appExecutableFileName(),
|
|
QDesktopServices.storageLocation(QDesktopServices.DesktopLocation) + "/" + appName() + ".lnk",
|
|
"workingDirectory=@TargetDir@", "iconPath=@TargetDir@\\" + appExecutableFileName(), "iconId=0");
|
|
|
|
|
|
component.addElevatedOperation("CreateShortcut", "@TargetDir@/" + appExecutableFileName(),
|
|
installer.value("AllUsersStartMenuProgramsPath") + "/" + appName() + ".lnk",
|
|
"workingDirectory=@TargetDir@", "iconPath=@TargetDir@\\" + appExecutableFileName(), "iconId=0");
|
|
|
|
if (!vcRuntimeIsInstalled()) {
|
|
if (systemInfo.currentCpuArchitecture.search("64") < 0) {
|
|
component.addElevatedOperation("Execute", "@TargetDir@\\" + "vc_redist.x86.exe", "/install", "/quiet", "/norestart", "/log", "vc_redist.log");
|
|
}
|
|
else {
|
|
component.addElevatedOperation("Execute", "@TargetDir@\\" + "vc_redist.x64.exe", "/install", "/quiet", "/norestart", "/log", "vc_redist.log");
|
|
}
|
|
|
|
} else {
|
|
console.log("Microsoft Visual C++ 2017 Redistributable already installed");
|
|
}
|
|
|
|
let pu_path = installer.value("TargetDir").replace(/\//g, '\\') + "\\"
|
|
component.addElevatedOperation("Execute",
|
|
["sc", "create", serviceName(), "binpath=", pu_path + serviceName() + ".exe",
|
|
"start=", "auto", "depend=", "BFE/nsi"],
|
|
"UNDOEXECUTE", "cmd", "/c", pu_path + "post_uninstall.cmd");
|
|
|
|
} else if (runningOnMacOS()) {
|
|
component.addElevatedOperation("Execute", "@TargetDir@/post_install.sh", "UNDOEXECUTE", "@TargetDir@/post_uninstall.sh");
|
|
} else if (runningOnLinux()) {
|
|
component.addElevatedOperation("Execute", "bash", "@TargetDir@/post_install.sh", "UNDOEXECUTE", "bash", "@TargetDir@/post_uninstall.sh");
|
|
}
|
|
}
|
|
|
|
Component.prototype.installationFinished = function()
|
|
{
|
|
var command = "";
|
|
var args = [];
|
|
|
|
if ((installer.status === QInstaller.Success) && (installer.isInstaller() || installer.isUpdater())) {
|
|
|
|
if (!installer.gainAdminRights()) {
|
|
console.log("Fatal error! Cannot get admin rights!")
|
|
return
|
|
}
|
|
|
|
if (runningOnWindows()) {
|
|
command = "@TargetDir@/" + appExecutableFileName()
|
|
|
|
var status1 = installer.execute("net", ["start", serviceName()])
|
|
console.log(("%1 started with status: %2 ").arg(serviceName()).arg(status1))
|
|
|
|
var status2 = installer.execute("sc", ["failure", serviceName(), "reset=", "100", "actions=", "restart/2000/restart/2000/restart/2000"])
|
|
console.log(("Changed settings for %1 with status: %2 ").arg(serviceName()).arg(status2))
|
|
|
|
} else if (runningOnMacOS()) {
|
|
command = "/Applications/" + appName() + ".app/Contents/MacOS/" + appName();
|
|
} else if (runningOnLinux()) {
|
|
command = "@TargetDir@/client/" + appName();
|
|
}
|
|
|
|
installer.dropAdminRights()
|
|
|
|
processStatus = installer.executeDetached(command, args, installer.value("TargetDir"));
|
|
}
|
|
}
|