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

38 lines
911 B
TypeScript
Raw Normal View History

2017-03-08 19:50:09 +01:00
import $ from 'cafy';
2018-03-29 13:32:18 +02:00
import History from '../../../../models/messaging-history';
import Mute from '../../../../models/mute';
import { pack } from '../../../../models/messaging-message';
2018-06-18 02:54:53 +02:00
import { ILocalUser } from '../../../../models/user';
2016-12-28 23:49:51 +01:00
/**
* Show messaging history
*/
2018-06-18 02:54:53 +02:00
module.exports = (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
2016-12-28 23:49:51 +01:00
// Get 'limit' parameter
2018-05-02 11:06:16 +02:00
const [limit = 10, limitErr] = $.num.optional().range(1, 100).get(params.limit);
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({
2018-03-29 07:48:47 +02:00
muterId: user._id,
deletedAt: { $exists: false }
2017-12-22 06:21:40 +01:00
});
2016-12-28 23:49:51 +01:00
// Get history
const history = await History
.find({
2018-03-29 07:48:47 +02:00
userId: user._id,
partnerId: {
$nin: mute.map(m => m.muteeId)
2017-12-22 06:21:40 +01:00
}
2017-01-17 03:11:22 +01:00
}, {
2016-12-28 23:49:51 +01:00
limit: limit,
sort: {
2018-03-29 07:48:47 +02:00
updatedAt: -1
2016-12-28 23:49:51 +01:00
}
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-03-29 07:48:47 +02:00
await pack(h.messageId, user))));
2016-12-28 23:49:51 +01:00
});