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

44 lines
928 B
TypeScript
Raw Normal View History

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 History from '../../models/messaging-history';
2017-12-22 06:21:40 +01:00
import Mute from '../../models/mute';
2018-02-02 00:21:30 +01:00
import { pack } from '../../models/messaging-message';
2016-12-28 23:49:51 +01:00
/**
* 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-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-12-22 06:21:40 +01:00
const mute = await Mute.find({
muter_id: user._id,
deleted_at: { $exists: false }
});
2016-12-28 23:49:51 +01:00
// Get history
const history = await History
.find({
2017-12-22 06:21:40 +01:00
user_id: user._id,
partner: {
$nin: mute.map(m => m.mutee_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 =>
2018-02-02 00:21:30 +01:00
await pack(h.message, user))));
2016-12-28 23:49:51 +01:00
});