mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-03-09 15:40:26 +00:00
16 lines
498 B
TypeScript
16 lines
498 B
TypeScript
import { parentPort } from "worker_threads";
|
|
import parseTorrent from "parse-torrent";
|
|
|
|
const port = parentPort;
|
|
if (!port) throw new Error("IllegalState");
|
|
|
|
export const getFileBuffer = async (url: string) =>
|
|
fetch(url, { method: "GET" }).then((response) =>
|
|
response.arrayBuffer().then((buffer) => Buffer.from(buffer))
|
|
);
|
|
|
|
port.on("message", async (url: string) => {
|
|
const buffer = await getFileBuffer(url);
|
|
const torrent = await parseTorrent(buffer);
|
|
port.postMessage(torrent);
|
|
});
|