feat: add task workflow and asset downloads

This commit is contained in:
inman
2026-05-29 12:32:02 +08:00
parent f9c3393f84
commit 63e62d444c
61 changed files with 2773 additions and 2181 deletions

View File

@@ -0,0 +1,24 @@
import { jsonError, jsonOk, readJsonBody } from "@/lib/server/api";
import { assertInternalWorkerToken, PublicApiAuthError } from "@/lib/server/public-api-auth";
import { runWorkerTick } from "@/lib/server/task-manager";
export const runtime = "nodejs";
export async function POST(request: Request) {
try {
assertInternalWorkerToken(request);
const body = await readJsonBody<{
workerId?: string;
limit?: number;
}>(request);
const result = await runWorkerTick({
request,
workerId: body.workerId,
limit: typeof body.limit === "number" ? body.limit : undefined
});
return jsonOk(result);
} catch (error) {
if (error instanceof PublicApiAuthError) return jsonError(error.message, error.status);
return jsonError(error, 500);
}
}