mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
- Delete all template-related files in `apps/dokploy/templates` - Remove template image files from `apps/dokploy/public/templates` - Update server-side template processing with new implementation - Clean up unused configuration and utility files
156 lines
3.6 KiB
TypeScript
156 lines
3.6 KiB
TypeScript
import { db } from "@dokploy/server/db";
|
|
import { type apiCreateMySql, backups, mysql } from "@dokploy/server/db/schema";
|
|
import { buildAppName } from "@dokploy/server/db/schema";
|
|
import { generatePassword } from "@dokploy/server/templates";
|
|
import { buildMysql } from "@dokploy/server/utils/databases/mysql";
|
|
import { pullImage } from "@dokploy/server/utils/docker/utils";
|
|
import { TRPCError } from "@trpc/server";
|
|
import { eq, getTableColumns } from "drizzle-orm";
|
|
import { validUniqueServerAppName } from "./project";
|
|
|
|
import { execAsyncRemote } from "@dokploy/server/utils/process/execAsync";
|
|
|
|
export type MySql = typeof mysql.$inferSelect;
|
|
|
|
export const createMysql = async (input: typeof apiCreateMySql._type) => {
|
|
const appName = buildAppName("mysql", input.appName);
|
|
|
|
const valid = await validUniqueServerAppName(appName);
|
|
if (!valid) {
|
|
throw new TRPCError({
|
|
code: "CONFLICT",
|
|
message: "Service with this 'AppName' already exists",
|
|
});
|
|
}
|
|
|
|
const newMysql = await db
|
|
.insert(mysql)
|
|
.values({
|
|
...input,
|
|
databasePassword: input.databasePassword
|
|
? input.databasePassword
|
|
: generatePassword(),
|
|
databaseRootPassword: input.databaseRootPassword
|
|
? input.databaseRootPassword
|
|
: generatePassword(),
|
|
appName,
|
|
})
|
|
.returning()
|
|
.then((value) => value[0]);
|
|
|
|
if (!newMysql) {
|
|
throw new TRPCError({
|
|
code: "BAD_REQUEST",
|
|
message: "Error input: Inserting mysql database",
|
|
});
|
|
}
|
|
|
|
return newMysql;
|
|
};
|
|
|
|
// https://github.com/drizzle-team/drizzle-orm/discussions/1483#discussioncomment-7523881
|
|
export const findMySqlById = async (mysqlId: string) => {
|
|
const result = await db.query.mysql.findFirst({
|
|
where: eq(mysql.mysqlId, mysqlId),
|
|
with: {
|
|
project: true,
|
|
mounts: true,
|
|
server: true,
|
|
backups: {
|
|
with: {
|
|
destination: true,
|
|
},
|
|
},
|
|
},
|
|
});
|
|
if (!result) {
|
|
throw new TRPCError({
|
|
code: "NOT_FOUND",
|
|
message: "MySql not found",
|
|
});
|
|
}
|
|
return result;
|
|
};
|
|
|
|
export const updateMySqlById = async (
|
|
mysqlId: string,
|
|
mysqlData: Partial<MySql>,
|
|
) => {
|
|
const { appName, ...rest } = mysqlData;
|
|
const result = await db
|
|
.update(mysql)
|
|
.set({
|
|
...rest,
|
|
})
|
|
.where(eq(mysql.mysqlId, mysqlId))
|
|
.returning();
|
|
|
|
return result[0];
|
|
};
|
|
|
|
export const findMySqlByBackupId = async (backupId: string) => {
|
|
const result = await db
|
|
.select({
|
|
...getTableColumns(mysql),
|
|
})
|
|
.from(mysql)
|
|
.innerJoin(backups, eq(mysql.mysqlId, backups.mysqlId))
|
|
.where(eq(backups.backupId, backupId))
|
|
.limit(1);
|
|
|
|
if (!result || !result[0]) {
|
|
throw new TRPCError({
|
|
code: "NOT_FOUND",
|
|
message: "Mysql not found",
|
|
});
|
|
}
|
|
return result[0];
|
|
};
|
|
|
|
export const removeMySqlById = async (mysqlId: string) => {
|
|
const result = await db
|
|
.delete(mysql)
|
|
.where(eq(mysql.mysqlId, mysqlId))
|
|
.returning();
|
|
|
|
return result[0];
|
|
};
|
|
|
|
export const deployMySql = async (
|
|
mysqlId: string,
|
|
onData?: (data: any) => void,
|
|
) => {
|
|
const mysql = await findMySqlById(mysqlId);
|
|
try {
|
|
await updateMySqlById(mysqlId, {
|
|
applicationStatus: "running",
|
|
});
|
|
onData?.("Starting mysql deployment...");
|
|
if (mysql.serverId) {
|
|
await execAsyncRemote(
|
|
mysql.serverId,
|
|
`docker pull ${mysql.dockerImage}`,
|
|
onData,
|
|
);
|
|
} else {
|
|
await pullImage(mysql.dockerImage, onData);
|
|
}
|
|
|
|
await buildMysql(mysql);
|
|
await updateMySqlById(mysqlId, {
|
|
applicationStatus: "done",
|
|
});
|
|
onData?.("Deployment completed successfully!");
|
|
} catch (error) {
|
|
onData?.(`Error: ${error}`);
|
|
await updateMySqlById(mysqlId, {
|
|
applicationStatus: "error",
|
|
});
|
|
throw new TRPCError({
|
|
code: "INTERNAL_SERVER_ERROR",
|
|
message: `Error on deploy mysql${error}`,
|
|
});
|
|
}
|
|
return mysql;
|
|
};
|