mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
78 lines
2.0 KiB
TypeScript
78 lines
2.0 KiB
TypeScript
import { relations } from "drizzle-orm";
|
|
import { createInsertSchema } from "drizzle-zod";
|
|
import { nanoid } from "nanoid";
|
|
import { z } from "zod";
|
|
import { boolean, integer, pgTable, serial, text } from "drizzle-orm/pg-core";
|
|
import { applications } from "./application";
|
|
import { certificateType } from "./shared";
|
|
|
|
export const domains = pgTable("domain", {
|
|
domainId: text("domainId")
|
|
.notNull()
|
|
.primaryKey()
|
|
.$defaultFn(() => nanoid()),
|
|
host: text("host").notNull(),
|
|
https: boolean("https").notNull().default(false),
|
|
port: integer("port").default(80),
|
|
path: text("path").default("/"),
|
|
uniqueConfigKey: serial("uniqueConfigKey"),
|
|
createdAt: text("createdAt")
|
|
.notNull()
|
|
.$defaultFn(() => new Date().toISOString()),
|
|
applicationId: text("applicationId")
|
|
.notNull()
|
|
.references(() => applications.applicationId, { onDelete: "cascade" }),
|
|
certificateType: certificateType("certificateType").notNull().default("none"),
|
|
});
|
|
|
|
export const domainsRelations = relations(domains, ({ one }) => ({
|
|
application: one(applications, {
|
|
fields: [domains.applicationId],
|
|
references: [applications.applicationId],
|
|
}),
|
|
}));
|
|
const hostnameRegex = /^[a-zA-Z0-9][a-zA-Z0-9\.-]*\.[a-zA-Z]{2,}$/;
|
|
const createSchema = createInsertSchema(domains, {
|
|
domainId: z.string().min(1),
|
|
host: z.string().min(1),
|
|
path: z.string().min(1),
|
|
port: z.number(),
|
|
https: z.boolean(),
|
|
applicationId: z.string(),
|
|
certificateType: z.enum(["letsencrypt", "none"]),
|
|
});
|
|
|
|
export const apiCreateDomain = createSchema
|
|
.pick({
|
|
host: true,
|
|
path: true,
|
|
port: true,
|
|
https: true,
|
|
applicationId: true,
|
|
certificateType: true,
|
|
})
|
|
.required();
|
|
|
|
export const apiFindDomain = createSchema
|
|
.pick({
|
|
domainId: true,
|
|
})
|
|
.required();
|
|
|
|
export const apiFindDomainByApplication = createSchema
|
|
.pick({
|
|
applicationId: true,
|
|
})
|
|
.required();
|
|
|
|
export const apiUpdateDomain = createSchema
|
|
.pick({
|
|
domainId: true,
|
|
host: true,
|
|
path: true,
|
|
port: true,
|
|
https: true,
|
|
certificateType: true,
|
|
})
|
|
.required();
|