jormungandr-bite/src/server/api/endpoints/notes/featured.ts

51 lines
1,023 B
TypeScript
Raw Normal View History

2018-10-24 16:04:15 -06:00
import $ from 'cafy';
import Note from '../../../../models/note';
import { packMany } from '../../../../models/note';
2018-11-01 22:47:44 -06:00
import define from '../../define';
import { getHideUserIds } from '../../common/get-hide-users';
2018-10-24 16:04:15 -06:00
export const meta = {
desc: {
'ja-JP': 'Featuredな投稿を取得します。',
'en-US': 'Get featured notes.'
},
requireCredential: false,
params: {
2018-11-01 12:32:24 -06:00
limit: {
2019-02-13 00:33:07 -07:00
validator: $.optional.num.range(1, 30),
2018-10-24 16:04:15 -06:00
default: 10,
desc: {
'ja-JP': '最大数'
}
2018-11-01 12:32:24 -06:00
}
2018-10-24 16:04:15 -06:00
}
};
export default define(meta, async (ps, user) => {
2019-02-14 14:31:22 -07:00
const day = 1000 * 60 * 60 * 24 * 2;
2018-10-24 16:04:15 -06:00
const hideUserIds = await getHideUserIds(user);
const notes = await Note.find({
createdAt: {
$gt: new Date(Date.now() - day)
},
deletedAt: null,
visibility: { $in: ['public', 'home'] },
'_user.host': null,
...(hideUserIds && hideUserIds.length > 0 ? { userId: { $nin: hideUserIds } } : {})
}, {
limit: ps.limit,
sort: {
score: -1
},
hint: {
score: -1
}
});
2018-10-24 16:04:15 -06:00
return await packMany(notes, user);
});