-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathevent.js
More file actions
296 lines (258 loc) · 9.21 KB
/
event.js
File metadata and controls
296 lines (258 loc) · 9.21 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
const MongoWatchController = require('../utils/mongoWatchController');
const ProjectToWorkspace = require('../models/projectToWorkspace');
const asyncForEach = require('../utils/asyncForEach');
const mongo = require('../mongo');
const EventsFactory = require('../models/eventsFactory');
const { ObjectID } = require('mongodb');
const sendPersonalNotification = require('../utils/personalNotifications').default;
const watchController = new MongoWatchController();
/**
* 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 Event with concrete repetition
*
* @param {string} eventId - id of Event of which repetition requested
* @param {string} projectId - projectId of Event of which repetition requested
* @param {string|null} [repetitionId] - if not specified, last repetition will returned
* @return {Promise<EventRepetitionSchema>}
*/
async repetition({ id: eventId, projectId }, { id: repetitionId }) {
const factory = new EventsFactory(projectId);
if (!repetitionId) {
return factory.getEventLastRepetition(eventId);
}
return factory.getEventRepetition(repetitionId);
},
/**
* Returns repetitions list of the event
*
* @param {ResolverObj} _obj
* @param {String} eventId
* @param {String} projectId
* @param {Number} limit
* @param {Number} skip
*
* @return {EventRepetitionSchema[]}
*/
async repetitions({ _id: eventId, projectId }, { limit, skip }) {
const factory = new EventsFactory(projectId);
return factory.getEventRepetitions(eventId, limit, skip);
},
/**
* 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 }, _args, { factories }) {
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 affected users 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 usersAffectedChart({ projectId, groupHash }, { days, timezoneOffset }) {
const factory = new EventsFactory(new ObjectID(projectId));
return factory.findAffectedUsersChart(days, timezoneOffset, groupHash);
},
/**
* 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 }) {
const factory = new EventsFactory(new ObjectID(projectId));
return factory.findChartData(days, timezoneOffset, groupHash);
},
/**
* 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 }) {
const factory = new EventsFactory(new ObjectID(projectId));
const release = await factory.getEventRelease(eventId);
return release;
},
},
Subscription: {
eventOccurred: {
/**
* Subscribes user to events from his projects
* @param {ResolverObj} _obj
* @param {Object} _args - request variables (not used)
* @param {UserInContext} user - current authorized user {@see ../index.js}
* @param {ContextFactories} factories - factories for working with models
* @return {AsyncIterator<EventSchema>}
*/
subscribe: async (_obj, _args, { user, factories }) => {
const userId = user.id;
const userModel = await factories.usersFactory.findById(userId);
// eslint-disable-next-line no-async-promise-executor
const eventsCollections = new Promise(async resolve => {
// @todo optimize query for getting all user's projects
// Find all user's workspaces
const allWorkspacesIds = await userModel.getWorkspacesIds();
const allProjects = [];
// Find all user's projects
await asyncForEach(allWorkspacesIds, async workspaceId => {
const allProjectsInWorkspace = await new ProjectToWorkspace(workspaceId).getProjects();
allProjects.push(...allProjectsInWorkspace);
});
resolve(allProjects.map(project =>
mongo.databases.events
.collection('events:' + project.id)
));
});
return watchController.getAsyncIteratorForCollectionChangesEvents(eventsCollections);
},
/**
* Sends data to user about new events
* @param {Object} payload - subscription event payload (from mongoDB watch)
* @return {EventSchema}
*/
resolve: (payload) => {
return payload.fullDocument;
},
},
},
Mutation: {
/**
* Mark event as visited for current user
*
* @param {ResolverObj} _obj - resolver context
* @param {string} project - project id
* @param {string} id - event id
* @param {UserInContext} user - user context
* @return {Promise<boolean>}
*/
async visitEvent(_obj, { project, id }, { user }) {
const factory = new EventsFactory(project);
const { result } = await factory.visitEvent(id, user.id);
return !!result.ok;
},
/**
* 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 }) {
const factory = new EventsFactory(project);
const { result } = await factory.toggleEventMark(eventId, mark);
return !!result.ok;
},
/**
* 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 }) {
const { projectId, eventId, assignee } = input;
const factory = new EventsFactory(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);
await sendPersonalNotification(assigneeData, {
type: 'assignee',
payload: {
assigneeId: assignee,
projectId,
whoAssignedId: user.id,
eventId,
},
});
return {
success: !!result.ok,
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 }) {
const { projectId, eventId } = input;
const factory = new EventsFactory(projectId);
const { result } = await factory.updateAssignee(eventId, '');
return {
success: !!result.ok,
};
},
},
};