mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-06-19 14:15:21 +02:00
137 lines
3.0 KiB
TypeScript
137 lines
3.0 KiB
TypeScript
import { db } from "@dokploy/server/db";
|
|
import {
|
|
type apiCreateRedis,
|
|
buildAppName,
|
|
redis,
|
|
} from "@dokploy/server/db/schema";
|
|
import { generatePassword } from "@dokploy/server/templates";
|
|
import { buildRedis } from "@dokploy/server/utils/databases/redis";
|
|
import { pullImage } from "@dokploy/server/utils/docker/utils";
|
|
import { execAsyncRemote } from "@dokploy/server/utils/process/execAsync";
|
|
import { TRPCError } from "@trpc/server";
|
|
import { eq } from "drizzle-orm";
|
|
import { validUniqueServerAppName } from "./project";
|
|
|
|
export type Redis = typeof redis.$inferSelect;
|
|
|
|
// https://github.com/drizzle-team/drizzle-orm/discussions/1483#discussioncomment-7523881
|
|
export const createRedis = async (input: typeof apiCreateRedis._type) => {
|
|
const appName = buildAppName("redis", input.appName);
|
|
|
|
const valid = await validUniqueServerAppName(appName);
|
|
if (!valid) {
|
|
throw new TRPCError({
|
|
code: "CONFLICT",
|
|
message: "Service with this 'AppName' already exists",
|
|
});
|
|
}
|
|
|
|
const newRedis = await db
|
|
.insert(redis)
|
|
.values({
|
|
...input,
|
|
databasePassword: input.databasePassword
|
|
? input.databasePassword
|
|
: generatePassword(),
|
|
appName,
|
|
})
|
|
.returning()
|
|
.then((value) => value[0]);
|
|
|
|
if (!newRedis) {
|
|
throw new TRPCError({
|
|
code: "BAD_REQUEST",
|
|
message: "Error input: Inserting redis database",
|
|
});
|
|
}
|
|
|
|
return newRedis;
|
|
};
|
|
|
|
export const findRedisById = async (redisId: string) => {
|
|
const result = await db.query.redis.findFirst({
|
|
where: eq(redis.redisId, redisId),
|
|
with: {
|
|
environment: {
|
|
with: {
|
|
project: true,
|
|
},
|
|
},
|
|
mounts: true,
|
|
server: true,
|
|
},
|
|
});
|
|
if (!result) {
|
|
throw new TRPCError({
|
|
code: "NOT_FOUND",
|
|
message: "Redis not found",
|
|
});
|
|
}
|
|
return result;
|
|
};
|
|
|
|
export const updateRedisById = async (
|
|
redisId: string,
|
|
redisData: Partial<Redis>,
|
|
) => {
|
|
const { appName, ...rest } = redisData;
|
|
const result = await db
|
|
.update(redis)
|
|
.set({
|
|
...rest,
|
|
})
|
|
.where(eq(redis.redisId, redisId))
|
|
.returning();
|
|
|
|
return result[0];
|
|
};
|
|
|
|
export const removeRedisById = async (redisId: string) => {
|
|
const result = await db
|
|
.delete(redis)
|
|
.where(eq(redis.redisId, redisId))
|
|
.returning();
|
|
|
|
return result[0];
|
|
};
|
|
|
|
export const deployRedis = async (
|
|
redisId: string,
|
|
onData?: (data: any) => void,
|
|
) => {
|
|
const redis = await findRedisById(redisId);
|
|
try {
|
|
await updateRedisById(redisId, {
|
|
applicationStatus: "running",
|
|
});
|
|
|
|
onData?.("Starting redis deployment...");
|
|
if (redis.serverId) {
|
|
await execAsyncRemote(
|
|
redis.serverId,
|
|
`docker pull ${redis.dockerImage}`,
|
|
onData,
|
|
);
|
|
} else {
|
|
await pullImage(redis.dockerImage, onData);
|
|
}
|
|
|
|
await buildRedis(redis);
|
|
await updateRedisById(redisId, {
|
|
applicationStatus: "done",
|
|
});
|
|
onData?.("Deployment completed successfully!");
|
|
} catch (error) {
|
|
onData?.(`Error: ${error}`);
|
|
await updateRedisById(redisId, {
|
|
applicationStatus: "error",
|
|
});
|
|
|
|
throw new TRPCError({
|
|
code: "INTERNAL_SERVER_ERROR",
|
|
message: `Error on deploy redis${error}`,
|
|
});
|
|
}
|
|
return redis;
|
|
};
|