Sharkey/src/api/endpoints/i/notifications.ts

108 lines
2.5 KiB
TypeScript
Raw Normal View History

2016-12-29 00:49:51 +02:00
/**
* Module dependencies
*/
2017-03-03 01:56:07 +02:00
import it from '../../it';
2016-12-29 00:49:51 +02:00
import Notification from '../../models/notification';
import serialize from '../../serializers/notification';
import getFriends from '../../common/get-friends';
/**
* Get notifications
*
2017-03-01 10:37:01 +02:00
* @param {any} params
* @param {any} user
* @return {Promise<any>}
2016-12-29 00:49:51 +02:00
*/
2017-03-03 21:28:38 +02:00
module.exports = (params, user) => new Promise(async (res, rej) => {
2016-12-29 00:49:51 +02:00
// Get 'following' parameter
2017-03-03 01:56:07 +02:00
const [following, followingError] =
it(params.following).expect.boolean().default(false).qed();
if (followingError) return rej('invalid following param');
2016-12-29 00:49:51 +02:00
// Get 'mark_as_read' parameter
2017-03-03 01:56:07 +02:00
const [markAsRead, markAsReadErr] = it(params.mark_as_read).expect.boolean().default(true).qed();
if (markAsReadErr) return rej('invalid mark_as_read param');
2016-12-29 00:49:51 +02:00
// Get 'type' parameter
2017-03-03 01:56:07 +02:00
const [type, typeErr] = it(params.type).expect.array().unique().allString().qed();
if (typeErr) return rej('invalid type param');
2016-12-29 00:49:51 +02:00
// Get 'limit' parameter
2017-03-03 01:56:07 +02:00
const [limit, limitErr] = it(params.limit).expect.number().range(1, 100).default(10).qed();
if (limitErr) return rej('invalid limit param');
2016-12-29 00:49:51 +02:00
2017-03-03 01:56:07 +02:00
// Get 'since_id' parameter
const [sinceId, sinceIdErr] = it(params.since_id).expect.id().qed();
if (sinceIdErr) return rej('invalid since_id param');
// Get 'max_id' parameter
const [maxId, maxIdErr] = it(params.max_id).expect.id().qed();
if (maxIdErr) return rej('invalid max_id param');
2016-12-29 00:49:51 +02:00
// Check if both of since_id and max_id is specified
2017-03-03 13:11:31 +02:00
if (sinceId && maxId) {
2016-12-29 00:49:51 +02:00
return rej('cannot set since_id and max_id');
}
const query = {
notifiee_id: user._id
2017-03-03 01:56:07 +02:00
} as any;
2016-12-29 00:49:51 +02:00
const sort = {
_id: -1
};
if (following) {
// ID list of the user itself and other users who the user follows
const followingIds = await getFriends(user._id);
query.notifier_id = {
$in: followingIds
};
}
if (type) {
query.type = {
$in: type
};
}
2017-03-03 01:56:07 +02:00
if (sinceId) {
2016-12-29 00:49:51 +02:00
sort._id = 1;
query._id = {
2017-03-03 01:56:07 +02:00
$gt: sinceId
2016-12-29 00:49:51 +02:00
};
2017-03-03 01:56:07 +02:00
} else if (maxId) {
2016-12-29 00:49:51 +02:00
query._id = {
2017-03-03 01:56:07 +02:00
$lt: maxId
2016-12-29 00:49:51 +02:00
};
}
// Issue query
const notifications = await Notification
2017-01-17 04:11:22 +02:00
.find(query, {
2016-12-29 00:49:51 +02:00
limit: limit,
sort: sort
2017-01-17 04:11:22 +02:00
});
2016-12-29 00:49:51 +02:00
// Serialize
res(await Promise.all(notifications.map(async notification =>
await serialize(notification))));
// Mark as read all
if (notifications.length > 0 && markAsRead) {
const ids = notifications
.filter(x => x.is_read == false)
.map(x => x._id);
// Update documents
await Notification.update({
_id: { $in: ids }
}, {
$set: { is_read: true }
}, {
multi: true
});
}
});