rudeshark.net/src/server/api/endpoints/messaging/history.ts

51 lines
1.1 KiB
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';
2018-11-02 04:49:08 +01:00
import getParams from '../../get-params';
2016-12-28 23:49:51 +01:00
2018-07-16 21:36:44 +02:00
export const meta = {
desc: {
2018-08-28 23:59:43 +02:00
'ja-JP': 'Messagingの履歴を取得します。',
'en-US': 'Show messaging history.'
2018-07-16 21:36:44 +02:00
},
requireCredential: true,
2018-11-02 04:49:08 +01:00
kind: 'messaging-read',
params: {
limit: {
validator: $.num.optional.range(1, 100),
default: 10
}
}
2018-07-16 21:36:44 +02:00
};
2018-07-05 19:58:29 +02:00
export default (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
2018-11-02 04:49:08 +01:00
const [ps, psErr] = getParams(meta, params);
if (psErr) return rej(psErr);
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
}, {
2018-11-02 04:49:08 +01:00
limit: ps.limit,
2016-12-28 23:49:51 +01:00
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
2018-08-11 13:53:03 +02:00
res(await Promise.all(history.map(h => pack(h.messageId, user))));
2016-12-28 23:49:51 +01:00
});