mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
124 lines
2.5 KiB
TypeScript
124 lines
2.5 KiB
TypeScript
import { db } from "@/server/db";
|
|
import {
|
|
type apiCreateProject,
|
|
applications,
|
|
mariadb,
|
|
mongo,
|
|
mysql,
|
|
postgres,
|
|
projects,
|
|
redis,
|
|
} from "@/server/db/schema";
|
|
import { TRPCError } from "@trpc/server";
|
|
import { eq } from "drizzle-orm";
|
|
import { findAdmin } from "./admin";
|
|
|
|
export type Project = typeof projects.$inferSelect;
|
|
|
|
export const createProject = async (input: typeof apiCreateProject._type) => {
|
|
const admin = await findAdmin();
|
|
const newProject = await db
|
|
.insert(projects)
|
|
.values({
|
|
...input,
|
|
adminId: admin.adminId,
|
|
})
|
|
.returning()
|
|
.then((value) => value[0]);
|
|
|
|
if (!newProject) {
|
|
throw new TRPCError({
|
|
code: "BAD_REQUEST",
|
|
message: "Error to create the project",
|
|
});
|
|
}
|
|
|
|
return newProject;
|
|
};
|
|
|
|
export const findProjectById = async (projectId: string) => {
|
|
const project = await db.query.projects.findFirst({
|
|
where: eq(projects.projectId, projectId),
|
|
with: {
|
|
applications: true,
|
|
mariadb: true,
|
|
mongo: true,
|
|
mysql: true,
|
|
postgres: true,
|
|
redis: true,
|
|
compose: true,
|
|
},
|
|
});
|
|
if (!project) {
|
|
throw new TRPCError({
|
|
code: "NOT_FOUND",
|
|
message: "Project not found",
|
|
});
|
|
}
|
|
return project;
|
|
};
|
|
|
|
export const deleteProject = async (projectId: string) => {
|
|
const project = await db
|
|
.delete(projects)
|
|
.where(eq(projects.projectId, projectId))
|
|
.returning()
|
|
.then((value) => value[0]);
|
|
|
|
return project;
|
|
};
|
|
|
|
export const updateProjectById = async (
|
|
projectId: string,
|
|
projectData: Partial<Project>,
|
|
) => {
|
|
const result = await db
|
|
.update(projects)
|
|
.set({
|
|
...projectData,
|
|
})
|
|
.where(eq(projects.projectId, projectId))
|
|
.returning()
|
|
.then((res) => res[0]);
|
|
|
|
return result;
|
|
};
|
|
|
|
export const validUniqueServerAppName = async (appName: string) => {
|
|
const query = await db.query.projects.findMany({
|
|
with: {
|
|
applications: {
|
|
where: eq(applications.appName, appName),
|
|
},
|
|
mariadb: {
|
|
where: eq(mariadb.appName, appName),
|
|
},
|
|
mongo: {
|
|
where: eq(mongo.appName, appName),
|
|
},
|
|
mysql: {
|
|
where: eq(mysql.appName, appName),
|
|
},
|
|
postgres: {
|
|
where: eq(postgres.appName, appName),
|
|
},
|
|
redis: {
|
|
where: eq(redis.appName, appName),
|
|
},
|
|
},
|
|
});
|
|
|
|
// Filter out items with non-empty fields
|
|
const nonEmptyProjects = query.filter(
|
|
(project) =>
|
|
project.applications.length > 0 ||
|
|
project.mariadb.length > 0 ||
|
|
project.mongo.length > 0 ||
|
|
project.mysql.length > 0 ||
|
|
project.postgres.length > 0 ||
|
|
project.redis.length > 0,
|
|
);
|
|
|
|
return nonEmptyProjects.length === 0;
|
|
};
|