mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
60 lines
1.8 KiB
TypeScript
60 lines
1.8 KiB
TypeScript
import { createTRPCRouter, protectedProcedure } from "@/server/api/trpc";
|
|
import {
|
|
apiCreateDomain,
|
|
apiFindDomain,
|
|
apiFindDomainByApplication,
|
|
apiUpdateDomain,
|
|
} from "@/server/db/schema";
|
|
import { manageDomain, removeDomain } from "@/server/utils/traefik/domain";
|
|
import { TRPCError } from "@trpc/server";
|
|
import { findApplicationById } from "../services/application";
|
|
import {
|
|
createDomain,
|
|
findDomainById,
|
|
findDomainsByApplicationId,
|
|
removeDomainById,
|
|
updateDomainById,
|
|
} from "../services/domain";
|
|
|
|
export const domainRouter = createTRPCRouter({
|
|
create: protectedProcedure
|
|
.input(apiCreateDomain)
|
|
.mutation(async ({ input }) => {
|
|
try {
|
|
await createDomain(input);
|
|
} catch (error) {
|
|
throw new TRPCError({
|
|
code: "BAD_REQUEST",
|
|
message: "Error to create the domain",
|
|
cause: error,
|
|
});
|
|
}
|
|
}),
|
|
byApplicationId: protectedProcedure
|
|
.input(apiFindDomainByApplication)
|
|
.query(async ({ input }) => {
|
|
return await findDomainsByApplicationId(input.applicationId);
|
|
}),
|
|
update: protectedProcedure
|
|
.input(apiUpdateDomain)
|
|
.mutation(async ({ input }) => {
|
|
const result = await updateDomainById(input.domainId, input);
|
|
const domain = await findDomainById(input.domainId);
|
|
const application = await findApplicationById(domain.applicationId);
|
|
await manageDomain(application, domain);
|
|
return result;
|
|
}),
|
|
one: protectedProcedure.input(apiFindDomain).query(async ({ input }) => {
|
|
return await findDomainById(input.domainId);
|
|
}),
|
|
delete: protectedProcedure
|
|
.input(apiFindDomain)
|
|
.mutation(async ({ input }) => {
|
|
const domain = await findDomainById(input.domainId);
|
|
const result = await removeDomainById(input.domainId);
|
|
removeDomain(domain.application.appName, domain.uniqueConfigKey);
|
|
|
|
return result;
|
|
}),
|
|
});
|