-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: generate stubExecutableExe and sign it #8959
base: master
Are you sure you want to change the base?
Changes from 13 commits
15ee162
3e7b26b
1134394
c5c41f5
bcabba8
faa8df7
d5bdf42
aea79ff
03e9201
f3f25c1
5d29591
49a88b7
dc6c1fb
ecfa950
b954be0
9800401
4c7599d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
import { InvalidConfigurationError, log, isEmptyOrSpaces } from "builder-util" | ||
import { execWine } from "app-builder-lib/out/wine" | ||
import { sanitizeFileName } from "builder-util/out/filename" | ||
import { Arch, getArchSuffix, SquirrelWindowsOptions, Target, WinPackager } from "app-builder-lib" | ||
import * as path from "path" | ||
|
@@ -18,12 +19,10 @@ export default class SquirrelWindowsTarget extends Target { | |
} | ||
|
||
private async prepareSignedVendorDirectory(): Promise<string> { | ||
// If not specified will use the Squirrel.Windows that is shipped with electron-installer(https://github.com/electron/windows-installer/tree/main/vendor) | ||
// After https://github.com/electron-userland/electron-builder-binaries/pull/56 merged, will add `electron-builder-binaries` to get the latest version of squirrel. | ||
let vendorDirectory = this.options.customSquirrelVendorDir || path.join(require.resolve("electron-winstaller/package.json"), "..", "vendor") | ||
let vendorDirectory = this.options.customSquirrelVendorDir | ||
if (isEmptyOrSpaces(vendorDirectory) || !fs.existsSync(vendorDirectory)) { | ||
log.warn({ vendorDirectory }, "unable to access Squirrel.Windows vendor directory, falling back to default electron-winstaller") | ||
vendorDirectory = path.join(require.resolve("electron-winstaller/package.json"), "..", "vendor") | ||
log.warn({ vendorDirectory }, "unable to access custom Squirrel.Windows vendor directory, falling back to default vendor ") | ||
vendorDirectory = path.resolve(__dirname, "..", "vendor") | ||
} | ||
|
||
const tmpVendorDirectory = await this.packager.info.tempDirManager.createTempDir({ prefix: "squirrel-windows-vendor" }) | ||
|
@@ -33,16 +32,31 @@ export default class SquirrelWindowsTarget extends Target { | |
|
||
const files = await fs.promises.readdir(tmpVendorDirectory) | ||
for (const file of files) { | ||
if (["Squirrel.exe", "StubExecutable.exe"].includes(file)) { | ||
if (file === "Squirrel.exe") { | ||
const filePath = path.join(tmpVendorDirectory, file) | ||
log.debug({ file: filePath }, "signing vendor executable") | ||
await this.packager.sign(filePath) | ||
break | ||
} | ||
} | ||
|
||
return tmpVendorDirectory | ||
} | ||
|
||
private async generateStubExecutableExe(appOutDir: string, vendorDir: string) { | ||
const files = await fs.promises.readdir(appOutDir, { withFileTypes: true }) | ||
for (const file of files) { | ||
if (path.extname(file.name) === ".exe" && path.basename(file.name, "exe") !== "Squirrel") { | ||
const filePath = path.join(appOutDir, file.name) | ||
log.debug({ file: filePath }, "generating stub executable for exe") | ||
const fileNameWithoutExt = file.name.slice(0, -4) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can extract There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixed. |
||
const stubExePath = path.join(appOutDir, `${fileNameWithoutExt}_ExecutionStub.exe`) | ||
await fs.promises.copyFile(path.join(vendorDir, "StubExecutable.exe"), stubExePath) | ||
await execWine(path.join(vendorDir, "WriteZipToSetup.exe"), null, ["--copy-stub-resources", filePath, stubExePath]) | ||
await this.packager.sign(stubExePath) | ||
} | ||
} | ||
} | ||
|
||
async build(appOutDir: string, arch: Arch) { | ||
const packager = this.packager | ||
const version = packager.appInfo.version | ||
|
@@ -60,6 +74,7 @@ export default class SquirrelWindowsTarget extends Target { | |
}) | ||
|
||
const distOptions = await this.computeEffectiveDistOptions(appOutDir, installerOutDir, setupFile) | ||
await this.generateStubExecutableExe(appOutDir, distOptions.vendorDirectory!) | ||
await createWindowsInstaller(distOptions) | ||
|
||
await packager.signAndEditResources(artifactPath, arch, installerOutDir) | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,7 @@ | |
<file src="*.pak" target="lib\net45" /> | ||
<file src="*.exe.config" target="lib\net45" /> | ||
<file src="*.exe.sig" target="lib\net45" /> | ||
<file src="*_ExecutionStub.exe" target="lib\net45" /> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why is this now being added? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since electron-builder now generates and signs *_ExecutionStub.exe, adding this configuration will move the generated *_ExecutionStub.exe to the lib\net45 directory. |
||
<file src="icudtl.dat" target="lib\net45\icudtl.dat" /> | ||
<file src="Squirrel.exe" target="lib\net45\squirrel.exe" /> | ||
<file src="LICENSE.electron.txt" target="lib\net45\LICENSE.electron.txt" /> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<!-- | ||
<copyright file="app.config" company="Outercurve Foundation"> | ||
Copyright (c) 2004, Outercurve Foundation. | ||
This software is released under Microsoft Reciprocal License (MS-RL). | ||
The license and further copyright text can be found in the file | ||
LICENSE.TXT at the root directory of the distribution. | ||
</copyright> | ||
--> | ||
<configuration> | ||
<startup useLegacyV2RuntimeActivationPolicy="true"> | ||
<supportedRuntime version="v4.0" /> | ||
<supportedRuntime version="v2.0.50727" /> | ||
</startup> | ||
<runtime> | ||
<loadFromRemoteSources enabled="true"/> | ||
</runtime> | ||
</configuration> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<!-- | ||
<copyright file="app.config" company="Outercurve Foundation"> | ||
Copyright (c) 2004, Outercurve Foundation. | ||
This software is released under Microsoft Reciprocal License (MS-RL). | ||
The license and further copyright text can be found in the file | ||
LICENSE.TXT at the root directory of the distribution. | ||
</copyright> | ||
--> | ||
<configuration> | ||
<startup useLegacyV2RuntimeActivationPolicy="true"> | ||
<supportedRuntime version="v4.0" /> | ||
<supportedRuntime version="v2.0.50727" /> | ||
</startup> | ||
<runtime> | ||
<loadFromRemoteSources enabled="true"/> | ||
</runtime> | ||
</configuration> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension" xmlns:netfx="http://schemas.microsoft.com/wix/NetFxExtension"> | ||
<Product Id="*" Name="{{Title}} Deployment Tool" Language="1033" Codepage="{{Codepage}}" Version="!(bind.FileVersion.{{Id}}.exe)" UpgradeCode="{{IdAsGuid1}}" Manufacturer="{{Author}}"> | ||
|
||
<Package Description="This package installs a deployment tool for {{Title}}. Not {{Title}} itself. {{Title}} is only installed if a user logs into the machine." InstallScope="perMachine" Comments="Comments" InstallerVersion="200" Compressed="yes" Platform="{{Platform}}"/> | ||
<MajorUpgrade AllowSameVersionUpgrades="yes" DowngradeErrorMessage="A later version of this product is already installed. Setup will now exit."/> | ||
<Media Id="1" Cabinet="contents.cab" EmbedCab="yes" CompressionLevel="high"/> | ||
|
||
<PropertyRef Id="NETFRAMEWORK45" /> | ||
|
||
<Condition Message="This application requires .NET Framework 4.5 or higher. Please install the latest .NET Framework then run this installer again."> | ||
<![CDATA[Installed OR NETFRAMEWORK45]]> | ||
</Condition> | ||
|
||
<Directory Id="TARGETDIR" Name="SourceDir"> | ||
<Directory Id="{{ProgramFilesFolder}}"> | ||
<Directory Id="APPLICATIONROOTDIRECTORY" Name="{{Title}} Deployment" /> | ||
</Directory> | ||
</Directory> | ||
|
||
<DirectoryRef Id="APPLICATIONROOTDIRECTORY"> | ||
<Component Id="{{Id}}.exe" Guid="{{IdAsGuid2}}" Win64="{{Win64YesNo}}"> | ||
<File Id="{{Id}}.exe" Name="{{Id}}DeploymentTool.exe" Source="./Setup.exe" KeyPath="yes"/> | ||
</Component> | ||
</DirectoryRef> | ||
|
||
<DirectoryRef Id="TARGETDIR"> | ||
<Component Id="RegistryEntries" Guid="{{IdAsGuid3}}" Win64="{{Win64YesNo}}"> | ||
<RegistryKey Root="HKLM" Key="SOFTWARE\Microsoft\Windows\CurrentVersion\Run"> | ||
<RegistryValue Type="expandable" Name="{{Id}}Deployment" Value=""[#{{Id}}.exe]" --checkInstall" /> | ||
</RegistryKey> | ||
</Component> | ||
</DirectoryRef> | ||
|
||
<Feature Id="MainApplication" Title="Main Application" Level="1"> | ||
<ComponentRef Id="{{Id}}.exe" /> | ||
<ComponentRef Id="RegistryEntries" /> | ||
</Feature> | ||
</Product> | ||
</Wix> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can use
log.filePath(filePath)
hereThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed.