-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathnotifications.ts
More file actions
613 lines (555 loc) · 15.2 KB
/
Copy pathnotifications.ts
File metadata and controls
613 lines (555 loc) · 15.2 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
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
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
import { IResolvers } from '@graphql-tools/utils';
import {
AuthContext,
BaseContext,
Context,
SubscriptionContext,
} from '../Context';
import {
Banner,
NotificationPreference,
Comment,
UserNotification,
NotificationV2,
NotificationAvatarV2,
NotificationAttachmentV2,
} from '../entity';
import { ConnectionArguments } from 'graphql-relay';
import { In } from 'typeorm';
import { Connection as ConnectionRelay } from 'graphql-relay/connection/connection';
import graphorm from '../graphorm';
import { createDatePageGenerator } from '../common/datePageGenerator';
import { GQLEmptyResponse } from './common';
import { redisPubSub } from '../redis';
import {
NotificationPreferenceStatus,
NotificationType,
saveNotificationPreference,
postNewCommentNotificationTypes,
notificationPreferenceMap,
getUnreadNotificationsCount,
commentReplyNotificationTypes,
getNotificationCategoryFilter,
} from '../notifications/common';
import { ValidationError } from 'apollo-server-errors';
import { mapCloudinaryUrl } from '../common';
interface GQLBanner {
timestamp: Date;
title: string;
subtitle: string;
cta: string;
url: string;
theme: string;
}
type GQLNotificationPreference = Pick<
NotificationPreference,
'referenceId' | 'userId' | 'notificationType' | 'status' | 'type'
>;
interface NotificationPreferenceArgs {
referenceId: string;
notificationType: NotificationType;
}
interface NotificationPreferenceMutationArgs {
type: NotificationType;
referenceId: string;
}
interface NotificationPreferenceInput {
data: NotificationPreferenceArgs[];
}
export const typeDefs = /* GraphQL */ `
type NotificationAvatar {
"""
Avatar type e.g user, source. Appearance might change based on the type
"""
type: String!
"""
URL of the image
"""
image: String!
"""
Name of the referred object e.g full name or source name
"""
name: String!
"""
URL of profile or source
"""
targetUrl: String!
"""
ID of the referenced object
"""
referenceId: String!
}
type NotificationAttachment {
"""
Attachment type e.g post, badge. Appearance might change based on the type
"""
type: String!
"""
URL of the image
"""
image: String!
"""
Rich text (html) of the title
"""
title: String!
}
type Notification {
"""
Notification unique ID
"""
id: ID!
"""
Notification type
"""
type: String!
"""
Filter bucket the notification belongs to (upvotes, mentions, comments,
followers, squads, updates), derived from its type
"""
category: String!
"""
Referenced entity's id of the notification
"""
referenceId: String!
"""
Icon type of the notification
"""
icon: String!
"""
When the notification was created
"""
createdAt: DateTime!
"""
When the notification was read, if at all
"""
readAt: DateTime
"""
Rich text (html) of the title
"""
title: String!
"""
Rich text (html) of the description
"""
description: String
"""
URL to point client on click
"""
targetUrl: String!
"""
Avatars of the notification
"""
avatars: [NotificationAvatar!]
"""
Attachments of the notification
"""
attachments: [NotificationAttachment!]
"""
Total number of avatars
"""
numTotalAvatars: Int
}
type NotificationEdge {
node: Notification!
"""
Used in \`before\` and \`after\` args
"""
cursor: String!
}
type NotificationConnection {
pageInfo: PageInfo!
edges: [NotificationEdge!]!
}
"""
Information for displaying promotions and announcements
"""
type Banner {
"""
Since when to show this banner
"""
timestamp: DateTime!
"""
Title to show
"""
title: String!
"""
Subtitle to show
"""
subtitle: String!
"""
Call-to-action text for the button
"""
cta: String!
"""
Link to navigate upon button click
"""
url: String!
"""
Banner theme
"""
theme: String!
}
"""
User's preference towards certain notification types to specific entities
"""
type NotificationPreference {
"""
Reference to id of the related entity
"""
referenceId: ID!
"""
User id of the related user
"""
userId: ID!
"""
Type of the notification
"""
notificationType: String!
"""
Type of the notification preference which can be "post", "source", "comment"
"""
type: String!
"""
Status whether the user has "subscribed" or "muted" the notification
"""
status: String!
}
input NotificationPreferenceInput {
"""
Reference to id of the related entity
"""
referenceId: ID!
"""
Notification type for which kind of notification you want to mute
"""
notificationType: String!
}
extend type Query {
"""
Get the active notification count for a user
"""
unreadNotificationsCount: Int @auth
"""
Get a banner to show, if any
"""
banner(
"""
The last time the user seen a banner
"""
lastSeen: DateTime
): Banner @cacheControl(maxAge: 60)
notifications(
"""
Paginate after opaque cursor
"""
after: String
"""
Paginate first
"""
first: Int
"""
Only return notifications in this category (upvotes, mentions, comments,
followers, squads, updates). Omit for all activity.
"""
category: String
): NotificationConnection! @auth
notificationPreferences(
data: [NotificationPreferenceInput]!
): [NotificationPreference]! @auth
}
extend type Mutation {
readNotifications: EmptyResponse @auth
"""
Set the status of the user's notification preference to "muted"
"""
muteNotificationPreference(
"""
The ID of the relevant entity to mute
"""
referenceId: ID!
"""
Notification type for which kind of notification you want to mute
"""
type: String!
): EmptyResponse @auth
"""
Remove notification preference if it exists
"""
clearNotificationPreference(
"""
The ID of the relevant entity to mute
"""
referenceId: ID!
"""
Notification type for which kind of notification you want to mute
"""
type: String!
): EmptyResponse @auth
"""
Set the status of the user's notification preference to "subscribed"
"""
subscribeNotificationPreference(
"""
The ID of the relevant entity to subscribe
"""
referenceId: ID!
"""
Notification type for which kind of notification you want to subscribe
"""
type: String!
): EmptyResponse @auth
}
type Subscription {
"""
Get notified when there's a new notification
"""
newNotification: Notification @auth
}
`;
const notificationsPageGenerator = createDatePageGenerator<
NotificationV2,
'createdAt'
>({
key: 'createdAt',
});
export const resolvers: IResolvers<unknown, BaseContext> = {
Query: {
unreadNotificationsCount: async (
source,
args: ConnectionArguments,
ctx: AuthContext,
): Promise<number> =>
await getUnreadNotificationsCount(ctx.con, ctx.userId),
banner: async (
source,
{ lastSeen }: { lastSeen: Date },
ctx: Context,
): Promise<GQLBanner | null> =>
ctx
.getRepository(Banner)
.createQueryBuilder()
.where('timestamp > :last', { last: lastSeen })
.orderBy('timestamp', 'DESC')
.getOne(),
notifications: async (
source,
args: ConnectionArguments & { category?: string },
ctx: AuthContext,
info,
): Promise<ConnectionRelay<NotificationV2>> => {
const page = notificationsPageGenerator.connArgsToPage(args);
const { category } = args;
const categoryFilter = category
? getNotificationCategoryFilter(category)
: null;
if (category && !categoryFilter) {
throw new ValidationError(`unknown notification category: ${category}`);
}
return graphorm.queryPaginated(
ctx,
info,
(nodeSize) =>
notificationsPageGenerator.hasPreviousPage(page, nodeSize),
(nodeSize) => notificationsPageGenerator.hasNextPage(page, nodeSize),
(node, index) =>
notificationsPageGenerator.nodeToCursor(page, args, node, index),
(builder) => {
builder.queryBuilder
.andWhere(`un."userId" = :user`, { user: ctx.userId })
.andWhere(`un."public" = true`)
.andWhere(`(un."showAt" IS NULL OR un."showAt" <= NOW())`)
.addOrderBy(`COALESCE(un."showAt", un."createdAt")`, 'DESC');
// Filter on the denormalized un."type" (not notification_v2) so the
// (userId, type, date) index can drive the query for heavy users.
if (categoryFilter && 'include' in categoryFilter) {
builder.queryBuilder.andWhere(`un."type" = ANY(:types)`, {
types: categoryFilter.include,
});
} else if (categoryFilter) {
builder.queryBuilder.andWhere(`un."type" <> ALL(:types)`, {
types: categoryFilter.exclude,
});
}
builder.queryBuilder.limit(page.limit);
if (page.timestamp) {
builder.queryBuilder = builder.queryBuilder.andWhere(
`COALESCE(un."showAt", un."createdAt") < :timestamp`,
{ timestamp: page.timestamp },
);
}
return builder;
},
undefined,
true,
);
},
notificationPreferences: async (
_,
{ data }: NotificationPreferenceInput,
ctx: AuthContext,
info,
): Promise<GQLNotificationPreference[]> => {
if (!data.length) {
throw new ValidationError('parameters must not be empty');
}
if (data.length > 100) {
throw new ValidationError('parameters must not exceed 100');
}
const params = data.reduce((args, value) => {
const type = notificationPreferenceMap[value.notificationType];
return [...args, { ...value, type, userId: ctx.userId }];
}, [] as NotificationPreferenceArgs[]);
const newComments = data.filter(({ notificationType }) =>
postNewCommentNotificationTypes.includes(notificationType),
);
if (newComments.length) {
const ids = newComments.map(({ referenceId }) => referenceId);
const comments = await ctx
.getRepository(Comment)
.find({ select: ['id', 'postId'], where: { id: In(ids) } });
comments.forEach(({ id, postId }) => {
const param = params.find(({ referenceId }) => referenceId === id);
if (!param) {
return;
}
param.referenceId = postId;
});
}
const newCommentComments = data.filter(({ notificationType }) =>
commentReplyNotificationTypes.includes(notificationType),
);
if (newCommentComments.length) {
const commentIds = newCommentComments.map(
({ referenceId }) => referenceId,
);
const commentComments = await ctx
.getRepository(Comment)
.find({ select: ['id', 'parentId'], where: { id: In(commentIds) } });
commentComments.forEach(({ id, parentId }) => {
const param = params.find(({ referenceId }) => referenceId === id);
if (!param) {
return;
}
param.referenceId = parentId || id;
});
}
return graphorm.query(ctx, info, (builder) => {
builder.queryBuilder = builder.queryBuilder.where(params);
return builder;
});
},
},
Mutation: {
readNotifications: async (
_,
__,
ctx: AuthContext,
): Promise<GQLEmptyResponse> => {
await ctx.con.transaction(async (entityManager) => {
await entityManager
.getRepository(UserNotification)
.createQueryBuilder()
.update()
.set({ readAt: new Date() })
.where('"userId" = :userId', { userId: ctx.userId })
.andWhere('"readAt" IS NULL')
.andWhere('("showAt" IS NULL OR "showAt" <= NOW())')
.execute();
});
return { _: true };
},
muteNotificationPreference: async (
_,
{ type, referenceId }: NotificationPreferenceMutationArgs,
{ con, userId }: AuthContext,
): Promise<GQLEmptyResponse> => {
if (!Object.values(NotificationType).includes(type)) {
throw new ValidationError('Invalid notification type');
}
await saveNotificationPreference(
con,
userId,
referenceId,
type,
NotificationPreferenceStatus.Muted,
);
return { _: true };
},
clearNotificationPreference: async (
_,
{ type, referenceId }: NotificationPreferenceMutationArgs,
{ con, userId }: AuthContext,
): Promise<GQLEmptyResponse> => {
if (postNewCommentNotificationTypes.includes(type)) {
const comment = await con.getRepository(Comment).findOne({
where: { id: referenceId },
select: ['postId'],
});
if (!comment) {
throw new ValidationError('Comment not found');
}
referenceId = comment.postId;
}
await con
.getRepository(NotificationPreference)
.delete({ userId, notificationType: type, referenceId });
return { _: true };
},
subscribeNotificationPreference: async (
_,
{ type, referenceId }: NotificationPreferenceMutationArgs,
{ con, userId }: AuthContext,
): Promise<GQLEmptyResponse> => {
if (!Object.values(NotificationType).includes(type)) {
throw new ValidationError('Invalid notification type');
}
await saveNotificationPreference(
con,
userId,
referenceId,
type,
NotificationPreferenceStatus.Subscribed,
);
return { _: true };
},
},
Subscription: {
newNotification: {
subscribe: async (
source,
args,
ctx: SubscriptionContext,
): Promise<AsyncIterable<{ newNotification: Notification }>> => {
const iterator = redisPubSub.asyncIterator<Notification>(
`events.notifications.${ctx.userId}.new`,
);
return {
[Symbol.asyncIterator]() {
return {
next: async () => {
const { done, value } = await iterator.next();
if (done) {
return { done: true, value: undefined };
}
return { done: false, value: { newNotification: value } };
},
return: async () => {
await iterator.return?.();
return { done: true, value: undefined };
},
throw: async (error: Error) => {
await iterator.throw?.(error);
return { done: true, value: undefined };
},
};
},
};
},
},
},
NotificationAvatar: {
image: (source: NotificationAvatarV2) => mapCloudinaryUrl(source.image),
},
NotificationAttachment: {
image: (source: NotificationAttachmentV2) => mapCloudinaryUrl(source.image),
},
};