2023-07-27 05:31:52 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-06-14 09:01:23 +00:00
|
|
|
import { Brackets } from 'typeorm';
|
2022-09-17 18:27:08 +00:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2023-12-02 09:25:07 +00:00
|
|
|
import type { NotesRepository } from '@/models/_.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { NoteEntityService } from '@/core/entities/NoteEntityService.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2023-10-03 11:26:11 +00:00
|
|
|
import { CacheService } from '@/core/CacheService.js';
|
|
|
|
import { IdService } from '@/core/IdService.js';
|
2023-10-07 09:00:56 +00:00
|
|
|
import { QueryService } from '@/core/QueryService.js';
|
2023-11-24 11:19:46 +00:00
|
|
|
import { MetaService } from '@/core/MetaService.js';
|
2023-12-02 09:25:07 +00:00
|
|
|
import { MiLocalUser } from '@/models/User.js';
|
|
|
|
import { FanoutTimelineEndpointService } from '@/core/FanoutTimelineEndpointService.js';
|
2023-12-04 05:38:21 +00:00
|
|
|
import { FanoutTimelineName } from '@/core/FanoutTimelineService.js';
|
|
|
|
import { ApiError } from '@/server/api/error.js';
|
2018-09-05 14:55:51 +00:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 02:20:58 +00:00
|
|
|
tags: ['users', 'notes'],
|
|
|
|
|
|
|
|
res: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2019-02-23 02:20:58 +00:00
|
|
|
items: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2019-04-23 13:35:26 +00:00
|
|
|
ref: 'Note',
|
2021-12-09 14:58:30 +00:00
|
|
|
},
|
2019-02-23 02:20:58 +00:00
|
|
|
},
|
|
|
|
|
2019-02-22 02:46:58 +00:00
|
|
|
errors: {
|
|
|
|
noSuchUser: {
|
|
|
|
message: 'No such user.',
|
|
|
|
code: 'NO_SUCH_USER',
|
2021-12-09 14:58:30 +00:00
|
|
|
id: '27e494ba-2ac2-48e8-893b-10d4d8c2387b',
|
|
|
|
},
|
2023-12-04 05:38:21 +00:00
|
|
|
|
|
|
|
bothWithRepliesAndWithFiles: {
|
|
|
|
message: 'Specifying both withReplies and withFiles is not supported',
|
|
|
|
code: 'BOTH_WITH_REPLIES_AND_WITH_FILES',
|
|
|
|
id: '91c8cb9f-36ed-46e7-9ca2-7df96ed6e222',
|
|
|
|
},
|
2021-12-09 14:58:30 +00:00
|
|
|
},
|
2022-01-18 13:27:10 +00:00
|
|
|
} as const;
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2022-02-20 04:15:40 +00:00
|
|
|
export const paramDef = {
|
2022-02-19 05:05:32 +00:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
userId: { type: 'string', format: 'misskey:id' },
|
2023-09-28 02:41:41 +00:00
|
|
|
withReplies: { type: 'boolean', default: false },
|
|
|
|
withRenotes: { type: 'boolean', default: true },
|
2023-10-05 00:48:45 +00:00
|
|
|
withChannelNotes: { type: 'boolean', default: false },
|
2022-02-19 05:05:32 +00:00
|
|
|
limit: { type: 'integer', minimum: 1, maximum: 100, default: 10 },
|
|
|
|
sinceId: { type: 'string', format: 'misskey:id' },
|
|
|
|
untilId: { type: 'string', format: 'misskey:id' },
|
|
|
|
sinceDate: { type: 'integer' },
|
|
|
|
untilDate: { type: 'integer' },
|
2023-12-02 09:25:07 +00:00
|
|
|
allowPartial: { type: 'boolean', default: false }, // true is recommended but for compatibility false by default
|
2022-02-19 05:05:32 +00:00
|
|
|
withFiles: { type: 'boolean', default: false },
|
|
|
|
},
|
|
|
|
required: ['userId'],
|
|
|
|
} as const;
|
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
@Injectable()
|
2023-08-17 12:20:58 +00:00
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
2022-09-17 18:27:08 +00:00
|
|
|
constructor(
|
|
|
|
@Inject(DI.notesRepository)
|
|
|
|
private notesRepository: NotesRepository,
|
|
|
|
|
|
|
|
private noteEntityService: NoteEntityService,
|
2023-10-07 09:00:56 +00:00
|
|
|
private queryService: QueryService,
|
2023-10-03 11:26:11 +00:00
|
|
|
private cacheService: CacheService,
|
|
|
|
private idService: IdService,
|
2023-12-02 09:25:07 +00:00
|
|
|
private fanoutTimelineEndpointService: FanoutTimelineEndpointService,
|
2023-11-24 11:19:46 +00:00
|
|
|
private metaService: MetaService,
|
2022-09-17 18:27:08 +00:00
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
2023-10-16 01:45:22 +00:00
|
|
|
const untilId = ps.untilId ?? (ps.untilDate ? this.idService.gen(ps.untilDate!) : null);
|
|
|
|
const sinceId = ps.sinceId ?? (ps.sinceDate ? this.idService.gen(ps.sinceDate!) : null);
|
2023-10-10 11:06:02 +00:00
|
|
|
const isSelf = me && (me.id === ps.userId);
|
2023-10-09 09:14:38 +00:00
|
|
|
|
2023-11-24 11:19:46 +00:00
|
|
|
const serverSettings = await this.metaService.fetch();
|
|
|
|
|
2023-12-04 05:38:21 +00:00
|
|
|
if (ps.withReplies && ps.withFiles) throw new ApiError(meta.errors.bothWithRepliesAndWithFiles);
|
|
|
|
|
2023-12-15 02:24:13 +00:00
|
|
|
// early return if me is blocked by requesting user
|
|
|
|
if (me != null) {
|
|
|
|
const userIdsWhoBlockingMe = await this.cacheService.userBlockedCache.fetch(me.id);
|
|
|
|
if (userIdsWhoBlockingMe.has(ps.userId)) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-02 09:25:07 +00:00
|
|
|
if (!serverSettings.enableFanoutTimeline) {
|
|
|
|
const timeline = await this.getFromDb({
|
|
|
|
untilId,
|
|
|
|
sinceId,
|
|
|
|
limit: ps.limit,
|
|
|
|
userId: ps.userId,
|
|
|
|
withChannelNotes: ps.withChannelNotes,
|
|
|
|
withFiles: ps.withFiles,
|
|
|
|
withRenotes: ps.withRenotes,
|
|
|
|
}, me);
|
|
|
|
|
|
|
|
return await this.noteEntityService.packMany(timeline, me);
|
2023-10-09 07:54:27 +00:00
|
|
|
}
|
2023-10-07 09:00:56 +00:00
|
|
|
|
2023-12-04 05:38:21 +00:00
|
|
|
const redisTimelines: FanoutTimelineName[] = [ps.withFiles ? `userTimelineWithFiles:${ps.userId}` : `userTimeline:${ps.userId}`];
|
2023-12-02 09:25:07 +00:00
|
|
|
|
|
|
|
if (ps.withReplies) redisTimelines.push(`userTimelineWithReplies:${ps.userId}`);
|
|
|
|
if (ps.withChannelNotes) redisTimelines.push(`userTimelineWithChannel:${ps.userId}`);
|
|
|
|
|
|
|
|
const isFollowing = me && Object.hasOwn(await this.cacheService.userFollowingsCache.fetch(me.id), ps.userId);
|
|
|
|
|
|
|
|
const timeline = await this.fanoutTimelineEndpointService.timeline({
|
|
|
|
untilId,
|
|
|
|
sinceId,
|
|
|
|
limit: ps.limit,
|
|
|
|
allowPartial: ps.allowPartial,
|
|
|
|
me,
|
|
|
|
redisTimelines,
|
|
|
|
useDbFallback: true,
|
2023-12-04 05:38:21 +00:00
|
|
|
ignoreAuthorFromMute: true,
|
|
|
|
excludeReplies: ps.withChannelNotes && !ps.withReplies, // userTimelineWithChannel may include replies
|
|
|
|
excludeNoFiles: ps.withChannelNotes && ps.withFiles, // userTimelineWithChannel may include notes without files
|
|
|
|
excludePureRenotes: !ps.withRenotes,
|
2023-12-02 09:25:07 +00:00
|
|
|
noteFilter: note => {
|
|
|
|
if (note.channel?.isSensitive && !isSelf) return false;
|
|
|
|
if (note.visibility === 'specified' && (!me || (me.id !== note.userId && !note.visibleUserIds.some(v => v === me.id)))) return false;
|
|
|
|
if (note.visibility === 'followers' && !isFollowing && !isSelf) return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
dbFallback: async (untilId, sinceId, limit) => await this.getFromDb({
|
|
|
|
untilId,
|
|
|
|
sinceId,
|
|
|
|
limit,
|
|
|
|
userId: ps.userId,
|
|
|
|
withChannelNotes: ps.withChannelNotes,
|
|
|
|
withFiles: ps.withFiles,
|
|
|
|
withRenotes: ps.withRenotes,
|
|
|
|
}, me),
|
|
|
|
});
|
|
|
|
|
|
|
|
return timeline;
|
2022-09-17 18:27:08 +00:00
|
|
|
});
|
|
|
|
}
|
2023-12-02 09:25:07 +00:00
|
|
|
|
|
|
|
private async getFromDb(ps: {
|
|
|
|
untilId: string | null,
|
|
|
|
sinceId: string | null,
|
|
|
|
limit: number,
|
|
|
|
userId: string,
|
|
|
|
withChannelNotes: boolean,
|
|
|
|
withFiles: boolean,
|
|
|
|
withRenotes: boolean,
|
|
|
|
}, me: MiLocalUser | null) {
|
|
|
|
const isSelf = me && (me.id === ps.userId);
|
|
|
|
|
|
|
|
const query = this.queryService.makePaginationQuery(this.notesRepository.createQueryBuilder('note'), ps.sinceId, ps.untilId)
|
|
|
|
.andWhere('note.userId = :userId', { userId: ps.userId })
|
|
|
|
.innerJoinAndSelect('note.user', 'user')
|
|
|
|
.leftJoinAndSelect('note.reply', 'reply')
|
|
|
|
.leftJoinAndSelect('note.renote', 'renote')
|
|
|
|
.leftJoinAndSelect('note.channel', 'channel')
|
|
|
|
.leftJoinAndSelect('reply.user', 'replyUser')
|
|
|
|
.leftJoinAndSelect('renote.user', 'renoteUser');
|
|
|
|
|
|
|
|
if (ps.withChannelNotes) {
|
|
|
|
if (!isSelf) query.andWhere(new Brackets(qb => {
|
|
|
|
qb.orWhere('note.channelId IS NULL');
|
|
|
|
qb.orWhere('channel.isSensitive = false');
|
|
|
|
}));
|
|
|
|
} else {
|
|
|
|
query.andWhere('note.channelId IS NULL');
|
|
|
|
}
|
|
|
|
|
|
|
|
this.queryService.generateVisibilityQuery(query, me);
|
|
|
|
if (me) {
|
|
|
|
this.queryService.generateMutedUserQuery(query, me, { id: ps.userId });
|
|
|
|
this.queryService.generateBlockedUserQuery(query, me);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.withFiles) {
|
|
|
|
query.andWhere('note.fileIds != \'{}\'');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.withRenotes === false) {
|
|
|
|
query.andWhere(new Brackets(qb => {
|
|
|
|
qb.orWhere('note.userId != :userId', { userId: ps.userId });
|
|
|
|
qb.orWhere('note.renoteId IS NULL');
|
|
|
|
qb.orWhere('note.text IS NOT NULL');
|
|
|
|
qb.orWhere('note.fileIds != \'{}\'');
|
|
|
|
qb.orWhere('0 < (SELECT COUNT(*) FROM poll WHERE poll."noteId" = note.id)');
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
|
|
|
return await query.limit(ps.limit).getMany();
|
|
|
|
}
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|