mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
61 lines
1.5 KiB
TypeScript
61 lines
1.5 KiB
TypeScript
import { relations } from "drizzle-orm";
|
|
import { createInsertSchema } from "drizzle-zod";
|
|
import { nanoid } from "nanoid";
|
|
import { z } from "zod";
|
|
import { boolean, pgTable, serial, text } from "drizzle-orm/pg-core";
|
|
import { applications } from "./application";
|
|
|
|
export const redirects = pgTable("redirect", {
|
|
redirectId: text("redirectId")
|
|
.notNull()
|
|
.primaryKey()
|
|
.$defaultFn(() => nanoid()),
|
|
regex: text("regex").notNull(),
|
|
replacement: text("replacement").notNull(),
|
|
permanent: boolean("permanent").notNull().default(false),
|
|
uniqueConfigKey: serial("uniqueConfigKey"),
|
|
createdAt: text("createdAt")
|
|
.notNull()
|
|
.$defaultFn(() => new Date().toISOString()),
|
|
applicationId: text("applicationId")
|
|
.notNull()
|
|
.references(() => applications.applicationId, { onDelete: "cascade" }),
|
|
});
|
|
|
|
export const redirectRelations = relations(redirects, ({ one }) => ({
|
|
application: one(applications, {
|
|
fields: [redirects.applicationId],
|
|
references: [applications.applicationId],
|
|
}),
|
|
}));
|
|
const createSchema = createInsertSchema(redirects, {
|
|
redirectId: z.string().min(1),
|
|
regex: z.string().min(1),
|
|
replacement: z.string().min(1),
|
|
permanent: z.boolean().optional(),
|
|
});
|
|
|
|
export const apiFindOneRedirect = createSchema
|
|
.pick({
|
|
redirectId: true,
|
|
})
|
|
.required();
|
|
|
|
export const apiCreateRedirect = createSchema
|
|
.pick({
|
|
regex: true,
|
|
replacement: true,
|
|
permanent: true,
|
|
applicationId: true,
|
|
})
|
|
.required();
|
|
|
|
export const apiUpdateRedirect = createSchema
|
|
.pick({
|
|
redirectId: true,
|
|
regex: true,
|
|
replacement: true,
|
|
permanent: true,
|
|
})
|
|
.required();
|