mirror of
https://github.com/lifegpc/eh-downloader.git
synced 2026-06-06 05:38:44 +08:00
51 lines
1.3 KiB
TypeScript
51 lines
1.3 KiB
TypeScript
import { dirname, join } from "std/path/mod.ts";
|
|
import { sure_dir } from "./utils.ts";
|
|
|
|
const map = JSON.parse(await Deno.readTextFile("./import_map.json")).imports;
|
|
const LIST: string[] = [
|
|
"preact-material-components/style.css",
|
|
"bootstrap/dist/css/bootstrap.min.css",
|
|
];
|
|
|
|
function get_url(i: string) {
|
|
if (i.startsWith("preact-material-components/")) {
|
|
return i.replace(
|
|
"preact-material-components/",
|
|
"https://esm.sh/[email protected]/",
|
|
);
|
|
}
|
|
for (const v of Object.getOwnPropertyNames(map)) {
|
|
if (v.endsWith("/") && i.startsWith(v)) {
|
|
return i.replace(v, map[v]);
|
|
}
|
|
}
|
|
for (const v of Object.getOwnPropertyNames(map)) {
|
|
if (i.startsWith(v)) {
|
|
return i.replace(v, map[v]);
|
|
}
|
|
}
|
|
return i;
|
|
}
|
|
|
|
async function fetch_file(u: string | URL, p: string) {
|
|
await sure_dir(dirname(p));
|
|
const f = await Deno.open(p, { create: true, write: true, truncate: true });
|
|
try {
|
|
const r = await fetch(u);
|
|
if (!r.body) throw Error("No body.");
|
|
await r.body.pipeTo(f.writable);
|
|
} finally {
|
|
try {
|
|
f.close();
|
|
} catch (_) {
|
|
null;
|
|
}
|
|
}
|
|
}
|
|
|
|
for (const i of LIST) {
|
|
const u = get_url(i);
|
|
const p = join("./static", i);
|
|
await fetch_file(u, p);
|
|
}
|