mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-07-03 13:05:23 +02:00
72 lines
1.9 KiB
TypeScript
72 lines
1.9 KiB
TypeScript
import { createTRPCRouter, protectedProcedure } from "@/server/api/trpc";
|
|
import { db } from "@/server/db";
|
|
import {
|
|
apiFindGithubBranches,
|
|
apiFindOneGithub,
|
|
apiUpdateGithub,
|
|
} from "@/server/db/schema";
|
|
import {
|
|
getGithubBranches,
|
|
getGithubRepositories,
|
|
} from "@/server/utils/providers/github";
|
|
import { TRPCError } from "@trpc/server";
|
|
import { updateGitProvider } from "../services/git-provider";
|
|
import { findGithubById, haveGithubRequirements } from "../services/github";
|
|
|
|
export const githubRouter = createTRPCRouter({
|
|
one: protectedProcedure.input(apiFindOneGithub).query(async ({ input }) => {
|
|
return await findGithubById(input.githubId);
|
|
}),
|
|
getGithubRepositories: protectedProcedure
|
|
.input(apiFindOneGithub)
|
|
.query(async ({ input }) => {
|
|
return await getGithubRepositories(input.githubId);
|
|
}),
|
|
getGithubBranches: protectedProcedure
|
|
.input(apiFindGithubBranches)
|
|
.query(async ({ input }) => {
|
|
return await getGithubBranches(input);
|
|
}),
|
|
githubProviders: protectedProcedure.query(async () => {
|
|
const result = await db.query.github.findMany({
|
|
with: {
|
|
gitProvider: true,
|
|
},
|
|
});
|
|
|
|
const filtered = result
|
|
.filter((provider) => haveGithubRequirements(provider))
|
|
.map((provider) => {
|
|
return {
|
|
githubId: provider.githubId,
|
|
gitProvider: {
|
|
...provider.gitProvider,
|
|
},
|
|
};
|
|
});
|
|
|
|
return filtered;
|
|
}),
|
|
|
|
testConnection: protectedProcedure
|
|
.input(apiFindOneGithub)
|
|
.mutation(async ({ input }) => {
|
|
try {
|
|
const result = await getGithubRepositories(input.githubId);
|
|
return `Found ${result.length} repositories`;
|
|
} catch (err) {
|
|
throw new TRPCError({
|
|
code: "BAD_REQUEST",
|
|
message: err instanceof Error ? err?.message : `Error: ${err}`,
|
|
});
|
|
}
|
|
}),
|
|
update: protectedProcedure
|
|
.input(apiUpdateGithub)
|
|
.mutation(async ({ input }) => {
|
|
await updateGitProvider(input.gitProviderId, {
|
|
name: input.name,
|
|
});
|
|
}),
|
|
});
|