2016-12-28 23:49:51 +01:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
2017-03-03 00:56:07 +01:00
|
|
|
import it from '../../it';
|
2016-12-28 23:49:51 +01:00
|
|
|
import Notification from '../../models/notification';
|
|
|
|
import serialize from '../../serializers/notification';
|
|
|
|
import getFriends from '../../common/get-friends';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get notifications
|
|
|
|
*
|
2017-03-01 09:37:01 +01:00
|
|
|
* @param {any} params
|
|
|
|
* @param {any} user
|
|
|
|
* @return {Promise<any>}
|
2016-12-28 23:49:51 +01:00
|
|
|
*/
|
|
|
|
module.exports = (params, user) =>
|
|
|
|
new Promise(async (res, rej) =>
|
|
|
|
{
|
|
|
|
// Get 'following' parameter
|
2017-03-03 00:56:07 +01:00
|
|
|
const [following, followingError] =
|
|
|
|
it(params.following).expect.boolean().default(false).qed();
|
|
|
|
if (followingError) return rej('invalid following param');
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
// Get 'mark_as_read' parameter
|
2017-03-03 00:56:07 +01: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-28 23:49:51 +01:00
|
|
|
|
|
|
|
// Get 'type' parameter
|
2017-03-03 00:56:07 +01:00
|
|
|
const [type, typeErr] = it(params.type).expect.array().unique().allString().qed();
|
|
|
|
if (typeErr) return rej('invalid type param');
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
// Get 'limit' parameter
|
2017-03-03 00:56:07 +01:00
|
|
|
const [limit, limitErr] = it(params.limit).expect.number().range(1, 100).default(10).qed();
|
|
|
|
if (limitErr) return rej('invalid limit param');
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2017-03-03 00:56:07 +01: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-28 23:49:51 +01:00
|
|
|
|
|
|
|
// Check if both of since_id and max_id is specified
|
2017-03-03 12:11:31 +01:00
|
|
|
if (sinceId && maxId) {
|
2016-12-28 23:49:51 +01:00
|
|
|
return rej('cannot set since_id and max_id');
|
|
|
|
}
|
|
|
|
|
|
|
|
const query = {
|
|
|
|
notifiee_id: user._id
|
2017-03-03 00:56:07 +01:00
|
|
|
} as any;
|
2016-12-28 23:49:51 +01: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 00:56:07 +01:00
|
|
|
if (sinceId) {
|
2016-12-28 23:49:51 +01:00
|
|
|
sort._id = 1;
|
|
|
|
query._id = {
|
2017-03-03 00:56:07 +01:00
|
|
|
$gt: sinceId
|
2016-12-28 23:49:51 +01:00
|
|
|
};
|
2017-03-03 00:56:07 +01:00
|
|
|
} else if (maxId) {
|
2016-12-28 23:49:51 +01:00
|
|
|
query._id = {
|
2017-03-03 00:56:07 +01:00
|
|
|
$lt: maxId
|
2016-12-28 23:49:51 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
// Issue query
|
|
|
|
const notifications = await Notification
|
2017-01-17 03:11:22 +01:00
|
|
|
.find(query, {
|
2016-12-28 23:49:51 +01:00
|
|
|
limit: limit,
|
|
|
|
sort: sort
|
2017-01-17 03:11:22 +01:00
|
|
|
});
|
2016-12-28 23:49:51 +01: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
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|