mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-07-08 23:45:22 +02:00
- Introduced regex validation for the `additionalFlags` field to ensure proper flag formatting. - Updated error handling in the API router to provide clearer feedback on validation issues. - Refactored the database schema to align with the new validation rules for additionalFlags. - Added a new validation module for destination-related checks.
99 lines
2.3 KiB
TypeScript
99 lines
2.3 KiB
TypeScript
import { relations } from "drizzle-orm";
|
|
import { pgTable, text, timestamp } from "drizzle-orm/pg-core";
|
|
import { createInsertSchema } from "drizzle-zod";
|
|
import { nanoid } from "nanoid";
|
|
import { z } from "zod";
|
|
import {
|
|
ADDITIONAL_FLAG_ERROR,
|
|
ADDITIONAL_FLAG_REGEX,
|
|
} from "../validations/destination";
|
|
import { organization } from "./account";
|
|
import { backups } from "./backups";
|
|
|
|
export const destinations = pgTable("destination", {
|
|
destinationId: text("destinationId")
|
|
.notNull()
|
|
.primaryKey()
|
|
.$defaultFn(() => nanoid()),
|
|
name: text("name").notNull(),
|
|
provider: text("provider"),
|
|
accessKey: text("accessKey").notNull(),
|
|
secretAccessKey: text("secretAccessKey").notNull(),
|
|
bucket: text("bucket").notNull(),
|
|
region: text("region").notNull(),
|
|
endpoint: text("endpoint").notNull(),
|
|
additionalFlags: text("additionalFlags").array(),
|
|
organizationId: text("organizationId")
|
|
.notNull()
|
|
.references(() => organization.id, { onDelete: "cascade" }),
|
|
createdAt: timestamp("createdAt").notNull().defaultNow(),
|
|
});
|
|
|
|
export const destinationsRelations = relations(
|
|
destinations,
|
|
({ many, one }) => ({
|
|
backups: many(backups),
|
|
organization: one(organization, {
|
|
fields: [destinations.organizationId],
|
|
references: [organization.id],
|
|
}),
|
|
}),
|
|
);
|
|
|
|
const createSchema = createInsertSchema(destinations, {
|
|
destinationId: z.string(),
|
|
name: z.string().min(1),
|
|
provider: z.string(),
|
|
accessKey: z.string(),
|
|
bucket: z.string(),
|
|
endpoint: z.string(),
|
|
secretAccessKey: z.string(),
|
|
region: z.string(),
|
|
additionalFlags: z
|
|
.array(z.string().regex(ADDITIONAL_FLAG_REGEX, ADDITIONAL_FLAG_ERROR))
|
|
.default([]),
|
|
});
|
|
|
|
export const apiCreateDestination = createSchema
|
|
.pick({
|
|
name: true,
|
|
provider: true,
|
|
accessKey: true,
|
|
bucket: true,
|
|
region: true,
|
|
endpoint: true,
|
|
secretAccessKey: true,
|
|
additionalFlags: true,
|
|
})
|
|
.required()
|
|
.extend({
|
|
serverId: z.string().optional(),
|
|
});
|
|
|
|
export const apiFindOneDestination = z.object({
|
|
destinationId: z.string().min(1),
|
|
});
|
|
|
|
export const apiRemoveDestination = createSchema
|
|
.pick({
|
|
destinationId: true,
|
|
})
|
|
.required();
|
|
|
|
export const apiUpdateDestination = createSchema
|
|
.pick({
|
|
name: true,
|
|
accessKey: true,
|
|
bucket: true,
|
|
region: true,
|
|
endpoint: true,
|
|
secretAccessKey: true,
|
|
destinationId: true,
|
|
provider: true,
|
|
additionalFlags: true,
|
|
})
|
|
.required()
|
|
.extend({
|
|
serverId: z.string().optional(),
|
|
});
|