mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
78 lines
1.5 KiB
TypeScript
78 lines
1.5 KiB
TypeScript
import { db } from "@dokploy/server/db";
|
|
import {
|
|
type apiCreateGitlab,
|
|
type bitbucket,
|
|
gitProvider,
|
|
type github,
|
|
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,
|
|
adminId: string,
|
|
) => {
|
|
return await db.transaction(async (tx) => {
|
|
const newGitProvider = await tx
|
|
.insert(gitProvider)
|
|
.values({
|
|
providerType: "gitlab",
|
|
adminId: adminId,
|
|
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]);
|
|
};
|