2016-12-28 23:49:51 +01:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
|
|
|
import * as mongo from 'mongodb';
|
|
|
|
import History from '../../models/messaging-history';
|
|
|
|
import serialize from '../../serializers/messaging-message';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show messaging history
|
|
|
|
*
|
|
|
|
* @param {Object} params
|
|
|
|
* @param {Object} user
|
|
|
|
* @return {Promise<object>}
|
|
|
|
*/
|
|
|
|
module.exports = (params, user) =>
|
|
|
|
new Promise(async (res, rej) =>
|
|
|
|
{
|
|
|
|
// Get 'limit' parameter
|
|
|
|
let limit = params.limit;
|
|
|
|
if (limit !== undefined && limit !== null) {
|
|
|
|
limit = parseInt(limit, 10);
|
|
|
|
|
|
|
|
// From 1 to 100
|
|
|
|
if (!(1 <= limit && limit <= 100)) {
|
|
|
|
return rej('invalid limit range');
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
limit = 10;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get history
|
|
|
|
const history = await History
|
|
|
|
.find({
|
|
|
|
user_id: user._id
|
2017-01-17 03:11:22 +01:00
|
|
|
}, {
|
2016-12-28 23:49:51 +01:00
|
|
|
limit: limit,
|
|
|
|
sort: {
|
|
|
|
updated_at: -1
|
|
|
|
}
|
2017-01-17 03:11:22 +01:00
|
|
|
});
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
// Serialize
|
|
|
|
res(await Promise.all(history.map(async h =>
|
|
|
|
await serialize(h.message, user))));
|
|
|
|
});
|