| import { db } from "@dokploy/server/db"; | |
| import { | |
| type apiCreateGitlab, | |
| gitProvider, | |
| gitlab, | |
| } from "@dokploy/server/db/schema"; | |
| import { TRPCError } from "@trpc/server"; | |
| import { eq } from "drizzle-orm"; | |
| export type Gitlab = typeof gitlab.$inferSelect; | |
| export const createGitlab = async ( | |
| input: typeof apiCreateGitlab._type, | |
| organizationId: string, | |
| ) => { | |
| return await db.transaction(async (tx) => { | |
| const newGitProvider = await tx | |
| .insert(gitProvider) | |
| .values({ | |
| providerType: "gitlab", | |
| organizationId: organizationId, | |
| name: input.name, | |
| }) | |
| .returning() | |
| .then((response) => response[0]); | |
| if (!newGitProvider) { | |
| throw new TRPCError({ | |
| code: "BAD_REQUEST", | |
| message: "Error creating the Git provider", | |
| }); | |
| } | |
| await tx | |
| .insert(gitlab) | |
| .values({ | |
| ...input, | |
| gitProviderId: newGitProvider?.gitProviderId, | |
| }) | |
| .returning() | |
| .then((response) => response[0]); | |
| }); | |
| }; | |
| export const findGitlabById = async (gitlabId: string) => { | |
| const gitlabProviderResult = await db.query.gitlab.findFirst({ | |
| where: eq(gitlab.gitlabId, gitlabId), | |
| with: { | |
| gitProvider: true, | |
| }, | |
| }); | |
| if (!gitlabProviderResult) { | |
| throw new TRPCError({ | |
| code: "NOT_FOUND", | |
| message: "Gitlab Provider not found", | |
| }); | |
| } | |
| return gitlabProviderResult; | |
| }; | |
| export const updateGitlab = async ( | |
| gitlabId: string, | |
| input: Partial<Gitlab>, | |
| ) => { | |
| return await db | |
| .update(gitlab) | |
| .set({ | |
| ...input, | |
| }) | |
| .where(eq(gitlab.gitlabId, gitlabId)) | |
| .returning() | |
| .then((response) => response[0]); | |
| }; | |