Sharkey/src/server/api/endpoints/notes/trend.ts

80 lines
1.9 KiB
TypeScript
Raw Normal View History

2017-03-25 16:23:22 +02:00
/**
* Module dependencies
*/
const ms = require('ms');
import $ from 'cafy';
2018-04-07 20:30:37 +03:00
import Note, { pack } from '../../../../models/note';
2017-03-25 16:23:22 +02:00
/**
2018-04-07 20:30:37 +03:00
* Get trend notes
2017-03-25 16:23:22 +02:00
*
* @param {any} params
* @param {any} user
* @return {Promise<any>}
*/
module.exports = (params, user) => new Promise(async (res, rej) => {
// Get 'limit' parameter
2018-04-27 13:12:15 +03:00
const [limit = 10, limitErr] = $(params.limit).optional.number().range(1, 100).get();
2017-03-25 16:23:22 +02:00
if (limitErr) return rej('invalid limit param');
// Get 'offset' parameter
2018-04-27 13:12:15 +03:00
const [offset = 0, offsetErr] = $(params.offset).optional.number().min(0).get();
2017-03-25 16:23:22 +02:00
if (offsetErr) return rej('invalid offset param');
// Get 'reply' parameter
2018-04-27 13:12:15 +03:00
const [reply, replyErr] = $(params.reply).optional.boolean().get();
2017-03-25 16:23:22 +02:00
if (replyErr) return rej('invalid reply param');
2018-04-07 20:30:37 +03:00
// Get 'renote' parameter
2018-04-27 13:12:15 +03:00
const [renote, renoteErr] = $(params.renote).optional.boolean().get();
2018-04-07 20:30:37 +03:00
if (renoteErr) return rej('invalid renote param');
2017-03-25 16:23:22 +02:00
// Get 'media' parameter
2018-04-27 13:12:15 +03:00
const [media, mediaErr] = $(params.media).optional.boolean().get();
2017-03-25 16:23:22 +02:00
if (mediaErr) return rej('invalid media param');
// Get 'poll' parameter
2018-04-27 13:12:15 +03:00
const [poll, pollErr] = $(params.poll).optional.boolean().get();
2017-03-25 16:23:22 +02:00
if (pollErr) return rej('invalid poll param');
const query = {
2018-03-29 08:48:47 +03:00
createdAt: {
2017-03-25 16:23:22 +02:00
$gte: new Date(Date.now() - ms('1days'))
2017-03-25 16:39:22 +02:00
},
2018-04-07 20:30:37 +03:00
renoteCount: {
2017-03-25 16:39:22 +02:00
$gt: 0
2017-03-25 16:23:22 +02:00
}
} as any;
if (reply != undefined) {
2018-03-29 08:48:47 +03:00
query.replyId = reply ? { $exists: true, $ne: null } : null;
2017-03-25 16:23:22 +02:00
}
2018-04-07 20:30:37 +03:00
if (renote != undefined) {
query.renoteId = renote ? { $exists: true, $ne: null } : null;
2017-03-25 16:23:22 +02:00
}
if (media != undefined) {
2018-03-29 08:48:47 +03:00
query.mediaIds = media ? { $exists: true, $ne: null } : null;
2017-03-25 16:23:22 +02:00
}
if (poll != undefined) {
query.poll = poll ? { $exists: true, $ne: null } : null;
}
// Issue query
2018-04-07 20:30:37 +03:00
const notes = await Note
2017-03-25 16:23:22 +02:00
.find(query, {
limit: limit,
skip: offset,
sort: {
2018-04-07 20:30:37 +03:00
renoteCount: -1,
2017-03-25 16:37:52 +02:00
_id: -1
2017-03-25 16:23:22 +02:00
}
});
// Serialize
2018-04-07 20:30:37 +03:00
res(await Promise.all(notes.map(async note =>
await pack(note, user, { detail: true }))));
2017-03-25 16:23:22 +02:00
});