2018-10-24 16:04:15 -06:00
|
|
|
import $ from 'cafy';
|
2018-11-01 22:47:44 -06:00
|
|
|
import define from '../../define';
|
2019-04-07 06:50:36 -06:00
|
|
|
import { generateMuteQuery } from '../../common/generate-mute-query';
|
|
|
|
import { Notes } from '../../../../models';
|
2018-10-24 16:04:15 -06:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'Featuredな投稿を取得します。',
|
|
|
|
'en-US': 'Get featured notes.'
|
|
|
|
},
|
|
|
|
|
2019-02-22 19:20:58 -07:00
|
|
|
tags: ['notes'],
|
|
|
|
|
2018-10-24 16:04:15 -06:00
|
|
|
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
|
|
|
}
|
2019-02-22 19:20:58 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
|
|
|
type: 'array',
|
|
|
|
items: {
|
|
|
|
type: 'Note',
|
|
|
|
},
|
|
|
|
},
|
2018-10-24 16:04:15 -06:00
|
|
|
};
|
|
|
|
|
2019-02-21 19:46:58 -07:00
|
|
|
export default define(meta, async (ps, user) => {
|
2019-02-25 22:42:24 -07:00
|
|
|
const day = 1000 * 60 * 60 * 24 * 3; // 3日前まで
|
2018-10-24 16:04:15 -06:00
|
|
|
|
2019-04-07 06:50:36 -06:00
|
|
|
const query = Notes.createQueryBuilder('note')
|
|
|
|
.andWhere(`note.createdAt > :date`, { date: new Date(Date.now() - day) })
|
|
|
|
.andWhere(`note.visibility = 'public'`)
|
|
|
|
.leftJoinAndSelect('note.user', 'user');
|
2019-02-20 06:31:21 -07:00
|
|
|
|
2019-04-07 06:50:36 -06:00
|
|
|
if (user) generateMuteQuery(query, user);
|
|
|
|
|
2019-04-12 10:43:22 -06:00
|
|
|
const notes = await query.orderBy('note.score', 'DESC').take(ps.limit!).getMany();
|
2018-10-24 16:04:15 -06:00
|
|
|
|
2019-04-07 06:50:36 -06:00
|
|
|
return await Notes.packMany(notes, user);
|
2019-02-21 19:46:58 -07:00
|
|
|
});
|