yumechi-no-kuni/src/api/endpoints/messaging/history.ts

35 lines
752 B
TypeScript
Raw Normal View History

2016-12-28 16:49:51 -06:00
/**
* Module dependencies
*/
2017-03-08 12:50:09 -06:00
import $ from 'cafy';
2016-12-28 16:49:51 -06:00
import History from '../../models/messaging-history';
import serialize from '../../serializers/messaging-message';
/**
* Show messaging history
*
2017-03-01 02:37:01 -06:00
* @param {any} params
* @param {any} user
* @return {Promise<any>}
2016-12-28 16:49:51 -06:00
*/
2017-03-03 13:28:38 -06:00
module.exports = (params, user) => new Promise(async (res, rej) => {
2016-12-28 16:49:51 -06:00
// Get 'limit' parameter
2017-03-08 12:50:09 -06:00
const [limit = 10, limitErr] = $(params.limit).optional.number().range(1, 100).$;
2017-03-02 17:24:48 -06:00
if (limitErr) return rej('invalid limit param');
2016-12-28 16:49:51 -06:00
// Get history
const history = await History
.find({
user_id: user._id
2017-01-16 20:11:22 -06:00
}, {
2016-12-28 16:49:51 -06:00
limit: limit,
sort: {
updated_at: -1
}
2017-01-16 20:11:22 -06:00
});
2016-12-28 16:49:51 -06:00
// Serialize
res(await Promise.all(history.map(async h =>
await serialize(h.message, user))));
});