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';
|
2019-02-20 14:31:21 +01:00
|
|
|
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.'
|
|
|
|
},
|
|
|
|
|
2019-02-23 03:20:58 +01:00
|
|
|
tags: ['notes'],
|
|
|
|
|
2018-10-25 00:04:15 +02:00
|
|
|
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
|
|
|
}
|
2019-02-23 03:20:58 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
|
|
|
type: 'array',
|
|
|
|
items: {
|
|
|
|
type: 'Note',
|
|
|
|
},
|
|
|
|
},
|
2018-10-25 00:04:15 +02:00
|
|
|
};
|
|
|
|
|
2019-02-22 03:46:58 +01: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
|
|
|
|
2019-02-20 14:31:21 +01:00
|
|
|
const hideUserIds = await getHideUserIds(user);
|
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
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
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
return await packMany(notes, user);
|
|
|
|
});
|