* feat: introducing admin module, resolvers and service files as a module * feat: adding admin module in the app module * feat: introducing admin guard and decorator for allowing admin operations * feat: invited user model * chore: added user invitation mail description to mailer service * chore: added admin and user related error * feat: added invited users as a new model in prisma * chore: added admin related topics to pubsub * chore: added service method to fetch all users from user table * chore: added user deletion base implementation * Revert "chore: added user deletion base implementation" This reverts commit d1615ad83db2bae946e2d366a903d2f95051dabb. * feat: adding team related operations to admin * chore: adding admin related service methods to teams module service * chore: adding admin related service methods to team coll invitations requests envs * chore: added more module error messages * chore: added admin check service method * chore: added find individual user by UID in admin * HBE-106 feat: introduced code to handle first time admin login setup (#23) * test: wrote test cases for verifyAdmin route service method * chore: added comments to verifyAdmin service method * chore: deleted the prisma migration file * chore: added find admin users * feat: added user deletion into admin module * chore: admin user related errors * chore: fixed registry pattern in the shortcodes and teams to handle user deletion * chore: add subscription topic for user deletion * chore: updated user type in data handler * feat: implement and fix user deletion * feat: added make user admin mutation * chore: added unit tests for admin specific service methods in admin module * chore: added invitation not found error * chore: added admin specific operation test cases in specific modules * chore: added tests related to user deletion and admin related operation in user module * chore: updated to error constant when invitations not found * chore: fix rebase overwritten methods * feat: implement remove user as admin * chore: add new line * feat: introducing basic metrics into the self-hosted admin module (HBE-104) (#43) * feat: introducing admin module, resolvers and service files as a module * feat: adding admin module in the app module * feat: introducing admin guard and decorator for allowing admin operations * feat: invited user model * chore: added user invitation mail description to mailer service * chore: added admin and user related error * feat: added invited users as a new model in prisma * chore: added admin related topics to pubsub * chore: added service method to fetch all users from user table * chore: added user deletion base implementation * Revert "chore: added user deletion base implementation" This reverts commit d1615ad83db2bae946e2d366a903d2f95051dabb. * feat: adding team related operations to admin * chore: adding admin related service methods to teams module service * chore: adding admin related service methods to team coll invitations requests envs * chore: added more module error messages * chore: added admin check service method * chore: added find individual user by UID in admin * HBE-106 feat: introduced code to handle first time admin login setup (#23) * test: wrote test cases for verifyAdmin route service method * chore: added comments to verifyAdmin service method * chore: deleted the prisma migration file * chore: added find admin users * feat: added user deletion into admin module * chore: admin user related errors * chore: fixed registry pattern in the shortcodes and teams to handle user deletion * chore: add subscription topic for user deletion * chore: updated user type in data handler * feat: implement and fix user deletion * feat: added make user admin mutation * chore: added unit tests for admin specific service methods in admin module * chore: added invitation not found error * chore: added admin specific operation test cases in specific modules * chore: added tests related to user deletion and admin related operation in user module * chore: updated to error constant when invitations not found * chore: fix rebase overwritten methods * feat: implement remove user as admin * chore: add new line * chore: created new GQL return type for admin module * chore: created resolver and service method for method to fetch org metrics * chore: removed all entities relevant to seperate query for fetching admin metrics * chore: created all resolvers for metrics * feat: completed adding field resolves to query org metrics * test: wrote tests for all metrics related methods in admin module * test: added test cases for get count functions in multiple modules * chore: removed prisma migration folder * Delete backend-schema.gql * chore: resolved merge conflicts in team test file --------- Co-authored-by: ankitsridhar16 <ankit.sridhar16@gmail.com> * refactor: update mailer service to stop using postmark (#38) * refactor: update mailer service to stop using postmark * chore: remove postmark as a dep and move out postmark code * chore: remove postmark variables from .env.example * chore: add formal errors for mailer initialization errors * chore: add and update jsdoc comments in mailer service methods * chore: added user invitation mail description to mailer service * chore: updated with review changes requested for admin module * feat: adding admin resolver to gql schema * feat: adding input args for admin resolvers * chore: invited user renamed * chore: updated mailer service to be compatible with new mailer * chore: updated team service with review changes * chore: updated team collection service with review changes * chore: updated team environments service with review changes * chore: updated team requests service with review changes * chore: updated user service with review changes * refactor: invited user model * chore: review changes implemented * chore: implemented the review changes for admin, user and teams module * chore: removed error handling and implemented review changes * refactor: naming change for IsAdmin --------- Co-authored-by: Balu Babu <balub997@gmail.com> Co-authored-by: Andrew Bastin <andrewbastin.k@gmail.com>
206 lines
6.2 KiB
Plaintext
206 lines
6.2 KiB
Plaintext
datasource db {
|
|
provider = "postgresql"
|
|
url = env("DATABASE_URL")
|
|
}
|
|
|
|
generator client {
|
|
provider = "prisma-client-js"
|
|
binaryTargets = ["native", "debian-openssl-1.1.x"]
|
|
}
|
|
|
|
model Team {
|
|
id String @id @default(cuid())
|
|
name String
|
|
members TeamMember[]
|
|
TeamInvitation TeamInvitation[]
|
|
TeamCollection TeamCollection[]
|
|
TeamRequest TeamRequest[]
|
|
TeamEnvironment TeamEnvironment[]
|
|
}
|
|
|
|
model TeamMember {
|
|
id String @id @default(uuid()) // Membership ID
|
|
role TeamMemberRole
|
|
userUid String
|
|
teamID String
|
|
team Team @relation(fields: [teamID], references: [id], onDelete: Cascade)
|
|
|
|
@@unique([teamID, userUid])
|
|
}
|
|
|
|
model TeamInvitation {
|
|
id String @id @default(cuid())
|
|
teamID String
|
|
team Team @relation(fields: [teamID], references: [id], onDelete: Cascade)
|
|
creatorUid String
|
|
inviteeEmail String
|
|
inviteeRole TeamMemberRole
|
|
|
|
@@unique([teamID, inviteeEmail])
|
|
@@index([teamID])
|
|
}
|
|
|
|
model TeamCollection {
|
|
id String @id @default(cuid())
|
|
parentID String?
|
|
parent TeamCollection? @relation("TeamCollectionChildParent", fields: [parentID], references: [id])
|
|
children TeamCollection[] @relation("TeamCollectionChildParent")
|
|
requests TeamRequest[]
|
|
teamID String
|
|
team Team @relation(fields: [teamID], references: [id], onDelete: Cascade)
|
|
title String
|
|
orderIndex Int
|
|
createdOn DateTime @default(now()) @db.Timestamp(3)
|
|
updatedOn DateTime @updatedAt @db.Timestamp(3)
|
|
}
|
|
|
|
model TeamRequest {
|
|
id String @id @default(cuid())
|
|
collectionID String
|
|
collection TeamCollection @relation(fields: [collectionID], references: [id], onDelete: Cascade)
|
|
teamID String
|
|
team Team @relation(fields: [teamID], references: [id], onDelete: Cascade)
|
|
title String
|
|
request Json
|
|
orderIndex Int
|
|
createdOn DateTime @default(now()) @db.Timestamp(3)
|
|
updatedOn DateTime @updatedAt @db.Timestamp(3)
|
|
}
|
|
|
|
model Shortcode {
|
|
id String @id
|
|
request Json
|
|
creatorUid String?
|
|
createdOn DateTime @default(now())
|
|
|
|
@@unique(fields: [id, creatorUid], name: "creator_uid_shortcode_unique")
|
|
}
|
|
|
|
model TeamEnvironment {
|
|
id String @id @default(cuid())
|
|
teamID String
|
|
team Team @relation(fields: [teamID], references: [id], onDelete: Cascade)
|
|
name String
|
|
variables Json
|
|
}
|
|
|
|
model User {
|
|
uid String @id @default(cuid())
|
|
displayName String?
|
|
email String? @unique
|
|
photoURL String?
|
|
isAdmin Boolean @default(false)
|
|
refreshToken String?
|
|
providerAccounts Account[]
|
|
VerificationToken VerificationToken[]
|
|
settings UserSettings?
|
|
UserHistory UserHistory[]
|
|
UserEnvironments UserEnvironment[]
|
|
userCollections UserCollection[]
|
|
userRequests UserRequest[]
|
|
currentRESTSession Json?
|
|
currentGQLSession Json?
|
|
createdOn DateTime @default(now()) @db.Timestamp(3)
|
|
invitedUsers InvitedUsers[]
|
|
}
|
|
|
|
model Account {
|
|
id String @id @default(cuid())
|
|
userId String
|
|
user User @relation(fields: [userId], references: [uid], onDelete: Cascade)
|
|
provider String
|
|
providerAccountId String
|
|
providerRefreshToken String?
|
|
providerAccessToken String?
|
|
providerScope String?
|
|
loggedIn DateTime @default(now()) @db.Timestamp(3)
|
|
|
|
@@unique(fields: [provider, providerAccountId], name: "verifyProviderAccount")
|
|
}
|
|
|
|
model VerificationToken {
|
|
deviceIdentifier String
|
|
token String @unique @default(cuid())
|
|
userUid String
|
|
user User @relation(fields: [userUid], references: [uid], onDelete: Cascade)
|
|
expiresOn DateTime @db.Timestamp(3)
|
|
|
|
@@unique(fields: [deviceIdentifier, token], name: "passwordless_deviceIdentifier_tokens")
|
|
}
|
|
|
|
model UserSettings {
|
|
id String @id @default(cuid())
|
|
userUid String @unique
|
|
user User @relation(fields: [userUid], references: [uid], onDelete: Cascade)
|
|
properties Json
|
|
updatedOn DateTime @updatedAt @db.Timestamp(3)
|
|
}
|
|
|
|
model UserHistory {
|
|
id String @id @default(cuid())
|
|
userUid String
|
|
user User @relation(fields: [userUid], references: [uid], onDelete: Cascade)
|
|
reqType ReqType
|
|
request Json
|
|
responseMetadata Json
|
|
isStarred Boolean
|
|
executedOn DateTime @default(now()) @db.Timestamp(3)
|
|
}
|
|
|
|
enum ReqType {
|
|
REST
|
|
GQL
|
|
}
|
|
|
|
model UserEnvironment {
|
|
id String @id @default(cuid())
|
|
userUid String
|
|
user User @relation(fields: [userUid], references: [uid], onDelete: Cascade)
|
|
name String?
|
|
variables Json
|
|
isGlobal Boolean
|
|
}
|
|
|
|
model InvitedUsers {
|
|
adminUid String
|
|
user User @relation(fields: [adminUid], references: [uid], onDelete: Cascade)
|
|
adminEmail String
|
|
inviteeEmail String @unique
|
|
invitedOn DateTime @default(now()) @db.Timestamp(3)
|
|
}
|
|
|
|
model UserRequest {
|
|
id String @id @default(cuid())
|
|
userCollection UserCollection @relation(fields: [collectionID], references: [id])
|
|
collectionID String
|
|
userUid String
|
|
user User @relation(fields: [userUid], references: [uid], onDelete: Cascade)
|
|
title String
|
|
request Json
|
|
type ReqType
|
|
orderIndex Int
|
|
createdOn DateTime @default(now()) @db.Timestamp(3)
|
|
updatedOn DateTime @updatedAt @db.Timestamp(3)
|
|
}
|
|
|
|
model UserCollection {
|
|
id String @id @default(cuid())
|
|
parentID String?
|
|
parent UserCollection? @relation("ParentUserCollection", fields: [parentID], references: [id], onDelete: Cascade)
|
|
children UserCollection[] @relation("ParentUserCollection")
|
|
requests UserRequest[]
|
|
userUid String
|
|
user User @relation(fields: [userUid], references: [uid], onDelete: Cascade)
|
|
title String
|
|
orderIndex Int
|
|
type ReqType
|
|
createdOn DateTime @default(now()) @db.Timestamp(3)
|
|
updatedOn DateTime @updatedAt @db.Timestamp(3)
|
|
}
|
|
|
|
enum TeamMemberRole {
|
|
OWNER
|
|
VIEWER
|
|
EDITOR
|
|
}
|