Files
ejs/run.ts
2026-05-24 19:30:13 +00:00

41 lines
948 B
TypeScript

import { readFileSync } from "node:fs";
import { argv, exit } from "node:process";
import { isOneOf } from "./src/utils.ts";
import main from "./src/yt/solver/main.ts";
const args = argv.slice(2);
if (args.length < 2) {
console.error(
`ERROR: Missing argument\nusage: ${argv[1]} <player> [<type>:<request> ...]`,
);
exit(1);
}
const player = readFileSync(args[0], "utf-8");
const requests = {
n: [] as string[],
sig: [] as string[],
};
for (const request of args.slice(1)) {
const [type, challenge] = request.split(":", 2);
if (!isOneOf(type, "sig", "n")) {
console.error(`ERROR: Unsupported request type: ${type}`);
exit(1);
}
requests[type].push(challenge);
}
console.log(
JSON.stringify(
main({
type: "player",
player,
output_preprocessed: false,
requests: [
{ type: "n", challenges: requests.n },
{ type: "sig", challenges: requests.sig },
],
}),
),
);