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
|
|
|
|
const [limit = 10, limitErr] = $(params.limit).optional.number().range(1, 100).$;
|
|
|
|
if (limitErr) return rej('invalid limit param');
|
|
|
|
|
|
|
|
// Get 'offset' parameter
|
|
|
|
const [offset = 0, offsetErr] = $(params.offset).optional.number().min(0).$;
|
|
|
|
if (offsetErr) return rej('invalid offset param');
|
|
|
|
|
|
|
|
// Get 'reply' parameter
|
|
|
|
const [reply, replyErr] = $(params.reply).optional.boolean().$;
|
|
|
|
if (replyErr) return rej('invalid reply param');
|
|
|
|
|
2018-04-07 12:30:37 -05:00
|
|
|
// Get 'renote' parameter
|
|
|
|
const [renote, renoteErr] = $(params.renote).optional.boolean().$;
|
|
|
|
if (renoteErr) return rej('invalid renote param');
|
2017-03-25 09:23:22 -05:00
|
|
|
|
|
|
|
// Get 'media' parameter
|
|
|
|
const [media, mediaErr] = $(params.media).optional.boolean().$;
|
|
|
|
if (mediaErr) return rej('invalid media param');
|
|
|
|
|
|
|
|
// Get 'poll' parameter
|
|
|
|
const [poll, pollErr] = $(params.poll).optional.boolean().$;
|
|
|
|
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
|
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
|
|
|
});
|