2016-12-28 23:49:51 +01:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
2017-03-08 19:50:09 +01:00
|
|
|
import $ from 'cafy';
|
2016-12-28 23:49:51 +01:00
|
|
|
import Message from '../../models/messaging-message';
|
|
|
|
import User from '../../models/user';
|
|
|
|
import serialize from '../../serializers/messaging-message';
|
2017-06-12 19:12:30 +02:00
|
|
|
import read from '../../common/read-messaging-message';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get messages
|
|
|
|
*
|
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
|
|
|
*/
|
2017-03-03 20:28:38 +01:00
|
|
|
module.exports = (params, user) => new Promise(async (res, rej) => {
|
2016-12-28 23:49:51 +01:00
|
|
|
// Get 'user_id' parameter
|
2017-03-08 19:50:09 +01:00
|
|
|
const [recipientId, recipientIdErr] = $(params.user_id).id().$;
|
2017-03-03 00:24:48 +01:00
|
|
|
if (recipientIdErr) return rej('invalid user_id param');
|
|
|
|
|
|
|
|
// Fetch recipient
|
|
|
|
const recipient = await User.findOne({
|
|
|
|
_id: recipientId
|
|
|
|
}, {
|
|
|
|
fields: {
|
|
|
|
_id: true
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
2017-03-03 00:24:48 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
if (recipient === null) {
|
|
|
|
return rej('user not found');
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get 'mark_as_read' parameter
|
2017-03-08 19:50:09 +01:00
|
|
|
const [markAsRead = true, markAsReadErr] = $(params.mark_as_read).optional.boolean().$;
|
2017-03-03 00:24:48 +01:00
|
|
|
if (markAsReadErr) return rej('invalid mark_as_read param');
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
// Get 'limit' parameter
|
2017-03-08 19:50:09 +01:00
|
|
|
const [limit = 10, limitErr] = $(params.limit).optional.number().range(1, 100).$;
|
2017-03-03 00:24:48 +01:00
|
|
|
if (limitErr) return rej('invalid limit param');
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2017-03-03 00:24:48 +01:00
|
|
|
// Get 'since_id' parameter
|
2017-03-08 19:50:09 +01:00
|
|
|
const [sinceId, sinceIdErr] = $(params.since_id).optional.id().$;
|
2017-03-03 00:24:48 +01:00
|
|
|
if (sinceIdErr) return rej('invalid since_id param');
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2017-03-03 00:24:48 +01:00
|
|
|
// Get 'max_id' parameter
|
2017-03-08 19:50:09 +01:00
|
|
|
const [maxId, maxIdErr] = $(params.max_id).optional.id().$;
|
2017-03-03 00:24:48 +01:00
|
|
|
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 = {
|
|
|
|
$or: [{
|
|
|
|
user_id: user._id,
|
|
|
|
recipient_id: recipient._id
|
|
|
|
}, {
|
|
|
|
user_id: recipient._id,
|
|
|
|
recipient_id: user._id
|
|
|
|
}]
|
2017-03-03 00:24:48 +01:00
|
|
|
} as any;
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
const sort = {
|
2017-01-23 06:53:46 +01:00
|
|
|
_id: -1
|
2016-12-28 23:49:51 +01:00
|
|
|
};
|
|
|
|
|
2017-03-03 00:24:48 +01:00
|
|
|
if (sinceId) {
|
2017-01-23 06:53:46 +01:00
|
|
|
sort._id = 1;
|
2016-12-28 23:49:51 +01:00
|
|
|
query._id = {
|
2017-03-03 00:24:48 +01:00
|
|
|
$gt: sinceId
|
2016-12-28 23:49:51 +01:00
|
|
|
};
|
2017-03-03 00:24:48 +01:00
|
|
|
} else if (maxId) {
|
2016-12-28 23:49:51 +01:00
|
|
|
query._id = {
|
2017-03-03 00:24:48 +01:00
|
|
|
$lt: maxId
|
2016-12-28 23:49:51 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
// Issue query
|
|
|
|
const messages = await Message
|
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(messages.map(async message =>
|
|
|
|
await serialize(message, user, {
|
|
|
|
populateRecipient: false
|
|
|
|
}))));
|
|
|
|
|
|
|
|
if (messages.length === 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Mark as read all
|
|
|
|
if (markAsRead) {
|
2017-06-12 19:12:30 +02:00
|
|
|
read(user._id, recipient._id, messages);
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
|
|
|
});
|