-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathevent.js
More file actions
356 lines (306 loc) · 11.3 KB
/
event.js
File metadata and controls
356 lines (306 loc) · 11.3 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
const getEventsFactory = require('./helpers/eventsFactory').default;
const {
fireAndForgetAssigneeNotifications,
parseBulkEventIds,
mergeFailedEventIds,
} = require('./helpers/bulkEvents');
const { aiService } = require('../services/ai');
const { UserInputError } = require('apollo-server-express');
/**
* See all types and fields here {@see ../typeDefs/event.graphql}
*/
module.exports = {
EventMarks: {
starred(marks) {
return 'starred' in marks;
},
ignored(marks) {
return 'ignored' in marks;
},
resolved(marks) {
return 'resolved' in marks;
},
},
Event: {
/**
* Returns repetitions portion of the event
*
* @param {String} projectId - id of the project got from the parent node (event)
* @param {String} originalEventId - id of the original event of the repetitions to get, got from parent node (event)
* @param {Number} limit - argument of the query, maximal count of the repetitions in one portion
* @param {Number|null} cursor - pointer to the next portion of repetition, could be null if we want to get first portion
*
* @return {RepetitionsPortion}
*/
async repetitionsPortion({ projectId, originalEventId }, { limit, cursor }, context) {
const factory = getEventsFactory(context, projectId);
return factory.getEventRepetitions(originalEventId, limit, cursor);
},
/**
* Returns users who visited event
* @param {string[]} visitedBy - id's users who visited event
* @param _args - query args (empty)
* @param factories - factories for working with models
* @return {Promise<UserModel[]> | null}
*/
async visitedBy({ visitedBy, projectId }, _args, { factories, user }) {
/**
* Crutch for Demo Workspace
*/
const project = await factories.projectsFactory.findById(projectId);
if (project.workspaceId.toString() === '6213b6a01e6281087467cc7a') {
return [ await factories.usersFactory.findById(user.id) ];
}
if (!visitedBy || !visitedBy.length) {
return [];
}
return visitedBy.map(userId => factories.usersFactory.findById(userId));
},
/**
* Returns the user assigneed to the event
*
* @param {string} assignee - user id
* @param _args - query args (empty)
* @param factories - factories for working with models
* @return {Promise<UserModel> | null}
*/
async assignee({ assignee }, _args, { factories }) {
if (!assignee || !assignee.length) {
return null;
}
return factories.usersFactory.dataLoaders.userById.load(assignee);
},
/**
* Return chart data for target event occured in last few days
*
* @param {string} projectId - event's project
* @param {string} groupHash - event's groupHash
* @param {number} days - how many days we need to fetch for displaying in a charts
* @param {number} timezoneOffset - user's local timezone offset in minutes
* @returns {Promise<ProjectChartItem[]>}
*/
async chartData({ projectId, groupHash }, { days, timezoneOffset }, context) {
const factory = getEventsFactory(context, projectId);
return factory.getEventDailyChart(groupHash, days, timezoneOffset);
},
/**
* Return AI suggestion for the event
*
* @param {string} projectId - event's project
* @param {string} eventId - event id
* @param {string} originalEventId - original event id
* @returns {Promise<string>} AI suggestion for the event
*/
async aiSuggestion({ projectId, _id: eventId, originalEventId }, _args, context) {
const factory = getEventsFactory(context, projectId);
return aiService.generateSuggestion(factory, eventId, originalEventId);
},
/**
* Return release data for the event
*
* @param {string} projectId - event's project
* @param {String} eventId - event id
* @returns {Promise<Release>}
*/
async release({ projectId, id: eventId }, _args, context) {
const factory = getEventsFactory(context, projectId);
const release = await factory.getEventRelease(eventId);
return release;
},
},
Mutation: {
/**
* Mark event as visited for current user
*
* @param {ResolverObj} _obj - resolver context
* @param {string} projectId - project id
* @param {string} eventId - event id
* @param {UserInContext} user - user context
* @return {Promise<boolean>}
*/
async visitEvent(_obj, { projectId, eventId }, { user, ...context }) {
const factory = getEventsFactory(context, projectId);
const result = await factory.visitEvent(eventId, user.id);
return !!result.acknowledged;
},
/**
* Mark many original events as visited for current user
*
* @param {ResolverObj} _obj - resolver context
* @param {string} projectId - project id
* @param {string[]} eventIds - original event ids
* @param {UserInContext} user - user context
* @returns {Promise<{ updatedCount: number, updatedEventIds: string[], failedEventIds: string[] }>}
*/
async bulkVisitEvents(_obj, { projectId, eventIds }, { user, ...context }) {
const { validEventIds, invalidEventIds } = parseBulkEventIds(eventIds);
if (validEventIds.length === 0) {
return {
updatedCount: 0,
updatedEventIds: [],
failedEventIds: invalidEventIds,
};
}
const factory = getEventsFactory(context, projectId);
const result = await factory.bulkVisitEvent(validEventIds, user.id);
return {
...result,
failedEventIds: mergeFailedEventIds(result, invalidEventIds),
};
},
/**
* Mark event with one of the event marks
*
* @param {ResolverObj} _obj - resolver context
* @param {string} project - project id
* @param {string} id - event id
* @param {string} mark - mark to set
* @return {Promise<boolean>}
*/
async toggleEventMark(_obj, { project, eventId, mark }, context) {
const factory = getEventsFactory(context, project);
const result = await factory.toggleEventMark(eventId, mark);
return !!result.acknowledged;
},
/**
* Bulk set resolved/ignored: always set mark on events that lack it, unless all selected
* already have the mark — then remove from all.
*
* @param {ResolverObj} _obj - resolver context
* @param {string} projectId - project id
* @param {string[]} eventIds - original event ids
* @param {string} mark - EventMark enum value
* @param {object} context - gql context
* @return {Promise<{ updatedCount: number, updatedEventIds: string[], failedEventIds: string[] }>}
*/
async bulkToggleEventMarks(_obj, { projectId, eventIds, mark }, context) {
const { validEventIds, invalidEventIds } = parseBulkEventIds(eventIds);
if (validEventIds.length === 0) {
return {
updatedCount: 0,
updatedEventIds: [],
failedEventIds: invalidEventIds,
};
}
const factory = getEventsFactory(context, projectId);
const result = await factory.bulkToggleEventMark(validEventIds, mark);
return {
...result,
failedEventIds: mergeFailedEventIds(result, invalidEventIds),
};
},
/**
* Mutations namespace
*
* @return {Function()}
*/
events: () => ({}),
},
EventsMutations: {
/**
* Update assignee to selected event
*
* @param {ResolverObj} _obj - resolver context
* @param {UpdateAssigneeInput} input - object of arguments
* @param factories - factories for working with models
* @return {Promise<boolean>}
*/
async updateAssignee(_obj, { input }, { factories, user, ...context }) {
const { projectId, eventId, assignee } = input;
const factory = getEventsFactory(context, projectId);
const userExists = await factories.usersFactory.findById(assignee);
if (!userExists) {
return {
success: false,
};
}
const project = await factories.projectsFactory.findById(projectId);
const workspaceId = project.workspaceId;
const workspace = await factories.workspacesFactory.findById(workspaceId);
const assigneeExistsInWorkspace = await workspace.getMemberInfo(assignee);
if (!assigneeExistsInWorkspace) {
return {
success: false,
};
}
const result = await factory.updateAssignee(eventId, assignee);
const assigneeData = await factories.usersFactory.dataLoaders.userById.load(assignee);
fireAndForgetAssigneeNotifications({
assigneeData,
eventIds: [ eventId ],
projectId,
assigneeId: assignee,
whoAssignedId: user.id,
});
return {
success: !!result.acknowledged,
record: assigneeData,
};
},
/**
* Remove an assignee from the selected event
*
* @param {ResolverObj} _obj - resolver context
* @param {RemoveAssigneeInput} input - object of arguments
* @param factories - factories for working with models
* @return {Promise<boolean>}
*/
async removeAssignee(_obj, { input }, context) {
const { projectId, eventId } = input;
const factory = getEventsFactory(context, projectId);
const result = await factory.updateAssignee(eventId, '');
return {
success: !!result.acknowledged,
};
},
/**
* Bulk set/clear assignee for selected original events
*
* @param {ResolverObj} _obj - resolver context
* @param {BulkUpdateAssigneeInput} input - object of arguments
* @param factories - factories for working with models
* @return {Promise<{ updatedCount: number, updatedEventIds: string[], failedEventIds: string[] }>}
*/
async bulkUpdateAssignee(_obj, { input }, { factories, user, ...context }) {
const { projectId, eventIds, assignee } = input;
const { validEventIds, invalidEventIds } = parseBulkEventIds(eventIds);
let assigneeData = null;
if (validEventIds.length === 0) {
return {
updatedCount: 0,
updatedEventIds: [],
failedEventIds: invalidEventIds,
};
}
const factory = getEventsFactory(context, projectId);
if (assignee) {
const userExists = await factories.usersFactory.findById(assignee);
if (!userExists) {
throw new UserInputError('assignee not found');
}
assigneeData = userExists;
const project = await factories.projectsFactory.findById(projectId);
const workspace = await factories.workspacesFactory.findById(project.workspaceId);
const assigneeExistsInWorkspace = await workspace.getMemberInfo(assignee);
if (!assigneeExistsInWorkspace) {
throw new UserInputError('assignee is not a workspace member');
}
}
const result = await factory.bulkUpdateAssignee(validEventIds, assignee);
const resultWithInvalid = {
...result,
failedEventIds: mergeFailedEventIds(result, invalidEventIds),
};
if (assignee && resultWithInvalid.updatedEventIds.length > 0) {
fireAndForgetAssigneeNotifications({
assigneeData,
eventIds: resultWithInvalid.updatedEventIds,
projectId,
assigneeId: assignee,
whoAssignedId: user.id,
});
}
return resultWithInvalid;
},
},
};