2018-10-25 01:04:15 +03:00
|
|
|
import $ from 'cafy';
|
2018-11-02 06:47:44 +02:00
|
|
|
import define from '../../define';
|
2020-07-28 03:38:41 +03:00
|
|
|
import { generateMutedUserQuery } from '../../common/generate-muted-user-query';
|
2019-04-07 15:50:36 +03:00
|
|
|
import { Notes } from '../../../../models';
|
2018-10-25 01:04:15 +03:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'Featuredな投稿を取得します。',
|
|
|
|
'en-US': 'Get featured notes.'
|
|
|
|
},
|
|
|
|
|
2019-02-23 04:20:58 +02:00
|
|
|
tags: ['notes'],
|
|
|
|
|
2020-02-15 14:33:32 +02:00
|
|
|
requireCredential: false as const,
|
2018-10-25 01:04:15 +03:00
|
|
|
|
|
|
|
params: {
|
2018-11-01 20:32:24 +02:00
|
|
|
limit: {
|
2020-01-29 21:37:25 +02:00
|
|
|
validator: $.optional.num.range(1, 100),
|
2018-10-25 01:04:15 +03:00
|
|
|
default: 10,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '最大数'
|
|
|
|
}
|
2020-01-29 21:37:25 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
offset: {
|
|
|
|
validator: $.optional.num.min(0),
|
|
|
|
default: 0
|
|
|
|
},
|
2019-02-23 04:20:58 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
2019-06-27 12:04:09 +03:00
|
|
|
type: 'array' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-02-23 04:20:58 +02:00
|
|
|
items: {
|
2019-06-27 12:04:09 +03:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 16:35:26 +03:00
|
|
|
ref: 'Note',
|
|
|
|
}
|
2019-02-23 04:20:58 +02:00
|
|
|
},
|
2018-10-25 01:04:15 +03:00
|
|
|
};
|
|
|
|
|
2019-02-22 04:46:58 +02:00
|
|
|
export default define(meta, async (ps, user) => {
|
2020-01-29 21:37:25 +02:00
|
|
|
const max = 30;
|
2019-02-26 07:42:24 +02:00
|
|
|
const day = 1000 * 60 * 60 * 24 * 3; // 3日前まで
|
2018-10-25 01:04:15 +03:00
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
const query = Notes.createQueryBuilder('note')
|
2019-04-15 06:03:00 +03:00
|
|
|
.addSelect('note.score')
|
2019-04-14 05:56:37 +03:00
|
|
|
.where('note.userHost IS NULL')
|
2020-02-18 12:05:11 +02:00
|
|
|
.andWhere(`note.score > 0`)
|
2019-04-07 15:50:36 +03:00
|
|
|
.andWhere(`note.createdAt > :date`, { date: new Date(Date.now() - day) })
|
|
|
|
.andWhere(`note.visibility = 'public'`)
|
2021-03-21 03:39:32 +02:00
|
|
|
.innerJoinAndSelect('note.user', 'user')
|
|
|
|
.innerJoinAndSelect('note.reply', 'reply')
|
|
|
|
.innerJoinAndSelect('note.renote', 'renote')
|
|
|
|
.innerJoinAndSelect('reply.user', 'replyUser')
|
|
|
|
.innerJoinAndSelect('renote.user', 'renoteUser');
|
2019-02-20 15:31:21 +02:00
|
|
|
|
2020-07-28 03:38:41 +03:00
|
|
|
if (user) generateMutedUserQuery(query, user);
|
2019-04-07 15:50:36 +03:00
|
|
|
|
2020-01-29 21:37:25 +02: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 01:04:15 +03:00
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
return await Notes.packMany(notes, user);
|
2019-02-22 04:46:58 +02:00
|
|
|
});
|