-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathproject.ts
More file actions
406 lines (350 loc) · 8.59 KB
/
project.ts
File metadata and controls
406 lines (350 loc) · 8.59 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
import { Collection, ObjectId } from 'mongodb';
import AbstractModel from './abstractModel';
import { NotificationsChannelsDBScheme } from '../types/notification-channels';
import { ProjectDBScheme } from '@hawk.so/types';
import uuid from 'uuid';
/**
* This structure represents a single rule of notifications settings
*/
export interface ProjectNotificationsRuleDBScheme {
/**
* Id of Rule
*/
_id: ObjectId;
/**
* Allows to disable rule without removing
*/
isEnabled: boolean;
/**
* Creator of the rule
*/
uidAdded: ObjectId;
/**
* Receive type: 'ALL' or 'ONLY_NEW'
*/
whatToReceive: ReceiveTypes;
/**
* Only those which contains passed words
*/
including: string[];
/**
* Skip those which contains passed words
*/
excluding: string[];
/**
* Available channels to receive
*/
channels: NotificationsChannelsDBScheme;
}
/**
* Available options of 'What to receive'
*/
export enum ReceiveTypes {
/**
* All notifications
*/
ALL = 'ALL',
/**
* Only first occurrence
*/
ONLY_NEW = 'ONLY_NEW',
}
/**
* Payload for creating new notification rule
*/
export interface CreateProjectNotificationsRulePayload {
/**
* Allows to disable rule without removing
*/
isEnabled: true;
/**
* Receive type: 'ALL' or 'ONLY_NEW'
*/
whatToReceive: ReceiveTypes;
/**
* Only those which contains passed words
*/
including: string[];
/**
* Skip those which contains passed words
*/
excluding: string[];
/**
* Creator of the rule
*/
uidAdded: string;
/**
* Available channels to receive
*/
channels: NotificationsChannelsDBScheme;
}
/**
* Payload for updating existing notifications rule
*/
interface UpdateProjectNotificationsRulePayload {
/**
* Rule id to update
*/
ruleId: string;
/**
* Allows to disable rule without removing
*/
isEnabled: true;
/**
* Receive type: 'ALL' or 'ONLY_NEW'
*/
whatToReceive: ReceiveTypes;
/**
* Only those which contains passed words
*/
including: string[];
/**
* Skip those which contains passed words
*/
excluding: string[];
/**
* Available channels to receive
*/
channels: NotificationsChannelsDBScheme;
}
/**
* Project model to work with project data
*/
export default class ProjectModel extends AbstractModel<ProjectDBScheme> implements ProjectDBScheme {
/**
* Project ID
*/
public _id!: ObjectId;
/**
* Integration id that's used in collector URL
*/
public integrationId!: string;
/**
* Project Integration Token
*/
public token!: string;
/**
* Project name
*/
public name!: string;
/**
* User who created project
*/
public uidAdded!: ObjectId;
/**
* Workspace id which project is belong
*/
public workspaceId!: ObjectId;
/**
* Project description
*/
public description?: string;
/**
* URL of a project logo
*/
public image?: string;
/**
* Project notifications settings
*/
public notifications!: ProjectNotificationsRuleDBScheme[];
/**
* Model's collection
*/
protected collection: Collection<ProjectDBScheme>;
/**
* Creates Workspace instance
* @param projectData - workspace's data
*/
constructor(projectData: ProjectDBScheme) {
super(projectData);
this.collection = this.dbConnection.collection<ProjectDBScheme>('projects');
}
/**
* Generates integration ID that's used in collector URL for sending events
*/
public static generateIntegrationId(): string {
return uuid.v4();
}
/**
* Generates new integration token with integration id field
*
* @param integrationId - integration id for using in collector URL
*/
public static generateIntegrationToken(integrationId: string): string {
const secret = uuid.v4();
const decodedIntegrationToken = {
integrationId,
secret,
};
return Buffer
.from(JSON.stringify(decodedIntegrationToken))
.toString('base64');
}
/**
* Creates new notification rule and add it to start of the array of notifications rules
* @param payload - rule data to save
*/
public async createNotificationsRule(payload: CreateProjectNotificationsRulePayload): Promise<ProjectNotificationsRuleDBScheme> {
const rule: ProjectNotificationsRuleDBScheme = {
_id: new ObjectId(),
uidAdded: new ObjectId(payload.uidAdded),
isEnabled: payload.isEnabled,
whatToReceive: payload.whatToReceive,
channels: payload.channels,
including: payload.including,
excluding: payload.excluding,
};
await this.collection.updateOne({
_id: this._id,
},
{
$push: {
notifications: {
$each: [ rule ],
$position: 0,
},
},
});
return rule;
}
/**
* Updates notifications rule in project
* @param payload - data for updating
*/
public async updateNotificationsRule(payload: UpdateProjectNotificationsRulePayload): Promise<ProjectNotificationsRuleDBScheme | null> {
const rule: Partial<ProjectNotificationsRuleDBScheme> = {
_id: new ObjectId(payload.ruleId),
isEnabled: payload.isEnabled,
whatToReceive: payload.whatToReceive,
channels: payload.channels,
including: payload.including,
excluding: payload.excluding,
};
const result = await this.collection.findOneAndUpdate(
{
_id: this._id,
notifications: {
$elemMatch: {
_id: new ObjectId(payload.ruleId),
},
},
},
{
$set: {
'notifications.$': rule,
},
},
{
returnOriginal: false,
}
);
return result.value?.notifications.find(doc => doc._id.toString() === payload.ruleId) || null;
}
/**
* Removes notifications rule
* @param ruleId - rule id to delete
*/
public async deleteNotificationsRule(ruleId: string): Promise<ProjectNotificationsRuleDBScheme | null> {
const result = await this.collection.findOneAndUpdate(
{
_id: this._id,
},
{
$pull: {
notifications: {
_id: new ObjectId(ruleId),
},
},
},
{
returnOriginal: false,
});
return result.value?.notifications.find(doc => doc._id.toString() === ruleId) || null;
}
/**
* Toggles enabled state of the notifications rule
* @param ruleId - rule id to update
*/
public async toggleNotificationsRuleEnabledState(ruleId: string): Promise<ProjectNotificationsRuleDBScheme | null> {
const rule = this.notifications.find(_rule => _rule._id.toString() === ruleId);
if (!rule) {
return null;
}
rule.isEnabled = !rule.isEnabled;
const result = await this.collection.findOneAndUpdate(
{
_id: this._id,
notifications: {
$elemMatch: {
_id: new ObjectId(ruleId),
},
},
},
{
$set: {
'notifications.$': rule,
},
},
{
returnOriginal: false,
}
);
return result.value?.notifications.find(doc => doc._id.toString() === ruleId) || null;
}
/**
* Updates project data in DataBase
* @param projectData - projectData to save
*/
public async updateProject(projectData: ProjectDBScheme): Promise<ProjectDBScheme> {
let result;
try {
result = await this.collection.findOneAndUpdate(
{ _id: new ObjectId(this._id) },
{
$set: projectData,
},
{ returnOriginal: false }
);
} catch (e) {
throw new Error('Can\'t update project');
}
if (!result.value) {
throw new Error('There is no project with provided id');
}
return result.value;
}
/**
* Remove project data
*/
public async remove(): Promise<void> {
await this.collection.deleteOne({ _id: this._id });
try {
/**
* Remove users in project collection
*/
await this.dbConnection.collection('users-in-project:' + this._id)
.drop();
} catch (error) {
console.log(`Can't remove collection "users-in-project:${this._id}" because it doesn't exist.`);
console.log(error);
}
}
/**
* Mark project as removed.
*/
public async markProjectAsRemoved(): Promise<void> {
await this.collection.updateOne({ _id: this._id }, {
$set: { isRemoved: true },
});
try {
/**
* Remove users in project collection
*/
await this.dbConnection.collection('users-in-project:' + this._id)
.drop();
} catch (error) {
console.log(`Can't remove collection "users-in-project:${this._id}" because it doesn't exist.`);
console.log(error);
}
}
}