This repository was archived by the owner on Feb 18, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgenerate_fccache.mjs
85 lines (75 loc) · 2.13 KB
/
generate_fccache.mjs
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
import { chromium, devices } from "playwright";
import { stdout } from "node:process";
import { createServer } from "vite";
import { fileURLToPath } from "url";
import { dirname, join } from "path";
import http from "http";
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
const PORT = 18777;
function waitForServerResponse(url, maxAttempts = 10, interval = 2000) {
return new Promise((resolve, reject) => {
let attempts = 0;
const checkServer = () => {
http
.get(url, (res) => {
if (res.statusCode === 200) {
resolve();
} else {
console.log(res.statusCode);
retry();
}
})
.on("error", (err) => {
console.log(err);
retry();
});
};
const retry = () => {
if (++attempts < maxAttempts) {
setTimeout(checkServer, interval);
} else {
reject(new Error("Max attempts reached without success"));
}
};
checkServer();
});
}
(async () => {
const server = await createServer({
configFile: join(__dirname, "fccache_vite.config.ts"),
server: {
port: PORT,
},
});
await server.listen();
const { port } = server.httpServer.address();
const url = `http://localhost:${port}/index_fccache.html`;
await waitForServerResponse(url);
const browser = await chromium.launch();
const context = await browser.newContext(devices["Desktop Chrome"]);
const page = await context.newPage();
await page.goto(url);
let saved = 0;
page.on("download", async (download) => {
const filename = download.suggestedFilename();
const path = `${__dirname}/workdir/${filename}`;
stdout.write(`${path}@/instdir/share/fontconfig/cache/${filename} `);
await download.saveAs(path);
saved++;
});
const count = await page.evaluate(async () => {
return window.run();
});
await new Promise((resolve) => {
const int = setInterval(() => {
if (saved === count) {
clearInterval(int);
resolve();
}
}, 10);
});
await context.close();
await browser.close();
await server.close();
})();