-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
Copy pathupdateInfoBuilder.ts
277 lines (245 loc) · 10.3 KB
/
updateInfoBuilder.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
import BluebirdPromise from "bluebird-lst"
import { Arch, log, safeStringifyJson, serializeToYaml } from "builder-util"
import { GenericServerOptions, PublishConfiguration, UpdateInfo, WindowsUpdateInfo } from "builder-util-runtime"
import { outputFile, outputJson, readFile } from "fs-extra"
import { Lazy } from "lazy-val"
import * as path from "path"
import * as semver from "semver"
import { Platform } from "../core"
import { ReleaseInfo } from "../options/PlatformSpecificBuildOptions"
import { Packager } from "../packager"
import { ArtifactCreated } from "../packagerApi"
import { PlatformPackager } from "../platformPackager"
import { hashFile } from "../util/hash"
import { computeDownloadUrl, getPublishConfigsForUpdateInfo } from "./PublishManager"
async function getReleaseInfo(packager: PlatformPackager<any>) {
const releaseInfo: ReleaseInfo = { ...(packager.platformSpecificBuildOptions.releaseInfo || packager.config.releaseInfo) }
if (releaseInfo.releaseNotes == null) {
const releaseNotesFile = await packager.getResource(
releaseInfo.releaseNotesFile,
`release-notes-${packager.platform.buildConfigurationKey}.md`,
`release-notes-${packager.platform.name}.md`,
`release-notes-${packager.platform.nodeName}.md`,
"release-notes.md"
)
const releaseNotes = releaseNotesFile == null ? null : await readFile(releaseNotesFile, "utf-8")
// to avoid undefined in the file, check for null
if (releaseNotes != null) {
releaseInfo.releaseNotes = releaseNotes
}
}
delete releaseInfo.releaseNotesFile
return releaseInfo
}
function isGenerateUpdatesFilesForAllChannels(packager: PlatformPackager<any>) {
const value = packager.platformSpecificBuildOptions.generateUpdatesFilesForAllChannels
return value == null ? packager.config.generateUpdatesFilesForAllChannels : value
}
/**
if this is an "alpha" version, we need to generate only the "alpha" .yml file
if this is a "beta" version, we need to generate both the "alpha" and "beta" .yml file
if this is a "stable" version, we need to generate all the "alpha", "beta" and "stable" .yml file
*/
function computeChannelNames(packager: PlatformPackager<any>, publishConfig: PublishConfiguration): Array<string> {
const currentChannel: string = (publishConfig as GenericServerOptions).channel || "latest"
// for GitHub should be pre-release way be used
if (currentChannel === "alpha" || publishConfig.provider === "github" || !isGenerateUpdatesFilesForAllChannels(packager)) {
return [currentChannel]
}
switch (currentChannel) {
case "beta":
return [currentChannel, "alpha"]
case "latest":
return [currentChannel, "alpha", "beta"]
default:
return [currentChannel]
}
}
function getUpdateInfoFileName(channel: string, packager: PlatformPackager<any>, arch: Arch | null): string {
const osSuffix = packager.platform === Platform.WINDOWS ? "" : `-${packager.platform.buildConfigurationKey}`
return `${channel}${osSuffix}${getArchPrefixForUpdateFile(arch, packager)}.yml`
}
function getArchPrefixForUpdateFile(arch: Arch | null, packager: PlatformPackager<any>) {
if (arch == null || arch === Arch.x64 || packager.platform !== Platform.LINUX) {
return ""
}
return arch === Arch.armv7l ? "-arm" : `-${Arch[arch]}`
}
export interface UpdateInfoFileTask {
readonly file: string
readonly info: UpdateInfo
readonly publishConfiguration: PublishConfiguration
readonly packager: PlatformPackager<any>
}
function computeIsisElectronUpdater1xCompatibility(updaterCompatibility: string | null, publishConfiguration: PublishConfiguration, packager: Packager) {
if (updaterCompatibility != null) {
return semver.satisfies("1.0.0", updaterCompatibility)
}
// spaces is a new publish provider, no need to keep backward compatibility
if (publishConfiguration.provider === "spaces") {
return false
}
const updaterVersion = packager.metadata.dependencies == null ? null : packager.metadata.dependencies["electron-updater"]
return updaterVersion == null || semver.lt(updaterVersion, "4.0.0")
}
/** @internal */
export async function createUpdateInfoTasks(event: ArtifactCreated, _publishConfigs: Array<PublishConfiguration>): Promise<Array<UpdateInfoFileTask>> {
const packager = event.packager
const publishConfigs = await getPublishConfigsForUpdateInfo(packager, _publishConfigs, event.arch)
if (publishConfigs == null || publishConfigs.length === 0) {
return []
}
const outDir = event.target!.outDir
const version = packager.appInfo.version
const sha2 = new Lazy<string>(() => hashFile(event.file, "sha256", "hex"))
const isMac = packager.platform === Platform.MAC
const createdFiles = new Set<string>()
const sharedInfo = await createUpdateInfo(version, event, await getReleaseInfo(packager))
const tasks: Array<UpdateInfoFileTask> = []
const electronUpdaterCompatibility = packager.platformSpecificBuildOptions.electronUpdaterCompatibility || packager.config.electronUpdaterCompatibility || ">=2.15"
for (const publishConfiguration of publishConfigs) {
let dir = outDir
if (publishConfigs.length > 1 && publishConfiguration !== publishConfigs[0]) {
dir = path.join(outDir, publishConfiguration.provider)
}
let isElectronUpdater1xCompatibility = computeIsisElectronUpdater1xCompatibility(electronUpdaterCompatibility, publishConfiguration, packager.info)
let info = sharedInfo
// noinspection JSDeprecatedSymbols
if (isElectronUpdater1xCompatibility && packager.platform === Platform.WINDOWS) {
info = {
...info,
}
// noinspection JSDeprecatedSymbols
;(info as WindowsUpdateInfo).sha2 = await sha2.value
}
if (event.safeArtifactName != null && publishConfiguration.provider === "github") {
const newFiles = info.files.slice()
newFiles[0].url = event.safeArtifactName
info = {
...info,
files: newFiles,
path: event.safeArtifactName,
}
}
for (const channel of computeChannelNames(packager, publishConfiguration)) {
if (isMac && isElectronUpdater1xCompatibility && event.file.endsWith(".zip")) {
// write only for first channel (generateUpdatesFilesForAllChannels is a new functionality, no need to generate old mac update info file)
isElectronUpdater1xCompatibility = false
await writeOldMacInfo(publishConfiguration, outDir, dir, channel, createdFiles, version, packager)
}
const updateInfoFile = path.join(dir, getUpdateInfoFileName(channel, packager, event.arch))
if (createdFiles.has(updateInfoFile)) {
continue
}
createdFiles.add(updateInfoFile)
// artifact should be uploaded only to designated publish provider
tasks.push({
file: updateInfoFile,
info,
publishConfiguration,
packager,
})
}
}
return tasks
}
async function createUpdateInfo(version: string, event: ArtifactCreated, releaseInfo: ReleaseInfo): Promise<UpdateInfo> {
const customUpdateInfo = event.updateInfo
const url = path.basename(event.file)
const sha512 = (customUpdateInfo == null ? null : customUpdateInfo.sha512) || (await hashFile(event.file))
const files = [{ url, sha512 }]
const result: UpdateInfo = {
// @ts-ignore
version,
// @ts-ignore
files,
// @ts-ignore
path: url /* backward compatibility, electron-updater 1.x - electron-updater 2.15.0 */,
// @ts-ignore
sha512 /* backward compatibility, electron-updater 1.x - electron-updater 2.15.0 */,
...(releaseInfo as UpdateInfo),
}
if (customUpdateInfo != null) {
// file info or nsis web installer packages info
Object.assign("sha512" in customUpdateInfo ? files[0] : result, customUpdateInfo)
}
return result
}
export async function writeUpdateInfoFiles(updateInfoFileTasks: Array<UpdateInfoFileTask>, packager: Packager) {
// zip must be first and zip info must be used for old path/sha512 properties in the update info
updateInfoFileTasks.sort((a, b) => (a.info.files[0].url.endsWith(".zip") ? 0 : 100) - (b.info.files[0].url.endsWith(".zip") ? 0 : 100))
const updateChannelFileToInfo = new Map<string, UpdateInfoFileTask>()
for (const task of updateInfoFileTasks) {
// https://github.com/electron-userland/electron-builder/pull/2994
const key = `${task.file}@${safeStringifyJson(task.publishConfiguration, new Set(["releaseType"]))}`
const existingTask = updateChannelFileToInfo.get(key)
if (existingTask == null) {
updateChannelFileToInfo.set(key, task)
continue
}
existingTask.info.files.push(...task.info.files)
}
const releaseDate = new Date().toISOString()
await BluebirdPromise.map(
updateChannelFileToInfo.values(),
async task => {
const publishConfig = task.publishConfiguration
if (publishConfig.publishAutoUpdate === false) {
log.debug(
{
provider: publishConfig.provider,
reason: "publishAutoUpdate is set to false",
},
"auto update metadata file not published"
)
return
}
if (task.info.releaseDate == null) {
task.info.releaseDate = releaseDate
}
const fileContent = Buffer.from(serializeToYaml(task.info, false, true))
await outputFile(task.file, fileContent)
packager.dispatchArtifactCreated({
file: task.file,
fileContent,
arch: null,
packager: task.packager,
target: null,
publishConfig,
})
},
{ concurrency: 4 }
)
}
// backward compatibility - write json file
async function writeOldMacInfo(
publishConfig: PublishConfiguration,
outDir: string,
dir: string,
channel: string,
createdFiles: Set<string>,
version: string,
packager: PlatformPackager<any>
) {
const isGitHub = publishConfig.provider === "github"
const updateInfoFile = isGitHub && outDir === dir ? path.join(dir, "github", `${channel}-mac.json`) : path.join(dir, `${channel}-mac.json`)
if (!createdFiles.has(updateInfoFile)) {
createdFiles.add(updateInfoFile)
await outputJson(
updateInfoFile,
{
version,
releaseDate: new Date().toISOString(),
url: computeDownloadUrl(publishConfig, packager.generateName2("zip", "mac", isGitHub), packager),
},
{ spaces: 2 }
)
packager.info.dispatchArtifactCreated({
file: updateInfoFile,
arch: null,
packager,
target: null,
publishConfig,
})
}
}