summaryrefslogtreecommitdiff
path: root/src/api/endpoints/notifications/mark_as_read.ts
blob: 6e75927cfa124dd0d9c2274b12b8dffc31ff59b8 (plain)
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
'use strict';

/**
 * Module dependencies
 */
import it from '../../it';
import Notification from '../../models/notification';
import serialize from '../../serializers/notification';
import event from '../../event';

/**
 * Mark as read a notification
 *
 * @param {any} params
 * @param {any} user
 * @return {Promise<any>}
 */
module.exports = (params, user) =>
	new Promise(async (res, rej) => {
		const [notificationId, notificationIdErr] = it(params.notification_id).expect.id().required().qed();
		if (notificationIdErr) return rej('invalid notification_id param');

		// Get notification
		const notification = await Notification
			.findOne({
				_id: notificationId,
				i: user._id
			});

		if (notification === null) {
			return rej('notification-not-found');
		}

		// Update
		notification.is_read = true;
		Notification.update({ _id: notification._id }, {
			$set: {
				is_read: true
			}
		});

		// Response
		res();

		// Serialize
		const notificationObj = await serialize(notification);

		// Publish read_notification event
		event(user._id, 'read_notification', notificationObj);
	});