iceshrimp-legacy/src/server/api/endpoints/notes/featured.ts

51 lines
1,023 B
TypeScript
Raw Normal View History

2018-10-25 00:04:15 +02:00
import $ from 'cafy';
import Note from '../../../../models/note';
import { packMany } from '../../../../models/note';
2018-11-02 05:47:44 +01:00
import define from '../../define';
import { getHideUserIds } from '../../common/get-hide-users';
2018-10-25 00:04:15 +02:00
export const meta = {
desc: {
'ja-JP': 'Featuredな投稿を取得します。',
'en-US': 'Get featured notes.'
},
requireCredential: false,
params: {
2018-11-01 19:32:24 +01:00
limit: {
2019-02-13 08:33:07 +01:00
validator: $.optional.num.range(1, 30),
2018-10-25 00:04:15 +02:00
default: 10,
desc: {
'ja-JP': '最大数'
}
2018-11-01 19:32:24 +01:00
}
2018-10-25 00:04:15 +02:00
}
};
export default define(meta, async (ps, user) => {
2019-02-14 22:31:22 +01:00
const day = 1000 * 60 * 60 * 24 * 2;
2018-10-25 00:04:15 +02: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-25 00:04:15 +02:00
return await packMany(notes, user);
});