Skip to content
Merged
Show file tree
Hide file tree
Changes from 17 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/chilly-starfishes-lie.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"app-builder-lib": patch
---

chore: replace the plist functionality in app-builder-bin with plist
4 changes: 3 additions & 1 deletion packages/app-builder-lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@
"semver": "^7.3.8",
"tar": "^6.1.12",
"temp-file": "^3.4.0",
"tiny-async-pool": "1.3.0"
"tiny-async-pool": "1.3.0",
"plist":"3.1.0"
},
"///": "babel in devDependencies for proton tests",
"devDependencies": {
Expand Down Expand Up @@ -108,6 +109,7 @@
"@types/semver": "7.3.8",
"@types/tar": "^6.1.3",
"@types/tiny-async-pool": "^1",
"@types/plist": "3.0.5",
"dmg-builder": "workspace:*",
"electron-builder-squirrel-windows": "workspace:*",
"toml": "^3.0.0"
Expand Down
78 changes: 35 additions & 43 deletions packages/app-builder-lib/src/electron/electronMac.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import { asArray, copyOrLinkFile, getPlatformIconFileName, InvalidConfigurationError, log, unlinkIfExists } from "builder-util"
import { rename, utimes } from "fs/promises"
import * as path from "path"
import * as fs from "fs"
import { filterCFBundleIdentifier } from "../appInfo"
import { AsarIntegrity } from "../asar/integrity"
import { MacPackager } from "../macPackager"
import { normalizeExt } from "../platformPackager"
import { executeAppBuilderAndWriteJson, executeAppBuilderAsJson } from "../util/appBuilder"
import { savePlistFile, parsePlistFile, PlistObject, PlistValue } from "../util/plist"
import { createBrandingOpts } from "./ElectronFramework"

function doRename(basePath: string, oldName: string, newName: string) {
Expand Down Expand Up @@ -69,38 +70,26 @@ export async function createMacApp(packager: MacPackager, appOutDir: string, asa
const helperGPUPlistFilename = path.join(frameworksPath, `${electronBranding.productName} Helper (GPU).app`, "Contents", "Info.plist")
const helperLoginPlistFilename = path.join(loginItemPath, `${electronBranding.productName} Login Helper.app`, "Contents", "Info.plist")

const plistContent: Array<any> = await executeAppBuilderAsJson([
"decode-plist",
"-f",
appPlistFilename,
"-f",
helperPlistFilename,
"-f",
helperEHPlistFilename,
"-f",
helperNPPlistFilename,
"-f",
helperRendererPlistFilename,
"-f",
helperPluginPlistFilename,
"-f",
helperGPUPlistFilename,
"-f",
helperLoginPlistFilename,
])
const safeParsePlistFile = async (filePath: string): Promise<PlistValue | null> => {
if (!fs.existsSync(filePath)) {
return null
}
return await parsePlistFile(filePath)
}

if (plistContent[0] == null) {
const appPlist = (await safeParsePlistFile(appPlistFilename)) as PlistObject
if (appPlist == null) {
throw new Error("corrupted Electron dist")
}

const appPlist = plistContent[0]!
const helperPlist = plistContent[1]!
const helperEHPlist = plistContent[2]
const helperNPPlist = plistContent[3]
const helperRendererPlist = plistContent[4]
const helperPluginPlist = plistContent[5]
const helperGPUPlist = plistContent[6]
const helperLoginPlist = plistContent[7]
// Replace the multiple parsePlistFile calls with:
const helperPlist = (await safeParsePlistFile(helperPlistFilename)) as PlistObject
const helperEHPlist = (await safeParsePlistFile(helperEHPlistFilename)) as string | null
const helperNPPlist = (await safeParsePlistFile(helperNPPlistFilename)) as string | null
const helperRendererPlist = (await safeParsePlistFile(helperRendererPlistFilename)) as string | null
const helperPluginPlist = (await safeParsePlistFile(helperPluginPlistFilename)) as string | null
const helperGPUPlist = (await safeParsePlistFile(helperGPUPlistFilename)) as string | null
const helperLoginPlist = (await safeParsePlistFile(helperLoginPlistFilename)) as PlistObject | null

const buildMetadata = packager.config

Expand Down Expand Up @@ -222,39 +211,42 @@ export async function createMacApp(packager: MacPackager, appOutDir: string, asa
)

// `CFBundleDocumentTypes` may be defined in `mac.extendInfo`, so we need to merge it in that case
appPlist.CFBundleDocumentTypes = [...(appPlist.CFBundleDocumentTypes || []), ...documentTypes]
appPlist.CFBundleDocumentTypes = [...((appPlist.CFBundleDocumentTypes as PlistValue[]) || []), ...documentTypes]
}

if (asarIntegrity != null) {
appPlist.ElectronAsarIntegrity = asarIntegrity
appPlist.ElectronAsarIntegrity = JSON.parse(JSON.stringify(asarIntegrity))
}

const plistDataToWrite: any = {
[appPlistFilename]: appPlist,
[helperPlistFilename]: helperPlist,
}
if (helperEHPlist != null) {
plistDataToWrite[helperEHPlistFilename] = helperEHPlist
await savePlistFile(helperEHPlistFilename, helperEHPlist)
}

if (helperNPPlist != null) {
plistDataToWrite[helperNPPlistFilename] = helperNPPlist
await savePlistFile(helperNPPlistFilename, helperNPPlist)
}

if (helperRendererPlist != null) {
plistDataToWrite[helperRendererPlistFilename] = helperRendererPlist
await savePlistFile(helperRendererPlistFilename, helperRendererPlist)
}

if (helperPluginPlist != null) {
plistDataToWrite[helperPluginPlistFilename] = helperPluginPlist
await savePlistFile(helperPluginPlistFilename, helperPluginPlist)
}

if (helperGPUPlist != null) {
plistDataToWrite[helperGPUPlistFilename] = helperGPUPlist
await savePlistFile(helperGPUPlistFilename, helperGPUPlist)
}

if (helperLoginPlist != null) {
plistDataToWrite[helperLoginPlistFilename] = helperLoginPlist
await savePlistFile(helperLoginPlistFilename, helperLoginPlist)
}

await savePlistFile(appPlistFilename, appPlist)
await savePlistFile(helperPlistFilename, helperPlist)

await Promise.all([
executeAppBuilderAndWriteJson(["encode-plist"], plistDataToWrite),
doRename(path.join(contentsPath, "MacOS"), electronBranding.productName, appPlist.CFBundleExecutable),
doRename(path.join(contentsPath, "MacOS"), electronBranding.productName, appPlist.CFBundleExecutable as string),
unlinkIfExists(path.join(appOutDir, "LICENSE")),
unlinkIfExists(path.join(appOutDir, "LICENSES.chromium.html")),
])
Expand Down
14 changes: 6 additions & 8 deletions packages/app-builder-lib/src/frameworks/LibUiFramework.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { Platform } from "../core"
import { Framework, PrepareApplicationStageDirectoryOptions } from "../Framework"
import { LinuxPackager } from "../linuxPackager"
import { MacPackager } from "../macPackager"
import { executeAppBuilderAndWriteJson } from "../util/appBuilder"
import { savePlistFile } from "../util/plist"

export class LibUiFramework implements Framework {
readonly name: string = "libui"
Expand Down Expand Up @@ -71,16 +71,14 @@ export class LibUiFramework implements Framework {
NSHighResolutionCapable: true,
}
await packager.applyCommonInfo(appPlist, appContentsDir)
await Promise.all([
executeAppBuilderAndWriteJson(["encode-plist"], { [path.join(appContentsDir, "Info.plist")]: appPlist }),
writeExecutableMain(
path.join(appContentsDir, "MacOS", appPlist.CFBundleExecutable),
`#!/bin/sh
await savePlistFile(path.join(appContentsDir, "Info.plist"), appPlist)
await writeExecutableMain(
path.join(appContentsDir, "MacOS", appPlist.CFBundleExecutable),
`#!/bin/sh
DIR=$(dirname "$0")
"$DIR/node" "$DIR/../Resources/app/${options.packager.info.metadata.main || "index.js"}"
`
),
])
)
}

private async prepareLinuxApplicationStageDirectory(options: PrepareApplicationStageDirectoryOptions) {
Expand Down
8 changes: 3 additions & 5 deletions packages/app-builder-lib/src/targets/pkg.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { findIdentity, Identity } from "../codeSign/macCodeSign"
import { Target } from "../core"
import { MacPackager } from "../macPackager"
import { PkgOptions } from "../options/pkgOptions"
import { executeAppBuilderAndWriteJson, executeAppBuilderAsJson } from "../util/appBuilder"
import { savePlistFile, parsePlistFile, PlistObject } from "../util/plist"
import { getNotLocalizedLicenseFile } from "../util/license"

const certType = "Developer ID Installer"
Expand Down Expand Up @@ -182,9 +182,7 @@ export class PkgTarget extends Target {
await exec("pkgbuild", ["--analyze", "--root", rootPath, propertyListOutputFile])

// process the template plist
const plistInfo = (await executeAppBuilderAsJson<Array<any>>(["decode-plist", "-f", propertyListOutputFile]))[0].filter(
(it: any) => it.RootRelativeBundlePath !== "Electron.dSYM"
)
const plistInfo = ((await parsePlistFile(propertyListOutputFile)) as PlistObject[]).filter((it: PlistObject) => it.RootRelativeBundlePath !== "Electron.dSYM")
let packageInfo: any = {}
if (plistInfo.length > 0) {
packageInfo = plistInfo[0]
Expand Down Expand Up @@ -237,7 +235,7 @@ export class PkgTarget extends Target {
args.push("--scripts", scriptsDir)
}
if (plistInfo.length > 0) {
await executeAppBuilderAndWriteJson(["encode-plist"], { [propertyListOutputFile]: plistInfo })
await savePlistFile(propertyListOutputFile, plistInfo)
}

args.push(packageOutputFile)
Expand Down
39 changes: 39 additions & 0 deletions packages/app-builder-lib/src/util/plist.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
import { build, parse } from "plist"
import * as fs from "fs"

type PlistValue = string | number | boolean | Date | PlistObject | PlistValue[]

interface PlistObject {
[key: string]: PlistValue
}

function sortObjectKeys(obj: PlistValue): PlistValue {
if (obj === null || typeof obj !== "object") {
return obj
}

if (Array.isArray(obj)) {
return obj.map(sortObjectKeys)
}

const result: PlistObject = {}
Object.keys(obj)
.sort()
.forEach(key => {
result[key] = sortObjectKeys((obj as PlistObject)[key])
})
return result
}

export async function savePlistFile(path: string, data: PlistValue): Promise<void> {
const sortedData = sortObjectKeys(data)
const plist = build(sortedData)
await fs.promises.writeFile(path, plist)
}

export async function parsePlistFile(file: string): Promise<PlistValue> {
const data = await fs.promises.readFile(file, "utf8")
return parse(data) as PlistValue
}

export type { PlistValue, PlistObject }
6 changes: 6 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions test/src/helpers/packTester.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { PublishManager } from "app-builder-lib"
import { readAsar } from "app-builder-lib/out/asar/asar"
import { computeArchToTargetNamesMap } from "app-builder-lib/out/targets/targetFactory"
import { getLinuxToolsPath } from "app-builder-lib/out/targets/tools"
import { executeAppBuilderAsJson } from "app-builder-lib/out/util/appBuilder"
import { parsePlistFile, PlistObject } from "app-builder-lib/out/util/plist"
import { AsarIntegrity } from "app-builder-lib/src/asar/integrity"
import { addValue, copyDir, deepAssign, exec, executeFinally, FileCopier, getPath7x, getPath7za, log, spawn, USE_HARD_LINKS, walk } from "builder-util"
import { CancellationToken, UpdateFileInfo } from "builder-util-runtime"
Expand Down Expand Up @@ -330,7 +330,7 @@ function parseDebControl(info: string): any {
async function checkMacResult(packager: Packager, packagerOptions: PackagerOptions, checkOptions: AssertPackOptions, packedAppDir: string) {
const appInfo = packager.appInfo
const plistPath = path.join(packedAppDir, "Contents", "Info.plist")
const info = (await executeAppBuilderAsJson<Array<any>>(["decode-plist", "-f", plistPath]))[0]
const info = (await parsePlistFile(plistPath)) as PlistObject

expect(info).toMatchObject({
CFBundleVersion: info.CFBundleVersion === "50" ? "50" : `${appInfo.version}.${process.env.TRAVIS_BUILD_NUMBER || process.env.CIRCLE_BUILD_NUM}`,
Expand All @@ -352,7 +352,7 @@ async function checkMacResult(packager: Packager, packagerOptions: PackagerOptio
delete info.NSRequiresAquaSystemAppearance
delete info.NSQuitAlwaysKeepsWindows
if (info.NSAppTransportSecurity != null) {
delete info.NSAppTransportSecurity.NSAllowsArbitraryLoads
delete (info.NSAppTransportSecurity as PlistObject).NSAllowsArbitraryLoads
}
// test value
if (info.LSMinimumSystemVersion !== "10.12.0") {
Expand All @@ -363,7 +363,7 @@ async function checkMacResult(packager: Packager, packagerOptions: PackagerOptio

if (checksumData != null) {
for (const name of Object.keys(checksumData)) {
checksumData[name] = { algorithm: "SHA256", hash: "hash" }
;(checksumData as Record<string, any>)[name] = { algorithm: "SHA256", hash: "hash" }
}
snapshot.ElectronAsarIntegrity = checksumData
}
Expand Down