-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathroute.ts
43 lines (40 loc) · 1.4 KB
/
route.ts
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
import type { z } from "zod";
import { NextResponse } from "next/server";
import { buildConflictUpdateColumns, takeFirst } from "@ctrlplane/db";
import { createDeploymentVersionChannel } from "@ctrlplane/db/schema";
import * as SCHEMA from "@ctrlplane/db/schema";
import { Permission } from "@ctrlplane/validators/auth";
import { authn, authz } from "../auth";
import { parseBody } from "../body-parser";
import { request } from "../middleware";
export const POST = request()
.use(authn)
.use(parseBody(createDeploymentVersionChannel))
.use(
authz(({ ctx, can }) =>
can
.perform(Permission.DeploymentVersionChannelCreate)
.on({ type: "deployment", id: ctx.body.deploymentId }),
),
)
.handle<{ body: z.infer<typeof createDeploymentVersionChannel> }>(
({ db, body }) =>
db
.insert(SCHEMA.deploymentVersionChannel)
.values(body)
.onConflictDoUpdate({
target: [
SCHEMA.deploymentVersionChannel.deploymentId,
SCHEMA.deploymentVersionChannel.name,
],
set: buildConflictUpdateColumns(SCHEMA.deploymentVersionChannel, [
"versionSelector",
]),
})
.returning()
.then(takeFirst)
.then((deploymentVersionChannel) =>
NextResponse.json(deploymentVersionChannel),
)
.catch((error) => NextResponse.json({ error }, { status: 500 })),
);