| import { relations } from "drizzle-orm"; | |
| import { boolean, integer, pgTable, text } from "drizzle-orm/pg-core"; | |
| import { createInsertSchema } from "drizzle-zod"; | |
| import { nanoid } from "nanoid"; | |
| import { z } from "zod"; | |
| import { backups } from "./backups"; | |
| import { mounts } from "./mount"; | |
| import { projects } from "./project"; | |
| import { server } from "./server"; | |
| import { applicationStatus } from "./shared"; | |
| import { generateAppName } from "./utils"; | |
| export const mongo = pgTable("mongo", { | |
| mongoId: text("mongoId") | |
| .notNull() | |
| .primaryKey() | |
| .$defaultFn(() => nanoid()), | |
| name: text("name").notNull(), | |
| appName: text("appName") | |
| .notNull() | |
| .$defaultFn(() => generateAppName("mongo")) | |
| .unique(), | |
| description: text("description"), | |
| databaseUser: text("databaseUser").notNull(), | |
| databasePassword: text("databasePassword").notNull(), | |
| dockerImage: text("dockerImage").notNull(), | |
| command: text("command"), | |
| env: text("env"), | |
| memoryReservation: text("memoryReservation"), | |
| memoryLimit: text("memoryLimit"), | |
| cpuReservation: text("cpuReservation"), | |
| cpuLimit: text("cpuLimit"), | |
| externalPort: integer("externalPort"), | |
| applicationStatus: applicationStatus("applicationStatus") | |
| .notNull() | |
| .default("idle"), | |
| createdAt: text("createdAt") | |
| .notNull() | |
| .$defaultFn(() => new Date().toISOString()), | |
| projectId: text("projectId") | |
| .notNull() | |
| .references(() => projects.projectId, { onDelete: "cascade" }), | |
| serverId: text("serverId").references(() => server.serverId, { | |
| onDelete: "cascade", | |
| }), | |
| replicaSets: boolean("replicaSets").default(false), | |
| }); | |
| export const mongoRelations = relations(mongo, ({ one, many }) => ({ | |
| project: one(projects, { | |
| fields: [mongo.projectId], | |
| references: [projects.projectId], | |
| }), | |
| backups: many(backups), | |
| mounts: many(mounts), | |
| server: one(server, { | |
| fields: [mongo.serverId], | |
| references: [server.serverId], | |
| }), | |
| })); | |
| const createSchema = createInsertSchema(mongo, { | |
| appName: z.string().min(1), | |
| createdAt: z.string(), | |
| mongoId: z.string(), | |
| name: z.string().min(1), | |
| databasePassword: z.string(), | |
| databaseUser: z.string().min(1), | |
| dockerImage: z.string().default("mongo:15"), | |
| command: z.string().optional(), | |
| env: z.string().optional(), | |
| memoryReservation: z.string().optional(), | |
| memoryLimit: z.string().optional(), | |
| cpuReservation: z.string().optional(), | |
| cpuLimit: z.string().optional(), | |
| projectId: z.string(), | |
| applicationStatus: z.enum(["idle", "running", "done", "error"]), | |
| externalPort: z.number(), | |
| description: z.string().optional(), | |
| serverId: z.string().optional(), | |
| replicaSets: z.boolean().default(false), | |
| }); | |
| export const apiCreateMongo = createSchema | |
| .pick({ | |
| name: true, | |
| appName: true, | |
| dockerImage: true, | |
| projectId: true, | |
| description: true, | |
| databaseUser: true, | |
| databasePassword: true, | |
| serverId: true, | |
| replicaSets: true, | |
| }) | |
| .required(); | |
| export const apiFindOneMongo = createSchema | |
| .pick({ | |
| mongoId: true, | |
| }) | |
| .required(); | |
| export const apiChangeMongoStatus = createSchema | |
| .pick({ | |
| mongoId: true, | |
| applicationStatus: true, | |
| }) | |
| .required(); | |
| export const apiSaveEnvironmentVariablesMongo = createSchema | |
| .pick({ | |
| mongoId: true, | |
| env: true, | |
| }) | |
| .required(); | |
| export const apiSaveExternalPortMongo = createSchema | |
| .pick({ | |
| mongoId: true, | |
| externalPort: true, | |
| }) | |
| .required(); | |
| export const apiDeployMongo = createSchema | |
| .pick({ | |
| mongoId: true, | |
| }) | |
| .required(); | |
| export const apiUpdateMongo = createSchema | |
| .partial() | |
| .extend({ | |
| mongoId: z.string().min(1), | |
| }) | |
| .omit({ serverId: true }); | |
| export const apiResetMongo = createSchema | |
| .pick({ | |
| mongoId: true, | |
| appName: true, | |
| }) | |
| .required(); | |
| export const apiRebuildMongo = createSchema | |
| .pick({ | |
| mongoId: true, | |
| }) | |
| .required(); | |