2017-03-25 09:23:22 -05:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
|
|
|
const ms = require('ms');
|
|
|
|
import $ from 'cafy';
|
2018-04-07 12:30:37 -05:00
|
|
|
import Note, { pack } from '../../../../models/note';
|
2017-03-25 09:23:22 -05:00
|
|
|
|
|
|
|
/**
|
2018-04-07 12:30:37 -05:00
|
|
|
* Get trend notes
|
2017-03-25 09:23:22 -05:00
|
|
|
*
|
|
|
|
* @param {any} params
|
|
|
|
* @param {any} user
|
|
|
|
* @return {Promise<any>}
|
|
|
|
*/
|
|
|
|
module.exports = (params, user) => new Promise(async (res, rej) => {
|
|
|
|
// Get 'limit' parameter
|
2018-05-02 04:06:16 -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-05-02 04:06:16 -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-05-02 04:06:16 -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-05-02 04:06:16 -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-05-02 04:06:16 -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-05-02 04:06:16 -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-03-29 00:48:47 -05:00
|
|
|
createdAt: {
|
2017-03-25 09:23:22 -05:00
|
|
|
$gte: new Date(Date.now() - ms('1days'))
|
2017-03-25 09:39:22 -05:00
|
|
|
},
|
2018-04-07 12:30:37 -05:00
|
|
|
renoteCount: {
|
2017-03-25 09:39:22 -05:00
|
|
|
$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
|
|
|
});
|