2017-03-25 09:23:22 -05:00
|
|
|
const ms = require('ms');
|
|
|
|
import $ from 'cafy';
|
2018-04-07 12:30:37 -05:00
|
|
|
import Note, { pack } from '../../../../models/note';
|
2018-06-17 19:54:53 -05:00
|
|
|
import { ILocalUser } from '../../../../models/user';
|
2017-03-25 09:23:22 -05:00
|
|
|
|
2018-07-16 14:36:44 -05:00
|
|
|
export const meta = {
|
|
|
|
desc: {
|
|
|
|
ja: '人気の投稿の一覧を取得します。',
|
|
|
|
en: 'Get trend notes.'
|
|
|
|
},
|
|
|
|
|
|
|
|
requireCredential: true
|
|
|
|
};
|
|
|
|
|
2018-07-05 12:58:29 -05:00
|
|
|
export default (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
|
2017-03-25 09:23:22 -05:00
|
|
|
// Get 'limit' parameter
|
2018-07-05 09:36:07 -05:00
|
|
|
const [limit = 10, limitErr] = $.num.optional.range(1, 100).get(params.limit);
|
2017-03-25 09:23:22 -05:00
|
|
|
if (limitErr) return rej('invalid limit param');
|
|
|
|
|
|
|
|
// Get 'offset' parameter
|
2018-07-05 09:36:07 -05:00
|
|
|
const [offset = 0, offsetErr] = $.num.optional.min(0).get(params.offset);
|
2017-03-25 09:23:22 -05:00
|
|
|
if (offsetErr) return rej('invalid offset param');
|
|
|
|
|
|
|
|
// Get 'reply' parameter
|
2018-07-05 09:36:07 -05:00
|
|
|
const [reply, replyErr] = $.bool.optional.get(params.reply);
|
2017-03-25 09:23:22 -05:00
|
|
|
if (replyErr) return rej('invalid reply param');
|
|
|
|
|
2018-04-07 12:30:37 -05:00
|
|
|
// Get 'renote' parameter
|
2018-07-05 09:36:07 -05:00
|
|
|
const [renote, renoteErr] = $.bool.optional.get(params.renote);
|
2018-04-07 12:30:37 -05:00
|
|
|
if (renoteErr) return rej('invalid renote param');
|
2017-03-25 09:23:22 -05:00
|
|
|
|
|
|
|
// Get 'media' parameter
|
2018-07-05 09:36:07 -05:00
|
|
|
const [media, mediaErr] = $.bool.optional.get(params.media);
|
2017-03-25 09:23:22 -05:00
|
|
|
if (mediaErr) return rej('invalid media param');
|
|
|
|
|
|
|
|
// Get 'poll' parameter
|
2018-07-05 09:36:07 -05:00
|
|
|
const [poll, pollErr] = $.bool.optional.get(params.poll);
|
2017-03-25 09:23:22 -05:00
|
|
|
if (pollErr) return rej('invalid poll param');
|
|
|
|
|
|
|
|
const query = {
|
2018-05-13 23:58:44 -05:00
|
|
|
_id: { $gte: new Date(Date.now() - ms('1days')) },
|
|
|
|
renoteCount: { $gt: 0 },
|
2018-05-13 23:54:18 -05:00
|
|
|
'_user.host': null
|
2017-03-25 09:23:22 -05:00
|
|
|
} as any;
|
|
|
|
|
|
|
|
if (reply != undefined) {
|
2018-03-29 00:48:47 -05:00
|
|
|
query.replyId = reply ? { $exists: true, $ne: null } : null;
|
2017-03-25 09:23:22 -05:00
|
|
|
}
|
|
|
|
|
2018-04-07 12:30:37 -05:00
|
|
|
if (renote != undefined) {
|
|
|
|
query.renoteId = renote ? { $exists: true, $ne: null } : null;
|
2017-03-25 09:23:22 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (media != undefined) {
|
2018-03-29 00:48:47 -05:00
|
|
|
query.mediaIds = media ? { $exists: true, $ne: null } : null;
|
2017-03-25 09:23:22 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (poll != undefined) {
|
|
|
|
query.poll = poll ? { $exists: true, $ne: null } : null;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Issue query
|
2018-04-07 12:30:37 -05:00
|
|
|
const notes = await Note
|
2017-03-25 09:23:22 -05:00
|
|
|
.find(query, {
|
|
|
|
limit: limit,
|
|
|
|
skip: offset,
|
|
|
|
sort: {
|
2018-04-07 12:30:37 -05:00
|
|
|
renoteCount: -1,
|
2017-03-25 09:37:52 -05:00
|
|
|
_id: -1
|
2017-03-25 09:23:22 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Serialize
|
2018-04-07 12:30:37 -05:00
|
|
|
res(await Promise.all(notes.map(async note =>
|
|
|
|
await pack(note, user, { detail: true }))));
|
2017-03-25 09:23:22 -05:00
|
|
|
});
|