-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
macPackager.ts
592 lines (512 loc) · 23.3 KB
/
macPackager.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
import BluebirdPromise from "bluebird-lst"
import { deepAssign, Arch, AsyncTaskManager, exec, InvalidConfigurationError, log, use, getArchSuffix, copyFile, statOrNull, unlinkIfExists, orIfFileNotExist } from "builder-util"
import { PerFileSignOptions, SignOptions } from "@electron/osx-sign/dist/cjs/types"
import { mkdir, readdir } from "fs/promises"
import { Lazy } from "lazy-val"
import * as path from "path"
import { AppInfo } from "./appInfo"
import { CertType, CodeSigningInfo, createKeychain, CreateKeychainOptions, findIdentity, Identity, isSignAllowed, removeKeychain, reportError, sign } from "./codeSign/macCodeSign"
import { DIR_TARGET, Platform, Target } from "./core"
import { AfterPackContext, ElectronPlatformName } from "./index"
import { MacConfiguration, MasConfiguration, NotarizeNotaryOptions } from "./options/macOptions"
import { Packager } from "./packager"
import { chooseNotNull, PlatformPackager } from "./platformPackager"
import { ArchiveTarget } from "./targets/ArchiveTarget"
import { PkgTarget, prepareProductBuildArgs } from "./targets/pkg"
import { createCommonTarget, NoOpTarget } from "./targets/targetFactory"
import { isMacOsHighSierra } from "./util/macosVersion"
import { getTemplatePath } from "./util/pathManager"
import * as fs from "fs/promises"
import { notarize } from "@electron/notarize"
import { NotarizeOptionsNotaryTool, NotaryToolKeychainCredentials } from "@electron/notarize/lib/types"
import { MemoLazy } from "builder-util-runtime"
import { resolveFunction } from "./util/resolve"
export type CustomMacSignOptions = SignOptions
export type CustomMacSign = (configuration: CustomMacSignOptions, packager: MacPackager) => Promise<void>
export class MacPackager extends PlatformPackager<MacConfiguration> {
readonly codeSigningInfo = new MemoLazy<CreateKeychainOptions | null, CodeSigningInfo>(
() => {
const cscLink = this.getCscLink()
if (cscLink == null || process.platform !== "darwin") {
return null
}
const selected = {
tmpDir: this.info.tempDirManager,
cscLink,
cscKeyPassword: this.getCscPassword(),
cscILink: chooseNotNull(this.platformSpecificBuildOptions.cscInstallerLink, process.env.CSC_INSTALLER_LINK),
cscIKeyPassword: chooseNotNull(this.platformSpecificBuildOptions.cscInstallerKeyPassword, process.env.CSC_INSTALLER_KEY_PASSWORD),
currentDir: this.projectDir,
}
return selected
},
async selected => {
if (selected) {
return createKeychain(selected).then(result => {
const keychainFile = result.keychainFile
if (keychainFile != null) {
this.info.disposeOnBuildFinish(() => removeKeychain(keychainFile))
}
return result
})
}
return Promise.resolve({ keychainFile: process.env.CSC_KEYCHAIN || null })
}
)
private _iconPath = new Lazy(() => this.getOrConvertIcon("icns"))
constructor(info: Packager) {
super(info, Platform.MAC)
}
get defaultTarget(): Array<string> {
return this.info.framework.macOsDefaultTargets
}
// eslint-disable-next-line @typescript-eslint/no-unused-vars
protected prepareAppInfo(appInfo: AppInfo): AppInfo {
// codesign requires the filename to be normalized to the NFD form
return new AppInfo(this.info, this.platformSpecificBuildOptions.bundleVersion, this.platformSpecificBuildOptions, true)
}
async getIconPath(): Promise<string | null> {
return this._iconPath.value
}
createTargets(targets: Array<string>, mapper: (name: string, factory: (outDir: string) => Target) => void): void {
for (const name of targets) {
switch (name) {
case DIR_TARGET:
break
case "dmg": {
const { DmgTarget } = require("dmg-builder")
mapper(name, outDir => new DmgTarget(this, outDir))
break
}
case "zip":
// https://github.com/electron-userland/electron-builder/issues/2313
mapper(name, outDir => new ArchiveTarget(name, outDir, this, true))
break
case "pkg":
mapper(name, outDir => new PkgTarget(this, outDir))
break
default:
mapper(name, outDir => (name === "mas" || name === "mas-dev" ? new NoOpTarget(name) : createCommonTarget(name, outDir, this)))
break
}
}
}
protected async doPack(
outDir: string,
appOutDir: string,
platformName: ElectronPlatformName,
arch: Arch,
platformSpecificBuildOptions: MacConfiguration,
targets: Array<Target>
): Promise<any> {
switch (arch) {
default: {
return super.doPack(outDir, appOutDir, platformName, arch, platformSpecificBuildOptions, targets)
}
case Arch.universal: {
const outDirName = (arch: Arch) => `${appOutDir}-${Arch[arch]}-temp`
const x64Arch = Arch.x64
const x64AppOutDir = outDirName(x64Arch)
await super.doPack(outDir, x64AppOutDir, platformName, x64Arch, platformSpecificBuildOptions, targets, false, true)
if (this.info.cancellationToken.cancelled) {
return
}
const arm64Arch = Arch.arm64
const arm64AppOutPath = outDirName(arm64Arch)
await super.doPack(outDir, arm64AppOutPath, platformName, arm64Arch, platformSpecificBuildOptions, targets, false, true)
if (this.info.cancellationToken.cancelled) {
return
}
const framework = this.info.framework
log.info(
{
platform: platformName,
arch: Arch[arch],
[`${framework.name}`]: framework.version,
appOutDir: log.filePath(appOutDir),
},
`packaging`
)
const appFile = `${this.appInfo.productFilename}.app`
const { makeUniversalApp } = require("@electron/universal")
await makeUniversalApp({
x64AppPath: path.join(x64AppOutDir, appFile),
arm64AppPath: path.join(arm64AppOutPath, appFile),
outAppPath: path.join(appOutDir, appFile),
force: true,
mergeASARs: platformSpecificBuildOptions.mergeASARs ?? true,
singleArchFiles: platformSpecificBuildOptions.singleArchFiles,
x64ArchFiles: platformSpecificBuildOptions.x64ArchFiles,
})
await fs.rm(x64AppOutDir, { recursive: true, force: true })
await fs.rm(arm64AppOutPath, { recursive: true, force: true })
// Give users a final opportunity to perform things on the combined universal package before signing
const packContext: AfterPackContext = {
appOutDir,
outDir,
arch,
targets,
packager: this,
electronPlatformName: platformName,
}
await this.info.afterPack(packContext)
if (this.info.cancellationToken.cancelled) {
return
}
await this.doSignAfterPack(outDir, appOutDir, platformName, arch, platformSpecificBuildOptions, targets)
break
}
}
}
async pack(outDir: string, arch: Arch, targets: Array<Target>, taskManager: AsyncTaskManager): Promise<void> {
const hasMas = targets.length !== 0 && targets.some(it => it.name === "mas" || it.name === "mas-dev")
const prepackaged = this.packagerOptions.prepackaged
for (const target of targets) {
const targetName = target.name
if (!(targetName === "mas" || targetName === "mas-dev")) {
continue
}
const masBuildOptions = deepAssign({}, this.platformSpecificBuildOptions, this.config.mas)
if (targetName === "mas-dev") {
deepAssign(masBuildOptions, this.config.masDev, {
type: "development",
})
}
const targetOutDir = path.join(outDir, `${targetName}${getArchSuffix(arch, this.platformSpecificBuildOptions.defaultArch)}`)
if (prepackaged == null) {
await this.doPack(outDir, targetOutDir, "mas", arch, masBuildOptions, [target])
await this.sign(path.join(targetOutDir, `${this.appInfo.productFilename}.app`), targetOutDir, masBuildOptions, arch)
} else {
await this.sign(prepackaged, targetOutDir, masBuildOptions, arch)
}
}
if (!hasMas || targets.length > 1) {
const appPath = prepackaged == null ? path.join(this.computeAppOutDir(outDir, arch), `${this.appInfo.productFilename}.app`) : prepackaged
if (prepackaged == null) {
await this.doPack(outDir, path.dirname(appPath), this.platform.nodeName as ElectronPlatformName, arch, this.platformSpecificBuildOptions, targets)
}
this.packageInDistributableFormat(appPath, arch, targets, taskManager)
}
}
private async sign(appPath: string, outDir: string | null, masOptions: MasConfiguration | null, arch: Arch | null): Promise<boolean> {
if (!isSignAllowed()) {
return false
}
const isMas = masOptions != null
const options = masOptions == null ? this.platformSpecificBuildOptions : masOptions
const qualifier = options.identity
if (qualifier === null) {
if (this.forceCodeSigning) {
throw new InvalidConfigurationError("identity explicitly is set to null, but forceCodeSigning is set to true")
}
log.info({ reason: "identity explicitly is set to null" }, "skipped macOS code signing")
return false
}
const keychainFile = (await this.codeSigningInfo.value).keychainFile
const explicitType = options.type
const type = explicitType || "distribution"
const isDevelopment = type === "development"
const certificateTypes = getCertificateTypes(isMas, isDevelopment)
let identity = null
for (const certificateType of certificateTypes) {
identity = await findIdentity(certificateType, qualifier, keychainFile)
if (identity != null) {
break
}
}
if (identity == null) {
if (!isMas && !isDevelopment && explicitType !== "distribution") {
identity = await findIdentity("Mac Developer", qualifier, keychainFile)
if (identity != null) {
log.warn("Mac Developer is used to sign app — it is only for development and testing, not for production")
}
}
if (!options.sign && identity == null) {
await reportError(isMas, certificateTypes, qualifier, keychainFile, this.forceCodeSigning)
return false
}
}
if (!isMacOsHighSierra()) {
throw new InvalidConfigurationError("macOS High Sierra 10.13.6 is required to sign")
}
let filter = options.signIgnore
if (Array.isArray(filter)) {
if (filter.length == 0) {
filter = null
}
} else if (filter != null) {
filter = filter.length === 0 ? null : [filter]
}
const filterRe = filter == null ? null : filter.map(it => new RegExp(it))
let binaries = options.binaries || undefined
if (binaries) {
// Accept absolute paths for external binaries, else resolve relative paths from the artifact's app Contents path.
binaries = await Promise.all(
binaries.map(async destination => {
if (await statOrNull(destination)) {
return destination
}
return path.resolve(appPath, destination)
})
)
log.info({ binaries }, "signing additional user-defined binaries")
}
const customSignOptions: MasConfiguration | MacConfiguration = (isMas ? masOptions : this.platformSpecificBuildOptions) || this.platformSpecificBuildOptions
const signOptions: SignOptions = {
identityValidation: false,
// https://github.com/electron-userland/electron-builder/issues/1699
// kext are signed by the chipset manufacturers. You need a special certificate (only available on request) from Apple to be able to sign kext.
ignore: (file: string) => {
if (filterRe != null) {
for (const regExp of filterRe) {
if (regExp.test(file)) {
return true
}
}
}
return (
file.endsWith(".kext") ||
file.startsWith("/Contents/PlugIns", appPath.length) ||
file.includes("/node_modules/puppeteer/.local-chromium") ||
file.includes("/node_modules/playwright-firefox/.local-browsers") ||
file.includes("/node_modules/playwright/.local-browsers")
)
/* Those are browser automating modules, browser (chromium, nightly) cannot be signed
https://github.com/electron-userland/electron-builder/issues/2010
https://github.com/electron-userland/electron-builder/issues/5383
*/
},
identity: identity ? identity.hash || identity.name : undefined,
type,
platform: isMas ? "mas" : "darwin",
version: this.config.electronVersion || undefined,
app: appPath,
keychain: keychainFile || undefined,
binaries,
// https://github.com/electron-userland/electron-builder/issues/1480
strictVerify: options.strictVerify,
preAutoEntitlements: options.preAutoEntitlements,
optionsForFile: await this.getOptionsForFile(appPath, isMas, customSignOptions),
provisioningProfile: customSignOptions.provisioningProfile || undefined,
}
await this.doSign(signOptions, customSignOptions, identity)
// https://github.com/electron-userland/electron-builder/issues/1196#issuecomment-312310209
if (masOptions != null && !isDevelopment) {
const certType = isDevelopment ? "Mac Developer" : "3rd Party Mac Developer Installer"
const masInstallerIdentity = await findIdentity(certType, masOptions.identity, keychainFile)
if (masInstallerIdentity == null) {
throw new InvalidConfigurationError(`Cannot find valid "${certType}" identity to sign MAS installer, please see https://electron.build/code-signing`)
}
// mas uploaded to AppStore, so, use "-" instead of space for name
const artifactName = this.expandArtifactNamePattern(masOptions, "pkg", arch)
const artifactPath = path.join(outDir!, artifactName)
await this.doFlat(appPath, artifactPath, masInstallerIdentity, keychainFile)
await this.dispatchArtifactCreated(artifactPath, null, Arch.x64, this.computeSafeArtifactName(artifactName, "pkg", arch, true, this.platformSpecificBuildOptions.defaultArch))
}
if (!isMas) {
await this.notarizeIfProvided(appPath, options)
}
return true
}
private async getOptionsForFile(appPath: string, isMas: boolean, customSignOptions: MacConfiguration) {
const resourceList = await this.resourceList
const entitlementsSuffix = isMas ? "mas" : "mac"
const getEntitlements = (filePath: string) => {
// check if root app, then use main entitlements
if (filePath === appPath) {
if (customSignOptions.entitlements) {
return customSignOptions.entitlements
}
const p = `entitlements.${entitlementsSuffix}.plist`
if (resourceList.includes(p)) {
return path.join(this.info.buildResourcesDir, p)
} else {
return getTemplatePath("entitlements.mac.plist")
}
}
// It's a login helper...
if (filePath.includes("Library/LoginItems")) {
return customSignOptions.entitlementsLoginHelper
}
// Only remaining option is that it's inherited entitlements
if (customSignOptions.entitlementsInherit) {
return customSignOptions.entitlementsInherit
}
const p = `entitlements.${entitlementsSuffix}.inherit.plist`
if (resourceList.includes(p)) {
return path.join(this.info.buildResourcesDir, p)
} else {
return getTemplatePath("entitlements.mac.plist")
}
}
const requirements = isMas || this.platformSpecificBuildOptions.requirements == null ? undefined : await this.getResource(this.platformSpecificBuildOptions.requirements)
// harden by default for mac builds. Only harden mas builds if explicitly true (backward compatibility)
const hardenedRuntime = isMas ? customSignOptions.hardenedRuntime === true : customSignOptions.hardenedRuntime !== false
const optionsForFile: (filePath: string) => PerFileSignOptions = filePath => {
const entitlements = getEntitlements(filePath)
const args = {
entitlements: entitlements || undefined,
hardenedRuntime: hardenedRuntime ?? undefined,
timestamp: customSignOptions.timestamp || undefined,
requirements: requirements || undefined,
additionalArguments: customSignOptions.additionalArguments || [],
}
log.debug({ file: log.filePath(filePath), ...args }, "selecting signing options")
return args
}
return optionsForFile
}
//noinspection JSMethodCanBeStatic
protected async doSign(opts: SignOptions, customSignOptions: MacConfiguration, identity: Identity | null): Promise<void> {
const customSign = await resolveFunction(this.appInfo.type, customSignOptions.sign, "sign")
const { app, platform, type, provisioningProfile } = opts
log.info(
{
file: log.filePath(app),
platform,
type,
identityName: identity?.name || "none",
identityHash: identity?.hash || "none",
provisioningProfile: provisioningProfile || "none",
},
customSign ? "executing custom sign" : "signing"
)
return customSign ? Promise.resolve(customSign(opts, this)) : sign(opts)
}
//noinspection JSMethodCanBeStatic
protected async doFlat(appPath: string, outFile: string, identity: Identity, keychain: string | null | undefined): Promise<any> {
// productbuild doesn't created directory for out file
await mkdir(path.dirname(outFile), { recursive: true })
const args = prepareProductBuildArgs(identity, keychain)
args.push("--component", appPath, "/Applications")
args.push(outFile)
return await exec("productbuild", args)
}
public getElectronSrcDir(dist: string) {
return path.resolve(this.projectDir, dist, this.info.framework.distMacOsAppName)
}
public getElectronDestinationDir(appOutDir: string) {
return path.join(appOutDir, this.info.framework.distMacOsAppName)
}
// todo fileAssociations
async applyCommonInfo(appPlist: any, contentsPath: string) {
const appInfo = this.appInfo
const appFilename = appInfo.productFilename
// https://github.com/electron-userland/electron-builder/issues/1278
appPlist.CFBundleExecutable = appFilename.endsWith(" Helper") ? appFilename.substring(0, appFilename.length - " Helper".length) : appFilename
const icon = await this.getIconPath()
if (icon != null) {
const oldIcon = appPlist.CFBundleIconFile
const resourcesPath = path.join(contentsPath, "Resources")
if (oldIcon != null) {
await unlinkIfExists(path.join(resourcesPath, oldIcon))
}
const iconFileName = "icon.icns"
appPlist.CFBundleIconFile = iconFileName
await copyFile(icon, path.join(resourcesPath, iconFileName))
}
appPlist.CFBundleName = appInfo.productName
appPlist.CFBundleDisplayName = appInfo.productName
const minimumSystemVersion = this.platformSpecificBuildOptions.minimumSystemVersion
if (minimumSystemVersion != null) {
appPlist.LSMinimumSystemVersion = minimumSystemVersion
}
appPlist.CFBundleShortVersionString = this.platformSpecificBuildOptions.bundleShortVersion || appInfo.version
appPlist.CFBundleVersion = appInfo.buildVersion
use(this.platformSpecificBuildOptions.category || (this.config as any).category, it => (appPlist.LSApplicationCategoryType = it))
appPlist.NSHumanReadableCopyright = appInfo.copyright
if (this.platformSpecificBuildOptions.darkModeSupport) {
appPlist.NSRequiresAquaSystemAppearance = false
}
const extendInfo = this.platformSpecificBuildOptions.extendInfo
if (extendInfo != null) {
Object.assign(appPlist, extendInfo)
}
}
protected async signApp(packContext: AfterPackContext, isAsar: boolean): Promise<boolean> {
const readDirectoryAndSign = async (sourceDirectory: string, directories: string[], filter: (file: string) => boolean): Promise<boolean> => {
await BluebirdPromise.map(directories, async (file: string): Promise<null> => {
if (filter(file)) {
await this.sign(path.join(sourceDirectory, file), null, null, null)
}
return null
})
return true
}
const appFileName = `${this.appInfo.productFilename}.app`
await readDirectoryAndSign(packContext.appOutDir, await readdir(packContext.appOutDir), file => file === appFileName)
if (!isAsar) {
return true
}
const outResourcesDir = path.join(packContext.appOutDir, "resources", "app.asar.unpacked")
await readDirectoryAndSign(outResourcesDir, await orIfFileNotExist(readdir(outResourcesDir), []), file => file.endsWith(".app"))
return true
}
private async notarizeIfProvided(appPath: string, buildOptions: MacConfiguration) {
const notarizeOptions = buildOptions.notarize
if (notarizeOptions === false) {
log.info({ reason: "`notarize` options were set explicitly `false`" }, "skipped macOS notarization")
return
}
const options = this.getNotarizeOptions(appPath)
if (!options) {
log.warn({ reason: "`notarize` options were unable to be generated" }, "skipped macOS notarization")
return
}
await notarize(options)
log.info(null, "notarization successful")
}
private getNotarizeOptions(appPath: string): NotarizeOptionsNotaryTool | undefined {
let teamId = process.env.APPLE_TEAM_ID
const appleId = process.env.APPLE_ID
const appleIdPassword = process.env.APPLE_APP_SPECIFIC_PASSWORD
const options = this.platformSpecificBuildOptions.notarize
const tool = "notarytool"
const optionsTeamId = (options as NotarizeNotaryOptions)?.teamId
if (optionsTeamId) {
log.warn(null, "Please specify notarization Team ID in the `APPLE_TEAM_ID` env var instead of `notarize.teamId`")
teamId = optionsTeamId
}
// option 1: app specific password
if (appleId || appleIdPassword) {
if (!appleId) {
throw new InvalidConfigurationError(`APPLE_ID env var needs to be set`)
}
if (!appleIdPassword) {
throw new InvalidConfigurationError(`APPLE_APP_SPECIFIC_PASSWORD env var needs to be set`)
}
if (!teamId) {
throw new InvalidConfigurationError(`APPLE_TEAM_ID env var needs to be set`)
}
return { tool, appPath, appleId, appleIdPassword, teamId }
}
// option 2: API key
const appleApiKey = process.env.APPLE_API_KEY
const appleApiKeyId = process.env.APPLE_API_KEY_ID
const appleApiIssuer = process.env.APPLE_API_ISSUER
if (appleApiKey || appleApiKeyId || appleApiIssuer) {
if (!appleApiKey || !appleApiKeyId || !appleApiIssuer) {
throw new InvalidConfigurationError(`Env vars APPLE_API_KEY, APPLE_API_KEY_ID and APPLE_API_ISSUER need to be set`)
}
return { tool, appPath, appleApiKey, appleApiKeyId, appleApiIssuer }
}
// option 3: keychain
const keychain = process.env.APPLE_KEYCHAIN
const keychainProfile = process.env.APPLE_KEYCHAIN_PROFILE
if (keychainProfile) {
let args: NotaryToolKeychainCredentials = { keychainProfile }
if (keychain) {
args = { ...args, keychain }
}
return { tool, appPath, ...args }
}
// if no credentials provided, skip silently
return undefined
}
}
function getCertificateTypes(isMas: boolean, isDevelopment: boolean): CertType[] {
if (isDevelopment) {
return isMas ? ["Mac Developer", "Apple Development"] : ["Mac Developer", "Developer ID Application"]
}
return isMas ? ["Apple Distribution", "3rd Party Mac Developer Application"] : ["Developer ID Application"]
}