-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.zmodel
435 lines (314 loc) · 12.1 KB
/
schema.zmodel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
directUrl = env("DIRECT_URL")
}
generator client {
provider = "prisma-client-js"
}
enum Status {
BACKLOG
IN_PROGRESS
DONE
CANCELLED
}
enum Priority {
NO_PRIORITY
HIGH
MEDIUM
LOW
}
model User {
id String @id() @default(cuid())
name String
email String @unique()
emailVerified DateTime?
image String?
hashedPassword String
lastWorkspaceUrl String?
ownedWorkspaces Workspace[] @relation("WorkspaceOwner")
workspaceMembers WorkspaceMember[]
projectMembers ProjectMember[]
assignedIssues Issue[] @relation("AssignedUser")
issues Issue[]
logs IssueActivity[]
comments Comment[]
authoredDiscussions Discussion[] @relation("DiscussionAuthor")
discussionPosts DiscussionPost[] @relation("DiscussionPostAuthor")
discussionLikes DiscussionLike[]
// can be created by anyone, even not logged in
@@allow('create', true)
// can be read by users sharing a workspace
@@allow('read', workspaceMembers?[workspace.members?[user == auth()]])
// full access by oneself
@@allow('all', auth() == this)
}
model Workspace {
id Int @id @default(autoincrement())
name String @unique
description String?
createdAt DateTime @default(now())
private Boolean @default(true)
url String @unique
members WorkspaceMember[]
projects Project[]
discussions Discussion[]
owner User @relation("WorkspaceOwner", fields: [ownerId], references: [id], onDelete: Cascade)
ownerId String @default(auth().id)
//everyone can read the workspace if it's not private or they're a member of the workspace
@@allow('read', !private || members?[user == auth()])
// workspace admin can create, and update
@@allow('create,update', members?[user == auth() && role == 'ADMIN'])
// Owner can do all operations
@@allow('all', owner == auth())
@@index([ownerId])
}
model WorkspaceMember {
workspace Workspace @relation(fields: [workspaceId], references: [id], onDelete: Cascade)
workspaceId Int
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
userId String
role Role @default(MEMBER)
// everyone can read the workspace if it's not private or they're a member of the workspace
@@allow('read', !workspace.private || workspace.members?[user == auth()])
// owner/admin can do all operations
@@allow('all', workspace.owner == auth() || workspace.members?[user == auth() && role == 'ADMIN'])
@@id([workspaceId, userId])
}
enum Role {
ADMIN
MEMBER
}
model Project {
id Int @id() @default(autoincrement())
identifier String @unique
title String
description String?
updatedAt DateTime @updatedAt()
createdAt DateTime @default(now())
archivedAt DateTime?
members ProjectMember[]
issues Issue[]
discussions Discussion[]
discussionCategories DiscussionCategory[]
workspace Workspace @relation(fields: [workspaceId], references: [id], onDelete: Cascade)
workspaceId Int
// Owner/Admin can do all operations
@@allow('all', check(workspace) || (workspace.members?[user == auth() && (role == 'ADMIN')]))
// can be read by everyone if it's not private or they're a member of the project
@@allow('read', check(workspace) || members?[user == auth()])
@@index([archivedAt, workspaceId])
}
model ProjectMember {
project Project @relation(fields: [projectId], references: [id], onDelete: Cascade)
projectId Int
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
userId String
// require login
@@deny('all', auth() == null)
// can be read by members within the project or everyone if it's not private
@@allow('read', true)
// members can be modified by the manager, owner, or admin
@@allow('all', project.workspace.owner == auth() || project.workspace.members?[user == auth() && (role == 'ADMIN')])
@@id([projectId, userId])
}
model Label {
id Int @id() @default(autoincrement())
name String
color String
issues IssueLabel[]
// can be read by everyone
@@allow('read', true)
// require login
@@deny('all', auth() == null)
}
model IssueLabel {
issueId Int
labelId Int
issue Issue @relation(fields: [issueId], references: [id], onDelete: Cascade)
label Label @relation(fields: [labelId], references: [id])
@@id([issueId, labelId])
@@allow('read', check(issue))
@@allow('create,update', check(issue))
// Temporary
@@allow('delete', true)
}
model Issue {
id Int @id() @default(autoincrement())
title String
status Status @default(BACKLOG)
priority Priority @default(NO_PRIORITY)
description String
assignedUser User? @relation(fields: [assignedUserId], references: [id], name: "AssignedUser")
assignedUserId String?
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt()
deletedAt DateTime? // Soft delete field
archivedAt DateTime?
owner User? @relation(fields: [ownerId], references: [id], onDelete: SetNull)
ownerId String? @default(auth().id)
project Project @relation(fields: [projectId], references: [id], onDelete: Cascade)
projectId Int
labels IssueLabel[]
activityLogs IssueActivity[]
comments Comment[]
// can be read by members of the project or if it's not private
@@allow('read', check(project))
// can be created by everyone within the project
@@allow('create', check(project))
// can be updated/deleted by the member who created the issue, admin
@@allow('update,delete', check(project) || auth() == owner )
// update cannot change owner
@@deny('update', future().owner != owner)
@@index([status])
@@index([priority])
@@index([createdAt])
}
model Comment {
id Int @id @default(autoincrement())
content String
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
deletedAt DateTime? // Soft delete field
author User @relation(fields: [authorId], references: [id])
authorId String
issue Issue @relation(fields: [issueId], references: [id], onDelete: Cascade)
issueId Int
parent Comment? @relation("ChildComments", fields: [parentId], references: [id])
parentId Int?
children Comment[] @relation("ChildComments")
// can be read/created by everyone within the project
@@allow('read,create', check(issue))
// can be deleted by the user who created the comment or admin
@@allow('delete', auth() == author || issue.project.workspace.members?[user == auth() && (role == 'ADMIN')])
@@index([authorId])
@@index([createdAt])
}
model IssueActivity {
id Int @id @default(autoincrement())
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
issue Issue @relation(fields: [issueId], references: [id], onDelete: Cascade)
issueId Int
user User @relation(fields: [userId], references: [id])
userId String @default(auth().id)
issueActivity String
@@delegate(issueActivity)
//temporary
// @@allow('all', true)
// can be read/created by everyone if the project is not private
@@allow('all', check(issue))
@@index([issueId, createdAt])
}
model StatusActivity extends IssueActivity {
statusName String
}
model PriorityActivity extends IssueActivity {
priorityName String
}
model TitleActivity extends IssueActivity {
title String
}
model DescriptionActivity extends IssueActivity {
body String
}
model AssignedActivity extends IssueActivity {
assignedUsername String
assignedUserImage String
}
model LabelActivity extends IssueActivity {
labelName String
labelColor String
action String
}
model CommentActivity extends IssueActivity {
commentId Int
// require login
@@deny('all', auth() == null)
// can be read by everyone if the project is not private
@@allow('read', true && !issue.project.workspace.private)
// can be created by the user within the workspace
@@allow('create', issue.project.workspace.members?[user == auth()])
// can be updated by the user who created the comment or admin
@@allow('update', auth() == user || issue.project.workspace.members?[user == auth() && role == 'ADMIN'])
}
model ProjectActivity extends IssueActivity {
projectName String
}
model DiscussionCategory {
id Int @id @default(autoincrement())
name String
description String?
emoji String?
project Project @relation(fields: [projectId], references: [id], onDelete: Cascade)
projectId Int
discussions Discussion[]
@@unique([projectId, name])
@@index([projectId])
// Permissions
@@allow('read', check(project))
@@allow('create,update,delete', project.workspace.members?[user == auth() && (role == 'ADMIN')])
}
model Discussion {
id Int @id @default(autoincrement())
title String
content String @db.Text
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
project Project @relation(fields: [projectId], references: [id], onDelete: Cascade)
projectId Int
author User @relation("DiscussionAuthor", fields: [authorId], references: [id])
authorId String
category DiscussionCategory @relation(fields: [categoryId], references: [id])
categoryId Int
posts DiscussionPost[]
isResolved Boolean @default(false)
viewCount Int @default(0)
likeCount Int @default(0)
workspace Workspace @relation(fields: [workspaceId], references: [id], onDelete: Cascade)
workspaceId Int
likes DiscussionLike[]
pinnedAt DateTime?
@@index([projectId])
@@index([createdAt])
@@index([categoryId])
// Permissions
@@allow('read', check(project))
@@allow('create', auth() != null && project.members?[user == auth()])
@@allow('update', auth() == author || project.workspace.members?[user == auth() && (role == 'ADMIN')])
@@allow('delete', project.workspace.members?[user == auth() && (role == 'ADMIN')])
}
model DiscussionLike {
id Int @id @default(autoincrement())
discussion Discussion @relation(fields: [discussionId], references: [id], onDelete: Cascade)
discussionId Int
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
userId String
@@unique([discussionId, userId])
@@index([discussionId])
@@index([userId])
// Permissions
@@allow('read', check(discussion))
// can be created/deleted by anyone within the workspace
@@allow('create,delete', discussion.workspace.members?[user == auth()])
}
model DiscussionPost {
id Int @id @default(autoincrement())
content String @db.Text
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
discussion Discussion @relation(fields: [discussionId], references: [id], onDelete: Cascade)
discussionId Int
author User @relation("DiscussionPostAuthor", fields: [authorId], references: [id])
authorId String
parent DiscussionPost? @relation("Replies", fields: [parentId], references: [id])
parentId Int?
replies DiscussionPost[] @relation("Replies")
isAccepted Boolean @default(false)
@@index([discussionId])
// Permissions
@@allow('read', check(discussion))
@@allow('create', auth() != null && discussion.project.members?[user == auth()])
@@allow('update', auth() == author)
@@allow('delete', auth() == author || discussion.project.workspace.members?[user == auth() && (role == 'ADMIN')])
}