-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Expand file tree
/
Copy pathnotification-template.repository.ts
More file actions
511 lines (420 loc) · 14.9 KB
/
notification-template.repository.ts
File metadata and controls
511 lines (420 loc) · 14.9 KB
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
import { DirectionEnum, ResourceOriginEnum, ResourceTypeEnum, SeverityLevelEnum } from '@novu/shared';
import { ClientSession, FilterQuery } from 'mongoose';
import { SoftDeleteModel } from 'mongoose-delete';
import { DalException } from '../../shared';
import type { EnforceEnvOrOrgIds } from '../../types/enforce';
import { BaseRepository } from '../base-repository';
import { EnvironmentRepository } from '../environment';
import { NotificationTemplateDBModel, NotificationTemplateEntity } from './notification-template.entity';
import { NotificationTemplate } from './notification-template.schema';
type NotificationTemplateQuery = FilterQuery<NotificationTemplateDBModel> & EnforceEnvOrOrgIds;
export class NotificationTemplateRepository extends BaseRepository<
NotificationTemplateDBModel,
NotificationTemplateEntity,
EnforceEnvOrOrgIds
> {
private notificationTemplate: SoftDeleteModel;
private environmentRepository = new EnvironmentRepository();
constructor() {
super(NotificationTemplate, NotificationTemplateEntity);
this.notificationTemplate = NotificationTemplate;
}
async findPublishable(environmentId: string, organizationId: string): Promise<NotificationTemplateEntity[]> {
const items = await this.MongooseModel.find({
_environmentId: environmentId,
_organizationId: organizationId,
type: ResourceTypeEnum.BRIDGE,
origin: ResourceOriginEnum.NOVU_CLOUD,
})
.select({
_id: 1,
name: 1,
'triggers.identifier': 1,
updatedAt: 1,
_updatedBy: 1,
_environmentId: 1,
isTranslationEnabled: 1,
})
.populate('updatedBy', '_id firstName lastName externalId')
.populate('lastPublishedBy', '_id firstName lastName externalId');
return this.mapEntities(items);
}
async findForBulkPreferences(
environmentId: string,
ids: string[],
identifiers: string[],
session?: ClientSession | null
) {
const requestQuery: NotificationTemplateQuery = {
_environmentId: environmentId,
$or: [{ _id: { $in: ids } }, { 'triggers.identifier': { $in: identifiers } }],
};
const query = this.MongooseModel.find(requestQuery, undefined, { session }).populate('steps.template', { type: 1 });
const items = await query;
return this.mapEntities(items);
}
async findByTriggerIdentifierBulk(
environmentId: string,
identifiers: string[],
options?: { session?: ClientSession | null }
): Promise<NotificationTemplateEntity[]>;
async findByTriggerIdentifierBulk<K extends keyof NotificationTemplateEntity>(
environmentId: string,
identifiers: string[],
options: { session?: ClientSession | null; select: K[] }
): Promise<Pick<NotificationTemplateEntity, K>[]>;
async findByTriggerIdentifierBulk<K extends keyof NotificationTemplateEntity>(
environmentId: string,
identifiers: string[],
options: { session?: ClientSession | null; select?: K[] } = {}
): Promise<NotificationTemplateEntity[] | Pick<NotificationTemplateEntity, K>[]> {
const { session, select } = options;
const requestQuery: NotificationTemplateQuery = {
_environmentId: environmentId,
'triggers.identifier': { $in: identifiers },
};
const projection = select ? Object.fromEntries(select.map((field) => [field, 1])) : undefined;
const baseQuery = this.MongooseModel.find(requestQuery, projection, { session });
const query = !select || select.includes('steps' as K) ? baseQuery.populate('steps.template') : baseQuery;
const items = await query;
return this.mapEntities(items) as NotificationTemplateEntity[] | Pick<NotificationTemplateEntity, K>[];
}
async findByTriggerIdentifier(
environmentId: string,
identifier: string,
session?: ClientSession | null,
includeUpdatedBy: boolean = true
) {
const requestQuery: NotificationTemplateQuery = {
_environmentId: environmentId,
'triggers.identifier': identifier,
};
const query = this.MongooseModel.findOne(requestQuery, undefined, {
session,
readPreference: 'secondaryPreferred',
}).populate('steps.template');
if (includeUpdatedBy) {
query.populate('updatedBy');
}
const item = await query;
return this.mapEntity(item);
}
async findAllByTriggerIdentifier(
environmentId: string,
identifier: string,
session?: ClientSession | null
): Promise<NotificationTemplateEntity[]> {
const requestQuery: NotificationTemplateQuery = {
_environmentId: environmentId,
'triggers.identifier': identifier,
};
const query = await this._model.find(requestQuery, { _id: 1, 'triggers.identifier': 1 }, { session });
return this.mapEntities(query);
}
async findById(id: string, environmentId: string, session?: ClientSession | null, includeUpdatedBy: boolean = true) {
const query = this.MongooseModel.findOne(
{
_id: id,
_environmentId: environmentId,
},
undefined,
{ session }
)
.populate('steps.template')
.populate('steps.variants.template');
if (includeUpdatedBy) {
query.populate('updatedBy');
}
const item = await query;
return this.mapEntity(item);
}
async updateLastTriggeredAt(
environmentId: string,
triggerIdentifier: string,
lastTriggeredAt: Date,
previousLastTriggeredAt: Date | null
) {
const updateResult = await this.MongooseModel.updateOne(
{
_environmentId: environmentId,
'triggers.identifier': triggerIdentifier,
$or: [{ lastTriggeredAt: null }, { lastTriggeredAt: previousLastTriggeredAt }],
},
{
$set: {
lastTriggeredAt,
},
},
{
timestamps: false,
writeConcern: { w: 1 },
}
);
return updateResult.modifiedCount > 0;
}
async updatePublishFields(workflowId: string, environmentId: string, userId: string, session?: ClientSession | null) {
const requestQuery: NotificationTemplateQuery = {
_id: workflowId,
_environmentId: environmentId,
};
const item = await this.MongooseModel.findOneAndUpdate(
requestQuery,
{
$set: {
lastPublishedAt: new Date(),
_lastPublishedBy: userId,
},
},
{ session, new: true }
);
return this.mapEntity(item);
}
async findBlueprintById(id: string) {
if (!this.blueprintOrganizationId) throw new DalException('Blueprint environment id was not found');
const requestQuery: NotificationTemplateQuery = {
isBlueprint: true,
_organizationId: this.blueprintOrganizationId,
_id: id,
};
const item = await this.MongooseModel.findOne(requestQuery)
.populate('steps.template')
.populate('notificationGroup')
.lean();
return this.mapEntity(item);
}
async findBlueprintByTriggerIdentifier(identifier: string) {
if (!this.blueprintOrganizationId) throw new DalException('Blueprint environment id was not found');
const requestQuery: NotificationTemplateQuery = {
isBlueprint: true,
_organizationId: this.blueprintOrganizationId,
triggers: { $elemMatch: { identifier } },
};
const item = await this.MongooseModel.findOne(requestQuery)
.populate('steps.template')
.populate('notificationGroup')
.lean();
return this.mapEntity(item);
}
async findBlueprintTemplates(organizationId: string, environmentId: string): Promise<NotificationTemplateEntity[]> {
const _organizationId = organizationId;
if (!_organizationId) throw new DalException('Blueprint environment id was not found');
const templates = await this.MongooseModel.find({
isBlueprint: true,
_environmentId: environmentId,
_organizationId,
})
.populate('steps.template')
.populate('notificationGroup')
.lean();
if (!templates) {
return [];
}
return this.mapEntities(templates);
}
async findAllGroupedByCategory(): Promise<{ name: string; blueprints: NotificationTemplateEntity[] }[]> {
const organizationId = this.blueprintOrganizationId;
if (!organizationId) {
return [];
}
const productionEnvironmentId = (
await this.environmentRepository.findOrganizationEnvironments(organizationId)
)?.find((env) => env.name === 'Production')?._id;
if (!productionEnvironmentId) {
throw new DalException(
`Production environment id for BLUEPRINT_CREATOR ${process.env.BLUEPRINT_CREATOR} was not found`
);
}
const requestQuery: NotificationTemplateQuery = {
isBlueprint: true,
_environmentId: productionEnvironmentId,
_organizationId: organizationId,
};
const result = await this.MongooseModel.find(requestQuery)
.populate('steps.template')
.populate('notificationGroup')
.lean();
const items = result?.map((item) => this.mapEntity(item));
const groupedItems = items.reduce((acc, item) => {
const notificationGroupId = item._notificationGroupId;
const notificationGroupName = item.notificationGroup?.name;
if (!acc[notificationGroupId]) {
acc[notificationGroupId] = {
name: notificationGroupName,
blueprints: [],
};
}
acc[notificationGroupId].blueprints.push(item);
return acc;
}, {});
return Object.values(groupedItems);
}
async getBlueprintList(skip = 0, limit = 10) {
if (!this.blueprintOrganizationId) {
return { totalCount: 0, data: [] };
}
const requestQuery: NotificationTemplateQuery = {
isBlueprint: true,
_organizationId: this.blueprintOrganizationId,
};
const totalItemsCount = await this.count(requestQuery);
const items = await this.MongooseModel.find(requestQuery)
.sort({ createdAt: -1 })
.skip(skip)
.limit(limit)
.populate({ path: 'notificationGroup' });
return { totalCount: totalItemsCount, data: this.mapEntities(items) };
}
async getList(
organizationId: string,
environmentId: string,
skip: number = 0,
limit: number = 10,
query?: string,
excludeNewDashboardWorkflows: boolean = false,
orderBy: string = 'createdAt',
orderDirection: DirectionEnum = DirectionEnum.DESC,
tags?: string[],
status?: string[]
): Promise<{ totalCount: number; data: NotificationTemplateEntity[] }> {
const searchQuery: FilterQuery<NotificationTemplateDBModel> = {};
if (query) {
searchQuery.$or = [
{ name: { $regex: regExpEscape(query), $options: 'i' } },
{ 'triggers.identifier': { $regex: regExpEscape(query), $options: 'i' } },
];
}
if (excludeNewDashboardWorkflows) {
searchQuery.$nor = [{ origin: 'novu-cloud', type: 'BRIDGE' }];
}
if (tags && tags.length > 0) {
searchQuery.tags = { $in: tags };
}
if (status && status.length > 0) {
searchQuery.status = { $in: status };
}
const totalItemsCount = await this.count({
_environmentId: environmentId,
...searchQuery,
});
const mongoQuery = this.MongooseModel.find({
_environmentId: environmentId,
_organizationId: organizationId,
...searchQuery,
})
.sort({ [orderBy]: orderDirection === DirectionEnum.ASC ? 1 : -1 })
.skip(skip)
.limit(limit)
.populate({ path: 'notificationGroup' })
.populate('steps.template', { type: 1 })
.select('-steps.variants')
.populate('updatedBy')
.populate('lastPublishedBy', '_id firstName lastName');
const items = await mongoQuery.lean();
return { totalCount: totalItemsCount, data: this.mapEntities(items) };
}
async filterActive({
organizationId,
environmentId,
tags,
critical,
severity,
select,
limit,
}: {
organizationId: string;
environmentId: string;
tags?: string[] | undefined;
critical?: boolean | undefined;
severity?: SeverityLevelEnum[] | undefined;
select?: string;
limit?: number;
}) {
const requestQuery: NotificationTemplateQuery = {
_environmentId: environmentId,
_organizationId: organizationId,
active: true,
};
const severityCondition: Array<FilterQuery<NotificationTemplateDBModel>> = [];
if (severity && severity?.length > 0) {
if (severity.includes(SeverityLevelEnum.NONE)) {
severityCondition.push({ severity: { $exists: false } }, { severity: { $in: severity } });
} else {
requestQuery.severity = { $in: severity };
}
}
if (tags && tags?.length > 0) {
requestQuery.tags = { $in: tags };
}
if (critical !== undefined) {
requestQuery.critical = { $eq: critical };
}
// combine all $or conditions properly
const orConditions: Array<FilterQuery<NotificationTemplateDBModel>> = [];
if (severityCondition.length > 0) {
orConditions.push({ $or: severityCondition });
}
if (orConditions.length > 0) {
requestQuery.$and = [...(requestQuery.$and ?? []), ...orConditions];
}
const query = this.MongooseModel.find(requestQuery)
.populate('steps.template', { type: 1 })
.limit(limit || 200)
.read('secondaryPreferred');
if (select) {
query.select(select);
}
const items = await query;
return this.mapEntities(items);
}
async delete(query: NotificationTemplateQuery) {
return await this.notificationTemplate.delete({ _id: query._id, _environmentId: query._environmentId });
}
async findDeleted(query: NotificationTemplateQuery): Promise<NotificationTemplateEntity> {
const res: NotificationTemplateEntity = await this.notificationTemplate.findDeleted(query);
return this.mapEntity(res);
}
private get blueprintOrganizationId(): string | undefined {
return NotificationTemplateRepository.getBlueprintOrganizationId();
}
public static getBlueprintOrganizationId(): string | undefined {
return process.env.BLUEPRINT_CREATOR;
}
async estimatedDocumentCount(): Promise<number> {
return this.notificationTemplate.estimatedDocumentCount();
}
async getTotalSteps(): Promise<number> {
const res = await this.notificationTemplate.aggregate<{ totalSteps: number }>([
{
$group: {
_id: null,
totalSteps: {
$sum: {
$cond: {
if: { $isArray: '$steps' },
// biome-ignore lint/suspicious/noThenProperty: MongoDB aggregation syntax requires 'then' property
then: { $size: '$steps' },
else: 0,
},
},
},
},
},
]);
if (res.length > 0) {
return res[0].totalSteps;
} else {
return 0;
}
}
async findWithTemplates(query: NotificationTemplateQuery): Promise<NotificationTemplateEntity[]> {
const items = await this.MongooseModel.find(query)
.populate('steps.template')
.populate('steps.variants.template')
.populate('updatedBy')
.lean();
return this.mapEntities(items);
}
}
function regExpEscape(literalString: string): string {
return literalString.replace(/[-[\]{}()*+!<=:?./\\^$|#\s,]/g, '\\$&');
}