mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-04-01 14:52:25 +00:00
105 lines
2.7 KiB
TypeScript
105 lines
2.7 KiB
TypeScript
import { Hono } from "hono"
|
|
import { describeRoute, resolver, validator } from "hono-openapi"
|
|
import z from "zod"
|
|
import { Workspace } from "../../control-plane/workspace"
|
|
import { Instance } from "../../project/instance"
|
|
import { errors } from "../error"
|
|
import { lazy } from "../../util/lazy"
|
|
|
|
export const WorkspaceRoutes = lazy(() =>
|
|
new Hono()
|
|
.post(
|
|
"/:id",
|
|
describeRoute({
|
|
summary: "Create workspace",
|
|
description: "Create a workspace for the current project.",
|
|
operationId: "experimental.workspace.create",
|
|
responses: {
|
|
200: {
|
|
description: "Workspace created",
|
|
content: {
|
|
"application/json": {
|
|
schema: resolver(Workspace.Info),
|
|
},
|
|
},
|
|
},
|
|
...errors(400),
|
|
},
|
|
}),
|
|
validator(
|
|
"param",
|
|
z.object({
|
|
id: Workspace.Info.shape.id,
|
|
}),
|
|
),
|
|
validator(
|
|
"json",
|
|
z.object({
|
|
branch: Workspace.Info.shape.branch,
|
|
config: Workspace.Info.shape.config,
|
|
}),
|
|
),
|
|
async (c) => {
|
|
const { id } = c.req.valid("param")
|
|
const body = c.req.valid("json")
|
|
const workspace = await Workspace.create({
|
|
id,
|
|
projectID: Instance.project.id,
|
|
branch: body.branch,
|
|
config: body.config,
|
|
})
|
|
return c.json(workspace)
|
|
},
|
|
)
|
|
.get(
|
|
"/",
|
|
describeRoute({
|
|
summary: "List workspaces",
|
|
description: "List all workspaces.",
|
|
operationId: "experimental.workspace.list",
|
|
responses: {
|
|
200: {
|
|
description: "Workspaces",
|
|
content: {
|
|
"application/json": {
|
|
schema: resolver(z.array(Workspace.Info)),
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}),
|
|
async (c) => {
|
|
return c.json(Workspace.list(Instance.project))
|
|
},
|
|
)
|
|
.delete(
|
|
"/:id",
|
|
describeRoute({
|
|
summary: "Remove workspace",
|
|
description: "Remove an existing workspace.",
|
|
operationId: "experimental.workspace.remove",
|
|
responses: {
|
|
200: {
|
|
description: "Workspace removed",
|
|
content: {
|
|
"application/json": {
|
|
schema: resolver(Workspace.Info.optional()),
|
|
},
|
|
},
|
|
},
|
|
...errors(400),
|
|
},
|
|
}),
|
|
validator(
|
|
"param",
|
|
z.object({
|
|
id: Workspace.Info.shape.id,
|
|
}),
|
|
),
|
|
async (c) => {
|
|
const { id } = c.req.valid("param")
|
|
return c.json(await Workspace.remove(id))
|
|
},
|
|
),
|
|
)
|