|
|
import { relations } from "drizzle-orm"; |
|
|
import { pgTable, text } from "drizzle-orm/pg-core"; |
|
|
import { createInsertSchema } from "drizzle-zod"; |
|
|
import { nanoid } from "nanoid"; |
|
|
import { z } from "zod"; |
|
|
import { organization } from "./account"; |
|
|
import { applications } from "./application"; |
|
|
import { compose } from "./compose"; |
|
|
import { mariadb } from "./mariadb"; |
|
|
import { mongo } from "./mongo"; |
|
|
import { mysql } from "./mysql"; |
|
|
import { postgres } from "./postgres"; |
|
|
import { redis } from "./redis"; |
|
|
|
|
|
export const projects = pgTable("project", { |
|
|
projectId: text("projectId") |
|
|
.notNull() |
|
|
.primaryKey() |
|
|
.$defaultFn(() => nanoid()), |
|
|
name: text("name").notNull(), |
|
|
description: text("description"), |
|
|
createdAt: text("createdAt") |
|
|
.notNull() |
|
|
.$defaultFn(() => new Date().toISOString()), |
|
|
|
|
|
organizationId: text("organizationId") |
|
|
.notNull() |
|
|
.references(() => organization.id, { onDelete: "cascade" }), |
|
|
env: text("env").notNull().default(""), |
|
|
}); |
|
|
|
|
|
export const projectRelations = relations(projects, ({ many, one }) => ({ |
|
|
mysql: many(mysql), |
|
|
postgres: many(postgres), |
|
|
mariadb: many(mariadb), |
|
|
applications: many(applications), |
|
|
mongo: many(mongo), |
|
|
redis: many(redis), |
|
|
compose: many(compose), |
|
|
organization: one(organization, { |
|
|
fields: [projects.organizationId], |
|
|
references: [organization.id], |
|
|
}), |
|
|
})); |
|
|
|
|
|
const createSchema = createInsertSchema(projects, { |
|
|
projectId: z.string().min(1), |
|
|
name: z.string().min(1), |
|
|
description: z.string().optional(), |
|
|
}); |
|
|
|
|
|
export const apiCreateProject = createSchema.pick({ |
|
|
name: true, |
|
|
description: true, |
|
|
env: true, |
|
|
}); |
|
|
|
|
|
export const apiFindOneProject = createSchema |
|
|
.pick({ |
|
|
projectId: true, |
|
|
}) |
|
|
.required(); |
|
|
|
|
|
export const apiRemoveProject = createSchema |
|
|
.pick({ |
|
|
projectId: true, |
|
|
}) |
|
|
.required(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export const apiUpdateProject = createSchema.partial().extend({ |
|
|
projectId: z.string().min(1), |
|
|
}); |
|
|
|
|
|
|