-
Notifications
You must be signed in to change notification settings - Fork 832
/
Copy pathgenerate-default-hashes.ts
133 lines (112 loc) · 3.16 KB
/
generate-default-hashes.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
import { readFile, writeFile } from "node:fs/promises";
import { FormData, Response } from "undici";
async function serialiseHashes(
workers: Record<string, FormData>
): Promise<Record<string, string>> {
const workerHashes = {};
for (const [name, worker] of Object.entries(workers)) {
workerHashes[name] = await serialiseWorker(worker);
}
return workerHashes;
}
async function generateFileForWorker(workers: Record<string, FormData>) {
const workerHashes = await serialiseHashes(workers);
return `export default ${JSON.stringify(workerHashes, null, 2)};\n`;
}
const pythonWorker = async () => {
const worker = new FormData();
const metadata = {
main_module: "index.py",
compatibility_date: `$REPLACE_COMPAT_DATE`,
compatibility_flags: ["python_workers"],
};
worker.set("metadata", JSON.stringify(metadata));
worker.set(
"index.py",
new Blob([await readFile("./welcome/index.py", "utf8")], {
type: "text/x-python",
}),
"index.py"
);
worker.set(
"requirements.txt",
new Blob([await readFile("./welcome/requirements.txt", "utf8")], {
type: "text/plain",
}),
"requirements.txt"
);
return worker;
};
const defaultWorker = async () => {
const worker = new FormData();
const metadata = {
main_module: "index.js",
compatibility_date: `$REPLACE_COMPAT_DATE`,
compatibility_flags: ["nodejs_compat"],
};
worker.set("metadata", JSON.stringify(metadata));
worker.set(
"data.js",
new Blob([await readFile("./welcome/data.js", "utf8")], {
type: "application/javascript+module",
}),
"data.js"
);
worker.set(
"index.js",
new Blob([await readFile("./welcome/index.js", "utf8")], {
type: "application/javascript+module",
}),
"index.js"
);
worker.set(
"welcome.html",
new Blob([await readFile("./welcome/welcome.html", "utf8")], {
type: "text/plain",
}),
"welcome.html"
);
return worker;
};
async function serialiseWorker(worker: FormData) {
const serialisedWorker = new Response(worker);
const generatedBoundary = serialisedWorker.headers
.get("content-type")!
.split(";")[1]
.split("=")[1]
.trim();
// This boundary is arbitrary, it's just specified for stability
const fixedBoundary = "----formdata-88e2b909-318c-42df-af0d-9077f33c7988";
return {
contentType: `multipart/form-data; boundary=${fixedBoundary}`,
worker: await (
await serialisedWorker.text()
).replaceAll(generatedBoundary, fixedBoundary),
};
}
const pythonWorkerContent = await pythonWorker();
const defaultWorkerContent = await defaultWorker();
if (process.argv[2] === "check") {
const currentFile = await import("./src/QuickEditor/defaultHashes.ts");
const generated = await serialiseHashes({
"/python": pythonWorkerContent,
"/": defaultWorkerContent,
});
const equal =
currentFile.default["/"] === generated["/"] &&
currentFile.default["/python"] === generated["/python"];
if (!equal) {
console.log("Hash not up to date", equal);
console.log("current.txt", currentFile.default);
console.log("gen.txt", generated);
}
process.exit(equal ? 0 : 1);
} else {
await writeFile(
"./src/QuickEditor/defaultHashes.ts",
await generateFileForWorker({
"/python": pythonWorkerContent,
"/": defaultWorkerContent,
})
);
}