misskey/src/server/api/endpoints/messaging/history.ts

51 lines
1.1 KiB
TypeScript
Raw Normal View History

2017-03-09 03:50:09 +09:00
import $ from 'cafy';
2018-03-29 20:32:18 +09:00
import History from '../../../../models/messaging-history';
import Mute from '../../../../models/mute';
import { pack } from '../../../../models/messaging-message';
2018-06-18 09:54:53 +09:00
import { ILocalUser } from '../../../../models/user';
2018-11-02 12:49:08 +09:00
import getParams from '../../get-params';
2016-12-29 07:49:51 +09:00
2018-07-17 04:36:44 +09:00
export const meta = {
desc: {
2018-08-29 06:59:43 +09:00
'ja-JP': 'Messagingの履歴を取得します。',
'en-US': 'Show messaging history.'
2018-07-17 04:36:44 +09:00
},
requireCredential: true,
2018-11-02 12:49:08 +09:00
kind: 'messaging-read',
params: {
limit: {
validator: $.num.optional.range(1, 100),
default: 10
}
}
2018-07-17 04:36:44 +09:00
};
2018-07-06 02:58:29 +09:00
export default (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
2018-11-02 12:49:08 +09:00
const [ps, psErr] = getParams(meta, params);
if (psErr) return rej(psErr);
2016-12-29 07:49:51 +09:00
2017-12-22 14:21:40 +09:00
const mute = await Mute.find({
2018-03-29 14:48:47 +09:00
muterId: user._id,
deletedAt: { $exists: false }
2017-12-22 14:21:40 +09:00
});
2016-12-29 07:49:51 +09:00
// Get history
const history = await History
.find({
2018-03-29 14:48:47 +09:00
userId: user._id,
partnerId: {
$nin: mute.map(m => m.muteeId)
2017-12-22 14:21:40 +09:00
}
2017-01-17 11:11:22 +09:00
}, {
2018-11-02 12:49:08 +09:00
limit: ps.limit,
2016-12-29 07:49:51 +09:00
sort: {
2018-03-29 14:48:47 +09:00
updatedAt: -1
2016-12-29 07:49:51 +09:00
}
2017-01-17 11:11:22 +09:00
});
2016-12-29 07:49:51 +09:00
2018-08-11 20:53:03 +09:00
res(await Promise.all(history.map(h => pack(h.messageId, user))));
2016-12-29 07:49:51 +09:00
});