-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathadmin.api.v1.environments.$environmentId.engine.report.ts
More file actions
76 lines (63 loc) · 1.92 KB
/
admin.api.v1.environments.$environmentId.engine.report.ts
File metadata and controls
76 lines (63 loc) · 1.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import { json, LoaderFunctionArgs } from "@remix-run/server-runtime";
import { z } from "zod";
import { $replica, prisma } from "~/db.server";
import { requireAdminApiRequest } from "~/services/personalAccessToken.server";
import { determineEngineVersion } from "~/v3/engineVersion.server";
import { engine } from "~/v3/runEngine.server";
const ParamsSchema = z.object({
environmentId: z.string(),
});
const SearchParamsSchema = z.object({
verbose: z.string().default("0"),
page: z.coerce.number().optional(),
per_page: z.coerce.number().optional(),
});
export async function loader({ request, params }: LoaderFunctionArgs) {
await requireAdminApiRequest(request);
const parsedParams = ParamsSchema.parse(params);
const environment = await prisma.runtimeEnvironment.findFirst({
where: {
id: parsedParams.environmentId,
},
include: {
organization: true,
project: true,
orgMember: true,
},
});
if (!environment) {
return json({ error: "Environment not found" }, { status: 404 });
}
const engineVersion = await determineEngineVersion({ environment });
if (engineVersion === "V1") {
return json({ error: "Engine version is V1" }, { status: 400 });
}
const url = new URL(request.url);
const searchParams = SearchParamsSchema.parse(Object.fromEntries(url.searchParams));
const page = searchParams.page ?? 1;
const perPage = searchParams.per_page ?? 50;
const queues = await $replica.taskQueue.findMany({
where: {
runtimeEnvironmentId: environment.id,
version: "V2",
},
select: {
friendlyId: true,
name: true,
concurrencyLimit: true,
type: true,
paused: true,
},
orderBy: {
orderableName: "asc",
},
skip: (page - 1) * perPage,
take: perPage,
});
const report = await engine.generateEnvironmentReport(
environment,
queues,
searchParams.verbose === "1"
);
return json(report);
}