-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
main.ts
665 lines (584 loc) · 18.6 KB
/
main.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
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
import { readFile, writeFile } from "node:fs/promises";
import { EOL } from "node:os";
import { basename, dirname, join, relative, resolve } from "node:path";
import { env, exit } from "node:process";
import { Glob, inspect } from "bun";
import { getInput } from "@actions/core";
import { context } from "@actions/github";
import { ensureDir } from "fs-extra";
import JSZip from "jszip";
import maxBy from "lodash.maxby";
import { Octokit } from "octokit";
import gh from "parse-github-url";
import { simpleGit } from "simple-git";
import { coerce, inc, parse, Range, satisfies } from "semver";
import { z } from "zod";
import payloadJson from "./payload.json" with { type: "json" };
const repoSchema = z.object({
owner: z.string(),
name: z.string().optional(),
repo: z.string(),
repository: z.string().optional(),
})
.transform((obj) => ({ ...obj, repo: obj.name ?? obj.repo }));
type Repo = z.infer<typeof repoSchema>;
const unitySchema = z.object({
version: z.string(),
corlibs: z.string().array().optional(),
libraries: z.string().array().optional(),
});
const platformSchema = z.union([
z.literal("linux_x64"),
z.literal("linux_x86"),
z.literal("macos_x64"),
z.literal("win_x64"),
z.literal("win_x86"),
]);
type Platform = z.infer<typeof platformSchema>;
const platformsSchema = z.array(platformSchema);
const REPO = repoSchema.parse(gh(payloadJson.repo));
const BEPINEX_REPO = repoSchema.parse(gh(payloadJson.bepinex));
const PAYLOAD_DIR = "payload";
const DIST_DIR = "dist";
const METADATA_FILE = ".metadata.json";
const BEPINEX_PLATFORMS = platformsSchema.parse(payloadJson.platforms);
const UNITY = "unity" in payloadJson &&
Object.freeze(unitySchema.parse(payloadJson.unity));
type Release = Awaited<
ReturnType<InstanceType<typeof Octokit>["rest"]["repos"]["getRelease"]>
>["data"];
type Asset = Release["assets"][0];
const metadataSchema = z.object({
bepinex: z.string().optional().default("0"),
payload: z.string().optional(),
sources: z.string().array().optional(),
});
type Metadata = z.infer<typeof metadataSchema>;
const httpErrorSchema = z.object({
name: z.literal("HttpError"),
status: z.number(),
message: z.string(),
}).passthrough();
const bepinexAssetFilter = (
asset: Asset,
platform: Platform,
unityMono?: boolean,
) =>
asset.name.toLowerCase().includes(platform.toLowerCase()) &&
(!unityMono || asset.name.toLowerCase().includes("unitymono"));
const getBepInExAsset = (release: Release, platform: Platform) =>
release.assets.find((asset) => bepinexAssetFilter(asset, platform, true)) ??
release.assets.find((asset) => bepinexAssetFilter(asset, platform));
const getVersion = (version: string) =>
coerce(version, { loose: true, includePrerelease: true })?.version;
const getMetadata = async () => {
try {
return metadataSchema.parse(
(await import(`./${METADATA_FILE}`, { with: { type: "json" } })).default,
);
} catch {
return { bepinex: "0" };
}
};
const createMetadata = (
bepinexRelease: Release,
...payloadReleases: Release[]
) =>
({
bepinex: getVersion(bepinexRelease.tag_name) ?? "0",
payload: payloadJson.version,
sources: [
bepinexRelease.html_url,
...payloadReleases.map((release) => release.html_url),
],
}) satisfies Metadata;
async function* getFilePaths(dir: string): AsyncGenerator<string> {
const glob = new Glob("**/*");
for await (
const entry of glob.scan({
cwd: dir,
onlyFiles: true,
})
) {
yield resolve(dir, entry);
}
}
const handleReleaseError = (error: unknown, { owner, repo }: Repo) => {
// an error occured while attempting to get the latest release
const parsed = httpErrorSchema.safeParse(error);
if (parsed.success) {
const message = parsed.data.status === 404
? "No releases were found"
: "Could not retrieve releases";
return [
`${message} for repo: /${owner}/${repo}`,
parsed.data.status,
parsed.data.message,
].join(" ");
} else {
return [
`Could not retrieve releases for repo: /${owner}/${repo}`,
inspect(error, { colors: true }),
].join(EOL);
}
};
const handleAssetError = (error: unknown, { name }: Asset) => {
// an error occured while attempting to get the latest release
const parsed = httpErrorSchema.safeParse(error);
if (parsed.success) {
const message = parsed.data.status === 404
? `Asset ${name} not found`
: `Could not retrieve asset ${name}`;
console.error(
`${message} for repo: /${BEPINEX_REPO.owner}/${BEPINEX_REPO.repo}`,
parsed.data.status,
parsed.data.message,
);
} else {
console.error(
`Could not retrieve asset ${name} for repo: /${BEPINEX_REPO.owner}/${BEPINEX_REPO.repo}`,
error,
);
}
};
const downloadAsset = async (
asset: Asset,
repo: Repo,
octokit: Octokit = new Octokit(),
) => {
console.log(`Downloading archive ${asset.name}...`);
let response: Awaited<ReturnType<typeof octokit.request>>;
try {
const getReleaseAssetStream = octokit.rest.repos.getReleaseAsset.defaults({
headers: {
accept: "application/octet-stream",
},
});
response = await octokit.request(
`${getReleaseAssetStream.endpoint.DEFAULTS.method} ${getReleaseAssetStream.endpoint.DEFAULTS.url}`,
{
...getReleaseAssetStream.endpoint.DEFAULTS,
...repo,
asset_id: asset.id,
},
);
} catch (error) {
handleAssetError(error, asset);
return;
}
if (!(response?.data instanceof ArrayBuffer)) {
console.error(
`Invalid data for asset ${asset.name}: ${typeof response.data}`,
);
return;
}
return response.data;
};
const downloadData = async (url: string) => {
try {
const response = await fetch(url);
if (!response.ok) {
console.error(
`Could not retrieve asset from URL: ${url}`,
response.status,
response.statusText,
response.url,
);
return;
}
return response.arrayBuffer();
} catch (error) {
console.error(`Could not retrieve asset from URL: ${url}`, error);
}
};
const embedPayload = async (archive: JSZip) => {
console.log("Embedding payload in archive...");
for (
const path of ((await Array.fromAsync(getFilePaths(PAYLOAD_DIR))).sort())
) {
archive.file(relative(PAYLOAD_DIR, path), await readFile(path));
}
return archive;
};
const embedData = async (
archive: JSZip,
buffer: ArrayBuffer,
predicate?: (filename: string) => boolean,
) => {
const dataArchive = await JSZip.loadAsync(buffer);
for (
const path of predicate
? Object.keys(dataArchive.files).filter(predicate)
: Object.keys(dataArchive.files)
) {
archive.file(
join("corlibs", path),
await dataArchive.file(path)!.async("uint8array"),
);
}
return archive;
};
const writeArchiveToDisk = (path: string, archive: JSZip) => {
console.log(`Writing archive to disk: ${path}`);
return archive.generateInternalStream({ type: "uint8array" })
.accumulate()
.then((data) => writeFile(resolve(path), data));
};
const getBepInExArchive = async (
release: Release,
platform: Platform,
octokit: Octokit = new Octokit(),
) => {
let asset: ReturnType<typeof getBepInExAsset>;
try {
asset = getBepInExAsset(release, platform);
if (!asset) return { asset, platform, success: false };
const assetBuffer = await downloadAsset(asset, BEPINEX_REPO, octokit);
if (!assetBuffer) return { asset, platform, success: false };
return {
asset,
platform,
success: true,
archive: await JSZip.loadAsync(assetBuffer),
};
} catch {
return { asset, platform, success: false };
}
};
const getPayloadArchive = async (
release: Release,
predicate: (asset: Asset) => boolean,
octokit: Octokit = new Octokit(),
) => {
const asset = release.assets.find(predicate);
const parsed = repoSchema.safeParse(gh(release.html_url));
if (!asset || !parsed.success) return { asset, repo: parsed, success: false };
const repo = parsed.data;
try {
const assetBuffer = await downloadAsset(asset, repo, octokit);
if (!assetBuffer) return { asset, repo, success: false };
return {
asset,
success: true,
archive: await JSZip.loadAsync(assetBuffer),
};
} catch {
return { asset, repo, success: false };
}
};
const mergeArchives = async (...archives: JSZip[]) => {
const merged = new JSZip();
for (const archive of archives) {
for (const [path, file] of Object.entries(archive.files)) {
merged.file(path, await file.async("uint8array"));
}
}
return merged;
};
if (import.meta.main) {
const { GITHUB_PERSONAL_ACCESS_TOKEN, CI, GITHUB_ACTOR } = env;
if (!GITHUB_PERSONAL_ACCESS_TOKEN && CI) {
throw ("GitHub PAT not set.");
}
const { pusher } = context.payload;
const gitConfigName = (getInput("git-config-email") ||
pusher?.name satisfies string | undefined) ??
GITHUB_ACTOR ??
"GitHub Workflow Update and Release";
const gitConfigEmail = (getInput("git-config-email") ||
pusher?.email satisfies string | undefined) ??
`${
GITHUB_ACTOR ?? "github-workflow-update-and-release"
}@users.noreply.github.com`;
const octokit = new Octokit({
auth: GITHUB_PERSONAL_ACCESS_TOKEN,
});
console.log("Getting latest release...");
let latestRelease: Release | undefined;
try {
latestRelease = (await octokit.rest.repos.getLatestRelease(REPO)).data;
} catch (error) {
throw handleReleaseError(error, REPO);
}
const latestReleaseVersion = latestRelease
? getVersion(latestRelease.tag_name)
: "0.0.0";
let latestBepInExRelease: Release;
try {
latestBepInExRelease =
(await octokit.rest.repos.getLatestRelease(BEPINEX_REPO)).data;
} catch (error) {
throw handleReleaseError(error, BEPINEX_REPO);
}
const latestPayloadReleases: Release[] = [];
for await (const source of payloadJson.sources) {
let repo: Repo | undefined;
try {
repo = repoSchema.parse(gh(source));
try {
latestPayloadReleases.push(
(await octokit.rest.repos.getLatestRelease(repo)).data,
);
} catch (e) {
const parsed = httpErrorSchema.safeParse(e);
if (parsed.success && parsed.data.status === 404) {
// stable release wasn't found, let's also try prereleases
const release = maxBy(
(await octokit.rest.repos.listReleases(repo)).data,
(r) => new Date(r.created_at).valueOf(),
);
if (release) {
latestPayloadReleases.push(release);
} else {
throw e;
}
} else {
throw e;
}
}
} catch (error) {
throw handleReleaseError(error, {
owner: repo?.owner ?? JSON.stringify(repo?.owner),
repo: repo?.name ?? JSON.stringify(repo?.name),
});
}
}
const oldMetadata = await getMetadata();
const releases = [latestBepInExRelease, ...latestPayloadReleases];
const metadata = createMetadata(
latestBepInExRelease,
...latestPayloadReleases,
);
const updatedSources = oldMetadata.sources?.filter((source) => {
const latestRelease = releases.find((release) =>
dirname(release.html_url) === dirname(source)
);
if (!latestRelease) {
// no matching source in latest metadata, so we can't compare versions
// probably this means there's a new payload source repo, so we should manually version bump and release,
// but potentially in future we could automate this by incrementing the minor version
return false;
}
const oldVersion = getVersion(basename(source));
const version = getVersion(latestRelease.tag_name);
return oldVersion && version &&
satisfies(version, new Range(`> ${oldVersion}`), {
loose: true,
includePrerelease: true,
});
});
if (updatedSources && updatedSources.length > 0) {
console.log(
"Updated sources:",
updatedSources.map((source) => gh(source)?.repository),
);
const { owner, repo } = BEPINEX_REPO;
if (
!updatedSources.every((source) => {
const parsed = repoSchema.safeParse(gh(source));
return parsed.success &&
parsed.data.owner.toLowerCase() === owner.toLowerCase() &&
parsed.data.repo.toLowerCase() === repo.toLowerCase();
}) &&
payloadJson.version === metadata.payload
) {
// this is an automated update which includes a payload source update, so we should increment the patch version
metadata.payload =
payloadJson.version =
inc(payloadJson.version, "patch") ??
inc(metadata.payload, "patch") ??
payloadJson.version;
await writeFile(
"payload.json",
JSON.stringify(payloadJson, null, 2),
"utf8",
);
}
}
const version = `${metadata.bepinex}-payload.${
parse(payloadJson.version, true)
}`;
console.log(`Latest release version: ${latestReleaseVersion}`);
console.log(`New version: ${version}`);
if (
satisfies(version, new Range(`<= ${latestReleaseVersion}`), {
loose: true,
includePrerelease: true,
})
) {
// both bepinex and our payload have not released an update since last check, so we should cancel
console.log("No updates since last check.");
exit();
}
// we have a new release, let's handle it
const archives = await Promise.all([
...BEPINEX_PLATFORMS.map((platform) =>
getBepInExArchive(latestBepInExRelease, platform, octokit)
),
...latestPayloadReleases.map((release) =>
getPayloadArchive(
release,
gh(release.html_url)?.repository?.toLowerCase() ===
"bepinex/bepinex.melonloader.loader"
? (asset) =>
asset.name.toLowerCase().includes("bepinex5") ||
asset.name.toLowerCase().startsWith("bepinex.melonloader.loader")
: (asset) => asset.name === `${gh(release.html_url)?.name}.zip`,
octokit,
)
),
]);
// check for failures
const failed = archives.filter((archive) => !archive.success);
if (failed.length > 0) {
for (const failure of failed) {
console.error(`Failed to get archive`, failure.asset);
}
exit(1);
}
if (failed.length === archives.length) {
throw `No valid assets were found in repo /${BEPINEX_REPO.owner}/${BEPINEX_REPO.repo}`;
}
const merged = await mergeArchives(
...archives.map((result) => result.archive!),
);
await Promise.all([
embedPayload(merged),
UNITY && UNITY.corlibs
? (async () => {
console.log(
`Downloading corlibs for Unity version: ${UNITY.version}...`,
);
const corlibs = await downloadData(
`https://unity.bepinex.dev/corlibs/${UNITY.version}.zip`,
);
if (!corlibs) {
throw `Failed to download corlibs for Unity version: ${UNITY.version}`;
}
console.log(`Embedding corlibs: ${UNITY.version}...`);
return embedData(
merged,
corlibs,
UNITY.corlibs!.length === 0
? undefined
: (filename) => UNITY.corlibs!.includes(filename),
);
})()
: Promise.resolve(),
UNITY && UNITY.libraries
? (async () => {
console.log(
`Downloading Unity libraries for version: ${UNITY.version}...`,
);
const libraries = await downloadData(
`https://unity.bepinex.dev/libraries/${UNITY.version}.zip`,
);
if (!libraries) {
throw `Failed to download Unity libraries for version: ${UNITY.version}`;
}
console.log(`Embedding Unity libraries: ${UNITY.version}...`);
return embedData(
merged,
libraries,
UNITY.libraries!.length === 0
? undefined
: (filename) => UNITY.libraries!.includes(filename),
);
})
: Promise.resolve(),
ensureDir(DIST_DIR),
]);
await writeArchiveToDisk(
resolve(DIST_DIR, `${payloadJson.name}.zip`),
merged,
);
if (!CI) exit();
// at this point all assets have been successfully downloaded and saved to disk with our payload embedded
await writeFile(METADATA_FILE, JSON.stringify(metadata), "utf8");
const git = simpleGit();
const status = await git.status();
const changedFiles = [...status.not_added, ...status.modified];
const metadataPath = changedFiles.find((file) =>
file.endsWith(METADATA_FILE)
);
if (!metadataPath) {
throw "Metadata unchanged!";
}
const { GITHUB_WORKSPACE } = env;
await Promise.all([
git.addConfig(
"safe.directory",
GITHUB_WORKSPACE || "",
false,
"global",
),
git.addConfig("user.name", gitConfigName),
git.addConfig("user.email", gitConfigEmail),
git.addConfig("core.ignorecase", "false"),
]);
console.log("Committing metadata...");
await git.add(metadataPath);
const commit = await git.commit(
"Update metadata",
[metadataPath, changedFiles.find((file) => file.endsWith("payload.json"))]
.filter(Boolean),
);
await git.push();
try {
console.log("Creating release...");
const release = await octokit.rest.repos.createRelease({
...REPO,
tag_name: `v${version}`,
target_commitish: commit.commit,
name: `v${version}`,
body: `# Payload auto-update
${
(updatedSources ?? []).map((source) => {
const parsed = gh(source);
const release = releases.find((release) =>
dirname(release.html_url) === dirname(source)
);
if (!release || !parsed?.owner || !parsed?.name) return "";
return `<details>
<summary>Update ${parsed.repository} to ${release.tag_name}</summary>
## [Release notes](${release.html_url})
${
release.body?.split("\n").map((s) => `> ${s.trimEnd()}`).join(
"\n",
) ?? "No release notes provided."
}
</details>`;
}).join("\n\n")
}`,
generate_release_notes: true,
});
console.log("Uploading assets...");
for await (const asset of getFilePaths(DIST_DIR)) {
const uploadReleaseAsset = octokit.rest.repos.uploadReleaseAsset.defaults(
{
headers: {
"content-type": latestBepInExRelease.assets.find((a) =>
a.name === basename(asset)
)?.content_type ?? "application/x-zip-compressed",
},
},
);
await octokit.request(
`${uploadReleaseAsset.endpoint.DEFAULTS.method} ${uploadReleaseAsset.endpoint.DEFAULTS.url}`,
{
...uploadReleaseAsset.endpoint.DEFAULTS,
...REPO,
release_id: release.data.id,
name: basename(asset),
data: await readFile(asset),
},
);
}
} catch (error) {
throw [
"Failed to create release",
inspect(error, { colors: true }),
]
.join(EOL);
}
}