-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathseed.ts
549 lines (498 loc) · 13.2 KB
/
seed.ts
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
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
import {
randBasketballTeam,
randBook,
randCity,
randDog,
randEmail,
randFirstName,
randJobTitle,
randLastName,
randNumber,
randUserName,
randUuid,
} from '@ngneat/falso';
import { NodePgDatabase } from 'drizzle-orm/node-postgres';
import { createInsertSchema } from 'drizzle-zod';
import { z } from 'zod';
import { dataSchema, fieldsSchema, insertOptionsSchema } from '../types';
import * as schema from './schema';
// Define the data types for the seed function
const insertCycleSchema = createInsertSchema(schema.cycles);
const insertEventSchema = createInsertSchema(schema.events, {
fields: fieldsSchema,
});
const insertGroupCategoriesSchema = createInsertSchema(schema.groupCategories);
const insertGroupsSchema = createInsertSchema(schema.groups);
const insertQuestionsSchema = createInsertSchema(schema.questions, {
fields: fieldsSchema,
});
const insertQuestionsToGroupCategoriesSchema = createInsertSchema(
schema.questionsToGroupCategories,
);
const insertUsersSchema = createInsertSchema(schema.users);
const insertUsersToGroupsSchema = createInsertSchema(schema.usersToGroups);
async function seed(dbPool: NodePgDatabase<typeof schema>) {
const randCityFieldId = randUuid();
const randAgeFieldId = randUuid();
const events = await createEvent(dbPool, [
{
name: randCity(),
fields: {
[randCityFieldId]: {
id: randCityFieldId,
name: 'city',
type: 'TEXT',
position: 0,
validation: {
required: true,
},
},
[randAgeFieldId]: {
id: randAgeFieldId,
name: 'age',
type: 'NUMBER',
position: 1,
validation: {
required: true,
},
},
},
},
]);
const cycles = await createCycle(dbPool, [
{
startAt: new Date(),
// end in 5 mins
endAt: new Date(Date.now() + 300000),
status: 'OPEN',
eventId: events[0]!.id,
},
]);
const forumQuestions = await createQuestions(dbPool, [
{
cycleId: cycles[0]!.id,
title: 'What do you think about this event?',
voteModel: 'COCM',
},
{
cycleId: cycles[0]!.id,
title: 'How do you feel about this event?',
voteModel: 'QV',
},
]);
const questionOptions = await createQuestionOptions(dbPool, [
{
questionId: forumQuestions[0]!.id,
title: 'Great',
show: false,
},
{
questionId: forumQuestions[0]!.id,
title: 'Good',
show: true,
},
{
questionId: forumQuestions[0]!.id,
title: 'Bad',
show: true,
},
]);
const groupCategories = await createGroupCategories(dbPool, [
{ eventId: events[0]!.id, name: 'affiliation', userCanView: true, required: true },
{ eventId: events[0]!.id, name: 'public', userCanView: true, userCanCreate: false },
{ eventId: events[0]!.id, name: 'secrets', userCanCreate: true, userCanView: false },
{
eventId: events[0]!.id,
name: 'tension',
userCanCreate: true,
userCanView: true,
required: false,
},
]);
const groups = await createGroups(dbPool, [
// 5 groups in first category
{
name: randBasketballTeam(),
groupCategoryId: groupCategories[0]!.id,
},
{
name: randBasketballTeam(),
groupCategoryId: groupCategories[0]!.id,
},
{
name: randBasketballTeam(),
groupCategoryId: groupCategories[0]!.id,
},
{
name: randBasketballTeam(),
groupCategoryId: groupCategories[0]!.id,
},
{
name: randBasketballTeam(),
groupCategoryId: groupCategories[0]!.id,
},
// 4 groups in second category
{
name: randBook().title,
groupCategoryId: groupCategories[1]!.id,
},
{
name: randBook().title,
groupCategoryId: groupCategories[1]!.id,
},
{
name: randBook().title,
groupCategoryId: groupCategories[1]!.id,
},
{
name: randBook().title,
groupCategoryId: groupCategories[1]!.id,
},
// 3 groups in third category
{
name: randJobTitle(),
groupCategoryId: groupCategories[2]!.id,
},
{
name: randJobTitle(),
groupCategoryId: groupCategories[2]!.id,
},
{
name: randJobTitle(),
groupCategoryId: groupCategories[2]!.id,
},
// 3 groups in fourth category
{
name: randDog(),
groupCategoryId: groupCategories[3]!.id,
},
{
name: randDog(),
groupCategoryId: groupCategories[3]!.id,
},
{
name: randDog(),
groupCategoryId: groupCategories[3]!.id,
},
]);
const users = await createUsers(dbPool, [
// 3 random users
{
email: randEmail(),
username: randUserName(),
firstName: randFirstName(),
lastName: randLastName(),
},
{
email: randEmail(),
username: randUserName(),
firstName: randFirstName(),
lastName: randLastName(),
},
{
email: randEmail(),
username: randUserName(),
firstName: randFirstName(),
lastName: randLastName(),
},
]);
const usersToGroups = await createUsersToGroups(
dbPool,
// user0 => [group0, group1]
// user1 => [group0, group1]
// user2 => [group0, group2]
[
// user1
{
userId: users[0]!.id,
groupId: groups[0]!.id,
groupCategoryId: groups[0]!.groupCategoryId,
},
{
userId: users[0]!.id,
groupId: groups[1]!.id,
groupCategoryId: groups[1]!.groupCategoryId,
},
// user2
{
userId: users[1]!.id,
groupId: groups[0]!.id,
groupCategoryId: groups[0]!.groupCategoryId,
},
{
userId: users[1]!.id,
groupId: groups[1]!.id,
groupCategoryId: groups[1]!.groupCategoryId,
},
// user3
{
userId: users[2]!.id,
groupId: groups[0]!.id,
groupCategoryId: groups[0]!.groupCategoryId,
},
{
userId: users[2]!.id,
groupId: groups[2]!.id,
groupCategoryId: groups[2]!.groupCategoryId,
},
],
);
const questionsToGroupCategories = await createQuestionsToGroupCategories(dbPool, [
{
questionId: forumQuestions[0]!.id,
groupCategoryId: groupCategories[0]!.id,
},
]);
const registration: z.infer<typeof dataSchema> = {
[randCityFieldId]: {
fieldId: randCityFieldId,
value: randCity(),
type: 'TEXT',
},
[randAgeFieldId]: {
fieldId: randAgeFieldId,
value: randNumber({ min: 18, max: 99 }),
type: 'NUMBER',
},
};
await dbPool
.insert(schema.registrations)
.values({
eventId: events[0]!.id,
userId: users[0]!.id,
data: registration,
})
.returning();
return {
events,
cycles,
forumQuestions,
questionOptions,
groupCategories,
groups,
users,
usersToGroups,
questionsToGroupCategories,
};
}
async function cleanup(dbPool: NodePgDatabase<typeof schema>) {
await dbPool.delete(schema.userAttributes);
await dbPool.delete(schema.votes);
await dbPool.delete(schema.federatedCredentials);
await dbPool.delete(schema.options);
await dbPool.delete(schema.registrationData);
await dbPool.delete(schema.registrationFieldOptions);
await dbPool.delete(schema.registrationFields);
await dbPool.delete(schema.registrations);
await dbPool.delete(schema.usersToGroups);
await dbPool.delete(schema.users);
await dbPool.delete(schema.groups);
await dbPool.delete(schema.questionsToGroupCategories);
await dbPool.delete(schema.groupCategories);
await dbPool.delete(schema.questions);
await dbPool.delete(schema.cycles);
await dbPool.delete(schema.events);
}
async function createEvent(
dbPool: NodePgDatabase<typeof schema>,
eventData: z.infer<typeof insertEventSchema>[],
) {
const events = [];
for (const event of eventData) {
const result = await dbPool
.insert(schema.events)
.values({
name: event.name,
fields: event.fields,
})
.returning();
events.push(result[0]);
}
return events;
}
async function createCycle(
dbPool: NodePgDatabase<typeof schema>,
cycleData: z.infer<typeof insertCycleSchema>[],
) {
if (cycleData.length === 0) {
throw new Error('Cycle data is empty.');
}
const cycles = [];
for (const cycle of cycleData) {
if (!cycle.eventId) {
throw new Error('Event ID is not defined.');
}
const result = await dbPool
.insert(schema.cycles)
.values({
startAt: cycle.startAt,
endAt: cycle.endAt,
status: cycle.status,
eventId: cycle.eventId,
})
.returning();
cycles.push(result[0]);
}
return cycles;
}
async function createQuestions(
dbPool: NodePgDatabase<typeof schema>,
questionData: z.infer<typeof insertQuestionsSchema>[],
) {
if (questionData.length === 0) {
throw new Error('Forum Question data is empty.');
}
const questions = [];
for (const question of questionData) {
const result = await dbPool
.insert(schema.questions)
.values({
cycleId: question.cycleId,
title: question.title,
voteModel: question.voteModel,
})
.returning();
questions.push(result[0]);
}
return questions;
}
async function createQuestionOptions(
dbPool: NodePgDatabase<typeof schema>,
optionData: z.infer<typeof insertOptionsSchema>[],
) {
if (optionData.length === 0) {
throw new Error('Question Option data is empty.');
}
const options = [];
for (const option of optionData) {
if (!option.questionId) {
throw new Error('Question ID is not defined for the question option.');
}
const result = await dbPool
.insert(schema.options)
.values({
questionId: option.questionId,
title: option.title,
show: option.show,
})
.returning();
options.push(result[0]);
}
return options;
}
async function createGroupCategories(
dbPool: NodePgDatabase<typeof schema>,
groupCategoriesData: z.infer<typeof insertGroupCategoriesSchema>[],
) {
if (groupCategoriesData.length === 0) {
throw new Error('Group Categories data is empty.');
}
const groupCategories = [];
for (const data of groupCategoriesData) {
if (!data.eventId) {
throw new Error('Event ID is not defined for the group category.');
}
const result = await dbPool
.insert(schema.groupCategories)
.values({
name: data.name,
eventId: data.eventId,
userCanCreate: data.userCanCreate,
userCanView: data.userCanView,
required: data.required,
})
.returning();
groupCategories.push(result[0]);
}
return groupCategories;
}
async function createGroups(
dbPool: NodePgDatabase<typeof schema>,
groupData: z.infer<typeof insertGroupsSchema>[],
) {
if (groupData.length === 0) {
throw new Error('Group Data is empty.');
}
const groups = [];
for (const group of groupData) {
if (!group.groupCategoryId) {
throw new Error('Group Category ID is not defined for the group.');
}
const result = await dbPool
.insert(schema.groups)
.values({
name: group.name,
groupCategoryId: group.groupCategoryId,
})
.returning();
groups.push(result[0]);
}
return groups;
}
async function createUsers(
dbPool: NodePgDatabase<typeof schema>,
userData: z.infer<typeof insertUsersSchema>[],
) {
const users = [];
for (const user of userData) {
const result = await dbPool
.insert(schema.users)
.values({
username: user.username,
email: user.email,
firstName: user.firstName,
lastName: user.lastName,
})
.returning();
users.push(result[0]);
}
return users;
}
async function createUsersToGroups(
dbPool: NodePgDatabase<typeof schema>,
usersToGroupsData: z.infer<typeof insertUsersToGroupsSchema>[],
) {
if (usersToGroupsData.length === 0) {
throw new Error('Users to Groups Data is empty.');
}
const usersToGroups = [];
for (const group of usersToGroupsData) {
if (!group.groupId) {
throw new Error('Group ID is not defined for the users to groups relationship.');
}
const result = await dbPool
.insert(schema.usersToGroups)
.values({
userId: group.userId,
groupId: group.groupId,
groupCategoryId: group.groupCategoryId,
})
.returning();
usersToGroups.push(result[0]);
}
return usersToGroups;
}
async function createQuestionsToGroupCategories(
dbPool: NodePgDatabase<typeof schema>,
questionsToGroupCategoriesData: z.infer<typeof insertQuestionsToGroupCategoriesSchema>[],
) {
if (questionsToGroupCategoriesData.length === 0) {
throw new Error('Questions to Group Categories Data is empty.');
}
const questionsToGroupCategories = [];
for (const groupCategories of questionsToGroupCategoriesData) {
if (!groupCategories.questionId) {
throw new Error('Question ID is not defined for the group Category.');
}
const result = await dbPool
.insert(schema.questionsToGroupCategories)
.values({
questionId: groupCategories.questionId,
groupCategoryId: groupCategories.groupCategoryId,
})
.returning();
questionsToGroupCategories.push(result[0]);
}
return questionsToGroupCategories;
}
export { cleanup, seed };