iceshrimp-legacy/src/api/endpoints/messaging/history.ts

35 lines
756 B
TypeScript
Raw Normal View History

2016-12-28 23:49:51 +01:00
/**
* Module dependencies
*/
2017-03-05 04:00:39 +01:00
import it from 'cafy';
2016-12-28 23:49:51 +01:00
import History from '../../models/messaging-history';
import serialize from '../../serializers/messaging-message';
/**
* Show messaging history
*
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 'limit' parameter
2017-03-05 04:00:39 +01:00
const [limit = 10, limitErr] = it(params.limit).expect.number().range(1, 100).get();
2017-03-03 00:24:48 +01:00
if (limitErr) return rej('invalid limit param');
2016-12-28 23:49:51 +01:00
// 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))));
});