mirror of
https://github.com/Dokploy/dokploy
synced 2025-06-26 18:27:59 +00:00
63 lines
1.9 KiB
TypeScript
63 lines
1.9 KiB
TypeScript
import { relations } from "drizzle-orm";
|
|
import { integer, pgTable, text } from "drizzle-orm/pg-core";
|
|
import { createInsertSchema } from "drizzle-zod";
|
|
import { nanoid } from "nanoid";
|
|
import { z } from "zod";
|
|
import { gitProvider } from "./git-provider";
|
|
|
|
export const github = pgTable("github", {
|
|
githubId: text("githubId")
|
|
.notNull()
|
|
.primaryKey()
|
|
.$defaultFn(() => nanoid()),
|
|
githubAppName: text("githubAppName"),
|
|
githubAppId: integer("githubAppId"),
|
|
githubClientId: text("githubClientId"),
|
|
githubClientSecret: text("githubClientSecret"),
|
|
githubInstallationId: text("githubInstallationId"),
|
|
githubPrivateKey: text("githubPrivateKey"),
|
|
githubWebhookSecret: text("githubWebhookSecret"),
|
|
gitProviderId: text("gitProviderId")
|
|
.notNull()
|
|
.references(() => gitProvider.gitProviderId, { onDelete: "cascade" }),
|
|
});
|
|
|
|
export const githubProviderRelations = relations(github, ({ one }) => ({
|
|
gitProvider: one(gitProvider, {
|
|
fields: [github.gitProviderId],
|
|
references: [gitProvider.gitProviderId],
|
|
}),
|
|
}));
|
|
|
|
const createSchema = createInsertSchema(github);
|
|
export const apiCreateGithub = createSchema.extend({
|
|
githubAppName: z.string().optional(),
|
|
githubAppId: z.number().optional(),
|
|
githubClientId: z.string().optional(),
|
|
githubClientSecret: z.string().optional(),
|
|
githubInstallationId: z.string().optional(),
|
|
githubPrivateKey: z.string().optional(),
|
|
githubWebhookSecret: z.string().nullable(),
|
|
gitProviderId: z.string().optional(),
|
|
name: z.string().min(1),
|
|
authId: z.string().min(1),
|
|
});
|
|
|
|
export const apiFindGithubBranches = z.object({
|
|
repo: z.string().min(1),
|
|
owner: z.string().min(1),
|
|
githubId: z.string().optional(),
|
|
});
|
|
|
|
export const apiFindOneGithub = createSchema
|
|
.extend({
|
|
githubId: z.string().min(1),
|
|
})
|
|
.pick({ githubId: true });
|
|
|
|
export const apiUpdateGithub = createSchema.extend({
|
|
githubId: z.string().min(1),
|
|
name: z.string().min(1),
|
|
gitProviderId: z.string().min(1),
|
|
});
|