2020-02-18 11:05:11 +01:00
|
|
|
|
import rndstr from 'rndstr';
|
2022-09-19 22:32:18 +02:00
|
|
|
|
import type { Note } from '@/models/entities/Note.js';
|
|
|
|
|
import type { User } from '@/models/entities/User.js';
|
2020-02-18 11:05:11 +01:00
|
|
|
|
|
|
|
|
|
// TODO: リアクション、Renote、返信などをしたノートは除外する
|
|
|
|
|
|
|
|
|
|
export async function injectFeatured(timeline: Note[], user?: User | null) {
|
|
|
|
|
if (timeline.length < 5) return;
|
|
|
|
|
|
|
|
|
|
if (user) {
|
2022-03-26 07:34:00 +01:00
|
|
|
|
const profile = await UserProfiles.findOneByOrFail({ userId: user.id });
|
2020-02-18 11:05:11 +01:00
|
|
|
|
if (!profile.injectFeaturedNote) return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const max = 30;
|
|
|
|
|
const day = 1000 * 60 * 60 * 24 * 3; // 3日前まで
|
|
|
|
|
|
|
|
|
|
const query = Notes.createQueryBuilder('note')
|
|
|
|
|
.addSelect('note.score')
|
|
|
|
|
.where('note.userHost IS NULL')
|
2022-09-19 22:32:18 +02:00
|
|
|
|
.andWhere('note.score > 0')
|
|
|
|
|
.andWhere('note.createdAt > :date', { date: new Date(Date.now() - day) })
|
|
|
|
|
.andWhere('note.visibility = \'public\'')
|
2021-03-21 04:33:37 +01:00
|
|
|
|
.innerJoinAndSelect('note.user', 'user');
|
2020-02-18 11:05:11 +01:00
|
|
|
|
|
2020-02-21 22:49:12 +01:00
|
|
|
|
if (user) {
|
|
|
|
|
query.andWhere('note.userId != :userId', { userId: user.id });
|
|
|
|
|
|
2020-07-28 02:38:41 +02:00
|
|
|
|
generateMutedUserQuery(query, user);
|
2021-08-17 14:48:59 +02:00
|
|
|
|
generateBlockedUserQuery(query, user);
|
2020-02-20 05:38:40 +01:00
|
|
|
|
|
2020-02-21 22:49:12 +01:00
|
|
|
|
const reactionQuery = NoteReactions.createQueryBuilder('reaction')
|
|
|
|
|
.select('reaction.noteId')
|
|
|
|
|
.where('reaction.userId = :userId', { userId: user.id });
|
|
|
|
|
|
|
|
|
|
query.andWhere(`note.id NOT IN (${ reactionQuery.getQuery() })`);
|
|
|
|
|
}
|
2020-02-18 11:05:11 +01:00
|
|
|
|
|
|
|
|
|
const notes = await query
|
|
|
|
|
.orderBy('note.score', 'DESC')
|
|
|
|
|
.take(max)
|
|
|
|
|
.getMany();
|
|
|
|
|
|
|
|
|
|
if (notes.length === 0) return;
|
|
|
|
|
|
|
|
|
|
// Pick random one
|
|
|
|
|
const featured = notes[Math.floor(Math.random() * notes.length)];
|
|
|
|
|
|
|
|
|
|
(featured as any)._featuredId_ = rndstr('a-z0-9', 8);
|
|
|
|
|
|
|
|
|
|
// Inject featured
|
|
|
|
|
timeline.splice(3, 0, featured);
|
|
|
|
|
}
|