import { sqliteTable, text, integer } from "drizzle-orm/sqlite-core"; import { InferSelectModel } from "drizzle-orm"; export const orgs = sqliteTable("orgs", { orgId: text("orgId").primaryKey(), name: text("name").notNull(), domain: text("domain").notNull(), }); export const sites = sqliteTable("sites", { siteId: integer("siteId").primaryKey({ autoIncrement: true }), orgId: text("orgId") .references(() => orgs.orgId, { onDelete: "cascade", }) .notNull(), niceId: text("niceId").notNull(), exitNodeId: integer("exitNode").references(() => exitNodes.exitNodeId, { onDelete: "set null", }), name: text("name").notNull(), pubKey: text("pubKey"), subnet: text("subnet").notNull(), megabytesIn: integer("bytesIn"), megabytesOut: integer("bytesOut"), type: text("type").notNull(), // "newt" or "wireguard" }); export const resources = sqliteTable("resources", { resourceId: integer("resourceId").primaryKey({ autoIncrement: true }), siteId: integer("siteId") .references(() => sites.siteId, { onDelete: "cascade", }) .notNull(), orgId: text("orgId") .references(() => orgs.orgId, { onDelete: "cascade", }) .notNull(), name: text("name").notNull(), subdomain: text("subdomain").notNull(), fullDomain: text("fullDomain").notNull().unique(), ssl: integer("ssl", { mode: "boolean" }).notNull().default(false), blockAccess: integer("blockAccess", { mode: "boolean" }) .notNull() .default(false), sso: integer("sso", { mode: "boolean" }).notNull().default(true), twoFactorEnabled: integer("twoFactorEnabled", { mode: "boolean" }) .notNull() .default(false), }); export const targets = sqliteTable("targets", { targetId: integer("targetId").primaryKey({ autoIncrement: true }), resourceId: integer("resourceId") .references(() => resources.resourceId, { onDelete: "cascade", }) .notNull(), ip: text("ip").notNull(), method: text("method").notNull(), port: integer("port").notNull(), internalPort: integer("internalPort"), protocol: text("protocol"), enabled: integer("enabled", { mode: "boolean" }).notNull().default(true), }); export const exitNodes = sqliteTable("exitNodes", { exitNodeId: integer("exitNodeId").primaryKey({ autoIncrement: true }), name: text("name").notNull(), address: text("address").notNull(), // this is the address of the wireguard interface in gerbil endpoint: text("endpoint").notNull(), // this is how to reach gerbil externally - gets put into the wireguard config publicKey: text("pubicKey").notNull(), listenPort: integer("listenPort").notNull(), reachableAt: text("reachableAt"), // this is the internal address of the gerbil http server for command control }); export const users = sqliteTable("user", { userId: text("id").primaryKey(), email: text("email").notNull().unique(), passwordHash: text("passwordHash").notNull(), twoFactorEnabled: integer("twoFactorEnabled", { mode: "boolean" }) .notNull() .default(false), twoFactorSecret: text("twoFactorSecret"), emailVerified: integer("emailVerified", { mode: "boolean" }) .notNull() .default(false), dateCreated: text("dateCreated").notNull(), }); export const newts = sqliteTable("newt", { newtId: text("id").primaryKey(), secretHash: text("secretHash").notNull(), dateCreated: text("dateCreated").notNull(), siteId: integer("siteId").references(() => sites.siteId), }); export const twoFactorBackupCodes = sqliteTable("twoFactorBackupCodes", { codeId: integer("id").primaryKey({ autoIncrement: true }), userId: text("userId") .notNull() .references(() => users.userId, { onDelete: "cascade" }), codeHash: text("codeHash").notNull(), }); export const sessions = sqliteTable("session", { sessionId: text("id").primaryKey(), userId: text("userId") .notNull() .references(() => users.userId, { onDelete: "cascade" }), expiresAt: integer("expiresAt").notNull(), }); export const newtSessions = sqliteTable("newtSession", { sessionId: text("id").primaryKey(), newtId: text("newtId") .notNull() .references(() => newts.newtId, { onDelete: "cascade" }), expiresAt: integer("expiresAt").notNull(), }); export const userOrgs = sqliteTable("userOrgs", { userId: text("userId") .notNull() .references(() => users.userId), orgId: text("orgId") .notNull() .references(() => orgs.orgId), roleId: integer("roleId") .notNull() .references(() => roles.roleId), isOwner: integer("isOwner", { mode: "boolean" }).notNull().default(false), }); export const emailVerificationCodes = sqliteTable("emailVerificationCodes", { codeId: integer("id").primaryKey({ autoIncrement: true }), userId: text("userId") .notNull() .references(() => users.userId, { onDelete: "cascade" }), email: text("email").notNull(), code: text("code").notNull(), expiresAt: integer("expiresAt").notNull(), }); export const passwordResetTokens = sqliteTable("passwordResetTokens", { tokenId: integer("id").primaryKey({ autoIncrement: true }), userId: text("userId") .notNull() .references(() => users.userId, { onDelete: "cascade" }), tokenHash: text("tokenHash").notNull(), expiresAt: integer("expiresAt").notNull(), }); export const actions = sqliteTable("actions", { actionId: text("actionId").primaryKey(), name: text("name"), description: text("description"), }); export const roles = sqliteTable("roles", { roleId: integer("roleId").primaryKey({ autoIncrement: true }), orgId: text("orgId") .references(() => orgs.orgId, { onDelete: "cascade", }) .notNull(), isAdmin: integer("isAdmin", { mode: "boolean" }), name: text("name").notNull(), description: text("description"), }); export const roleActions = sqliteTable("roleActions", { roleId: integer("roleId") .notNull() .references(() => roles.roleId, { onDelete: "cascade" }), actionId: text("actionId") .notNull() .references(() => actions.actionId, { onDelete: "cascade" }), orgId: text("orgId") .notNull() .references(() => orgs.orgId, { onDelete: "cascade" }), }); export const userActions = sqliteTable("userActions", { userId: text("userId") .notNull() .references(() => users.userId, { onDelete: "cascade" }), actionId: text("actionId") .notNull() .references(() => actions.actionId, { onDelete: "cascade" }), orgId: text("orgId") .notNull() .references(() => orgs.orgId, { onDelete: "cascade" }), }); export const roleSites = sqliteTable("roleSites", { roleId: integer("roleId") .notNull() .references(() => roles.roleId, { onDelete: "cascade" }), siteId: integer("siteId") .notNull() .references(() => sites.siteId, { onDelete: "cascade" }), }); export const userSites = sqliteTable("userSites", { userId: text("userId") .notNull() .references(() => users.userId, { onDelete: "cascade" }), siteId: integer("siteId") .notNull() .references(() => sites.siteId, { onDelete: "cascade" }), }); export const roleResources = sqliteTable("roleResources", { roleId: integer("roleId") .notNull() .references(() => roles.roleId, { onDelete: "cascade" }), resourceId: integer("resourceId") .notNull() .references(() => resources.resourceId, { onDelete: "cascade" }), }); export const userResources = sqliteTable("userResources", { userId: text("userId") .notNull() .references(() => users.userId, { onDelete: "cascade" }), resourceId: integer("resourceId") .notNull() .references(() => resources.resourceId, { onDelete: "cascade" }), }); export const limitsTable = sqliteTable("limits", { limitId: integer("limitId").primaryKey({ autoIncrement: true }), orgId: text("orgId") .references(() => orgs.orgId, { onDelete: "cascade", }) .notNull(), name: text("name").notNull(), value: integer("value").notNull(), description: text("description"), }); export const userInvites = sqliteTable("userInvites", { inviteId: text("inviteId").primaryKey(), orgId: text("orgId") .notNull() .references(() => orgs.orgId, { onDelete: "cascade" }), email: text("email").notNull(), expiresAt: integer("expiresAt").notNull(), tokenHash: text("token").notNull(), roleId: integer("roleId") .notNull() .references(() => roles.roleId, { onDelete: "cascade" }), }); export const resourcePincode = sqliteTable("resourcePincode", { pincodeId: integer("pincodeId").primaryKey({ autoIncrement: true, }), resourceId: integer("resourceId") .notNull() .references(() => resources.resourceId, { onDelete: "cascade" }), pincodeHash: text("pincodeHash").notNull(), digitLength: integer("digitLength").notNull(), }); export const resourcePassword = sqliteTable("resourcePassword", { passwordId: integer("passwordId").primaryKey({ autoIncrement: true, }), resourceId: integer("resourceId") .notNull() .references(() => resources.resourceId, { onDelete: "cascade" }), passwordHash: text("passwordHash").notNull(), }); export const resourceSessions = sqliteTable("resourceSessions", { sessionId: text("id").primaryKey(), resourceId: integer("resourceId") .notNull() .references(() => resources.resourceId, { onDelete: "cascade" }), expiresAt: integer("expiresAt").notNull(), passwordId: integer("passwordId").references( () => resourcePassword.passwordId, { onDelete: "cascade", }, ), pincodeId: integer("pincodeId").references( () => resourcePincode.pincodeId, { onDelete: "cascade", }, ), }); export const resourceOtp = sqliteTable("resourceOtp", { otpId: integer("otpId").primaryKey({ autoIncrement: true, }), resourceId: integer("resourceId") .notNull() .references(() => resources.resourceId, { onDelete: "cascade" }), email: text("email").notNull(), otpHash: text("otpHash").notNull(), expiresAt: integer("expiresAt").notNull(), }); export type Org = InferSelectModel; export type User = InferSelectModel; export type Site = InferSelectModel; export type Resource = InferSelectModel; export type ExitNode = InferSelectModel; export type Target = InferSelectModel; export type Session = InferSelectModel; export type Newt = InferSelectModel; export type NewtSession = InferSelectModel; export type EmailVerificationCode = InferSelectModel< typeof emailVerificationCodes >; export type TwoFactorBackupCode = InferSelectModel; export type PasswordResetToken = InferSelectModel; export type Role = InferSelectModel; export type Action = InferSelectModel; export type RoleAction = InferSelectModel; export type UserAction = InferSelectModel; export type RoleSite = InferSelectModel; export type UserSite = InferSelectModel; export type RoleResource = InferSelectModel; export type UserResource = InferSelectModel; export type Limit = InferSelectModel; export type UserInvite = InferSelectModel; export type UserOrg = InferSelectModel; export type ResourceSession = InferSelectModel; export type ResourcePincode = InferSelectModel; export type ResourcePassword = InferSelectModel; export type ResourceOtp = InferSelectModel;