166 lines
4.8 KiB
TypeScript
166 lines
4.8 KiB
TypeScript
import { type ActionFunctionArgs } from "@remix-run/server-runtime";
|
|
import { z } from "zod";
|
|
import { $replica } from "~/db.server";
|
|
import { getRequestAbortSignal } from "~/services/httpAsyncStorage.server";
|
|
import { getRealtimeStreamInstance } from "~/services/realtime/v1StreamsGlobal.server";
|
|
import { anyResource, createLoaderApiRoute } from "~/services/routeBuilders/apiBuilder.server";
|
|
import { runStore } from "~/v3/runStore.server";
|
|
import { controlPlaneResolver } from "~/v3/runOpsMigration/controlPlaneResolver.server";
|
|
|
|
const ParamsSchema = z.object({
|
|
runId: z.string(),
|
|
streamId: z.string(),
|
|
});
|
|
|
|
// Plain action for backwards compatibility with older clients that don't send auth headers
|
|
export async function action({ request, params }: ActionFunctionArgs) {
|
|
const parsedParams = ParamsSchema.safeParse(params);
|
|
|
|
if (!parsedParams.success) {
|
|
return new Response("Invalid parameters", { status: 400 });
|
|
}
|
|
|
|
const { runId, streamId } = parsedParams.data;
|
|
|
|
// Look up the run without environment scoping for backwards compatibility
|
|
const run = await runStore.findRun(
|
|
{
|
|
friendlyId: runId,
|
|
},
|
|
{
|
|
select: {
|
|
id: true,
|
|
friendlyId: true,
|
|
streamBasinName: true,
|
|
runtimeEnvironmentId: true,
|
|
},
|
|
},
|
|
$replica
|
|
);
|
|
|
|
if (!run) {
|
|
return new Response("Run not found", { status: 404 });
|
|
}
|
|
|
|
const environment = await controlPlaneResolver.resolveAuthenticatedEnv(run.runtimeEnvironmentId);
|
|
|
|
if (!environment) {
|
|
return new Response("Run not found", { status: 404 });
|
|
}
|
|
|
|
// Extract client ID from header, default to "default" if not provided
|
|
const clientId = request.headers.get("X-Client-Id") || "default";
|
|
const streamVersion = request.headers.get("X-Stream-Version") || "v1";
|
|
|
|
if (!request.body) {
|
|
return new Response("No body provided", { status: 400 });
|
|
}
|
|
|
|
const resumeFromChunk = request.headers.get("X-Resume-From-Chunk");
|
|
let resumeFromChunkNumber: number | undefined = undefined;
|
|
if (resumeFromChunk) {
|
|
const parsed = parseInt(resumeFromChunk, 10);
|
|
if (isNaN(parsed) || parsed < 0) {
|
|
return new Response(`Invalid X-Resume-From-Chunk header value: ${resumeFromChunk}`, {
|
|
status: 400,
|
|
});
|
|
}
|
|
resumeFromChunkNumber = parsed;
|
|
}
|
|
|
|
const realtimeStream = getRealtimeStreamInstance(environment, streamVersion, {
|
|
run,
|
|
});
|
|
|
|
return realtimeStream.ingestData(
|
|
request.body,
|
|
run.friendlyId,
|
|
streamId,
|
|
clientId,
|
|
resumeFromChunkNumber
|
|
);
|
|
}
|
|
|
|
export const loader = createLoaderApiRoute(
|
|
{
|
|
params: ParamsSchema,
|
|
allowJWT: true,
|
|
corsStrategy: "all",
|
|
findResource: async (params, auth) => {
|
|
const run = await runStore.findRun(
|
|
{
|
|
friendlyId: params.runId,
|
|
runtimeEnvironmentId: auth.environment.id,
|
|
},
|
|
{
|
|
select: {
|
|
id: true,
|
|
friendlyId: true,
|
|
taskIdentifier: true,
|
|
runTags: true,
|
|
realtimeStreamsVersion: true,
|
|
streamBasinName: true,
|
|
batch: {
|
|
select: {
|
|
friendlyId: true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
$replica
|
|
);
|
|
return run;
|
|
},
|
|
authorization: {
|
|
action: "read",
|
|
resource: (run) => {
|
|
const resources = [
|
|
{ type: "runs", id: run.friendlyId },
|
|
{ type: "tasks", id: run.taskIdentifier },
|
|
...run.runTags.map((tag) => ({ type: "tags", id: tag })),
|
|
];
|
|
if (run.batch?.friendlyId) {
|
|
resources.push({ type: "batch", id: run.batch.friendlyId });
|
|
}
|
|
return anyResource(resources);
|
|
},
|
|
},
|
|
},
|
|
async ({ params, request, resource: run, authentication }) => {
|
|
// Get Last-Event-ID header for resuming from a specific position
|
|
const lastEventId = request.headers.get("Last-Event-ID") || undefined;
|
|
|
|
const timeoutInSecondsRaw = request.headers.get("Timeout-Seconds") ?? undefined;
|
|
const timeoutInSeconds = timeoutInSecondsRaw ? parseInt(timeoutInSecondsRaw) : undefined;
|
|
|
|
if (timeoutInSeconds && isNaN(timeoutInSeconds)) {
|
|
return new Response("Invalid timeout seconds", { status: 400 });
|
|
}
|
|
|
|
if (timeoutInSeconds && timeoutInSeconds < 1) {
|
|
return new Response("Timeout seconds must be greater than 0", { status: 400 });
|
|
}
|
|
|
|
if (timeoutInSeconds && timeoutInSeconds > 600) {
|
|
return new Response("Timeout seconds must be less than 600", { status: 400 });
|
|
}
|
|
|
|
const realtimeStream = getRealtimeStreamInstance(
|
|
authentication.environment,
|
|
run.realtimeStreamsVersion,
|
|
{ run }
|
|
);
|
|
|
|
return realtimeStream.streamResponse(
|
|
request,
|
|
run.friendlyId,
|
|
params.streamId,
|
|
getRequestAbortSignal(),
|
|
{
|
|
lastEventId,
|
|
timeoutInSeconds,
|
|
}
|
|
);
|
|
}
|
|
);
|