2018-10-25 00:04:15 +02:00
|
|
|
import $ from 'cafy';
|
2018-11-02 05:47:44 +01:00
|
|
|
import define from '../../define';
|
2019-04-07 14:50:36 +02:00
|
|
|
import { generateMuteQuery } from '../../common/generate-mute-query';
|
|
|
|
import { Notes } from '../../../../models';
|
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: {
|
2020-01-29 20:37:25 +01:00
|
|
|
validator: $.optional.num.range(1, 100),
|
2018-10-25 00:04:15 +02:00
|
|
|
default: 10,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '最大数'
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
offset: {
|
|
|
|
validator: $.optional.num.min(0),
|
|
|
|
default: 0
|
|
|
|
},
|
2019-02-23 03:20:58 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
2019-06-27 11:04:09 +02:00
|
|
|
type: 'array' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-02-23 03:20:58 +01:00
|
|
|
items: {
|
2019-06-27 11:04:09 +02:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 15:35:26 +02:00
|
|
|
ref: 'Note',
|
|
|
|
}
|
2019-02-23 03:20:58 +01:00
|
|
|
},
|
2018-10-25 00:04:15 +02:00
|
|
|
};
|
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
export default define(meta, async (ps, user) => {
|
2020-01-29 20:37:25 +01:00
|
|
|
const max = 30;
|
2019-02-26 06:42:24 +01:00
|
|
|
const day = 1000 * 60 * 60 * 24 * 3; // 3日前まで
|
2018-10-25 00:04:15 +02:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
const query = Notes.createQueryBuilder('note')
|
2019-04-15 05:03:00 +02:00
|
|
|
.addSelect('note.score')
|
2019-04-14 04:56:37 +02:00
|
|
|
.where('note.userHost IS NULL')
|
2019-04-07 14:50:36 +02:00
|
|
|
.andWhere(`note.createdAt > :date`, { date: new Date(Date.now() - day) })
|
|
|
|
.andWhere(`note.visibility = 'public'`)
|
|
|
|
.leftJoinAndSelect('note.user', 'user');
|
2019-02-20 14:31:21 +01:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
if (user) generateMuteQuery(query, user);
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
let notes = await query
|
|
|
|
.orderBy('note.score', 'DESC')
|
|
|
|
.take(max)
|
|
|
|
.getMany();
|
|
|
|
|
|
|
|
notes.sort((a, b) => new Date(b.createdAt).getTime() - new Date(a.createdAt).getTime());
|
|
|
|
|
|
|
|
notes = notes.slice(ps.offset, ps.offset + ps.limit);
|
2018-10-25 00:04:15 +02:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
return await Notes.packMany(notes, user);
|
2019-02-22 03:46:58 +01:00
|
|
|
});
|