mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-03 23:14:13 +00:00 
			
		
		
		
	Merge branch 'develop' of https://github.com/misskey-dev/misskey into develop
This commit is contained in:
		
						commit
						4dd4a11cef
					
				
					 7 changed files with 168 additions and 57 deletions
				
			
		
							
								
								
									
										13
									
								
								.github/workflows/get-api-diff.yml
									
										
									
									
										vendored
									
									
								
							
							
						
						
									
										13
									
								
								.github/workflows/get-api-diff.yml
									
										
									
									
										vendored
									
									
								
							| 
						 | 
					@ -171,3 +171,16 @@ jobs:
 | 
				
			||||||
        path: api-head.json
 | 
					        path: api-head.json
 | 
				
			||||||
    - name: Kill Misskey Job
 | 
					    - name: Kill Misskey Job
 | 
				
			||||||
      run: screen -S misskey -X quit
 | 
					      run: screen -S misskey -X quit
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  save-pr-number:
 | 
				
			||||||
 | 
					    runs-on: ubuntu-latest
 | 
				
			||||||
 | 
					    steps:
 | 
				
			||||||
 | 
					      - name: Save PR number
 | 
				
			||||||
 | 
					        env:
 | 
				
			||||||
 | 
					          PR_NUMBER: ${{ github.event.number }}
 | 
				
			||||||
 | 
					        run: |
 | 
				
			||||||
 | 
					          echo "$PR_NUMBER" > ./pr_number
 | 
				
			||||||
 | 
					      - uses: actions/upload-artifact@v3
 | 
				
			||||||
 | 
					        with:
 | 
				
			||||||
 | 
					          name: api-artifact
 | 
				
			||||||
 | 
					          path: pr_number
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
							
								
								
									
										9
									
								
								.github/workflows/report-api-diff.yml
									
										
									
									
										vendored
									
									
								
							
							
						
						
									
										9
									
								
								.github/workflows/report-api-diff.yml
									
										
									
									
										vendored
									
									
								
							| 
						 | 
					@ -39,14 +39,7 @@ jobs:
 | 
				
			||||||
        run: unzip api-artifact.zip -d artifacts
 | 
					        run: unzip api-artifact.zip -d artifacts
 | 
				
			||||||
      - name: Load PR Number
 | 
					      - name: Load PR Number
 | 
				
			||||||
        id: load-pr-num
 | 
					        id: load-pr-num
 | 
				
			||||||
        env:
 | 
					        run: echo "pr-number=$(cat artifacts/pr_number)" >> "$GITHUB_OUTPUT"
 | 
				
			||||||
          PULL_REQUESTS: ${{ toJson(github.event.workflow_run.pull_requests.*) }}
 | 
					 | 
				
			||||||
          REPO_ID: ${{ github.repository_id }}
 | 
					 | 
				
			||||||
        run: |
 | 
					 | 
				
			||||||
          # find first pull requests that targets this repository
 | 
					 | 
				
			||||||
          PR_NUMBER="$(echo "$PULL_REQUESTS" \
 | 
					 | 
				
			||||||
              | jq --arg REPO_ID "$REPO_ID" '[.[] | select ($REPO_ID == (.base.repo.id | tostring)) | .number ][0]')"
 | 
					 | 
				
			||||||
          echo "pr-number=$PR_NUMBER" >> "$GITHUB_OUTPUT"
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
      - name: Output base
 | 
					      - name: Output base
 | 
				
			||||||
        run: cat ./artifacts/api-base.json
 | 
					        run: cat ./artifacts/api-base.json
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -29,6 +29,7 @@
 | 
				
			||||||
- Fix: リストTLに自分のフォロワー限定投稿が含まれない問題を修正
 | 
					- Fix: リストTLに自分のフォロワー限定投稿が含まれない問題を修正
 | 
				
			||||||
- Fix: ローカルタイムラインに投稿者自身の投稿への返信が含まれない問題を修正
 | 
					- Fix: ローカルタイムラインに投稿者自身の投稿への返信が含まれない問題を修正
 | 
				
			||||||
- Fix: 自分のフォローしているユーザーの自分のフォローしていないユーザーの visibility: followers な投稿への返信がストリーミングで流れてくる問題を修正
 | 
					- Fix: 自分のフォローしているユーザーの自分のフォローしていないユーザーの visibility: followers な投稿への返信がストリーミングで流れてくる問題を修正
 | 
				
			||||||
 | 
					- Fix: RedisへのTLキャッシュが有効の場合にHTL/LTL/STLが空になることがある問題を修正
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## 2023.10.2
 | 
					## 2023.10.2
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -131,6 +131,8 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
 | 
				
			||||||
 | 
					
 | 
				
			||||||
				shouldFallbackToDb = shouldFallbackToDb || (noteIds.length === 0);
 | 
									shouldFallbackToDb = shouldFallbackToDb || (noteIds.length === 0);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
									let redisTimeline: MiNote[] = [];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
				if (!shouldFallbackToDb) {
 | 
									if (!shouldFallbackToDb) {
 | 
				
			||||||
					const query = this.notesRepository.createQueryBuilder('note')
 | 
										const query = this.notesRepository.createQueryBuilder('note')
 | 
				
			||||||
						.where('note.id IN (:...noteIds)', { noteIds: noteIds })
 | 
											.where('note.id IN (:...noteIds)', { noteIds: noteIds })
 | 
				
			||||||
| 
						 | 
					@ -141,9 +143,9 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
 | 
				
			||||||
						.leftJoinAndSelect('renote.user', 'renoteUser')
 | 
											.leftJoinAndSelect('renote.user', 'renoteUser')
 | 
				
			||||||
						.leftJoinAndSelect('note.channel', 'channel');
 | 
											.leftJoinAndSelect('note.channel', 'channel');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
					let timeline = await query.getMany();
 | 
										redisTimeline = await query.getMany();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
					timeline = timeline.filter(note => {
 | 
										redisTimeline = redisTimeline.filter(note => {
 | 
				
			||||||
						if (note.userId === me.id) {
 | 
											if (note.userId === me.id) {
 | 
				
			||||||
							return true;
 | 
												return true;
 | 
				
			||||||
						}
 | 
											}
 | 
				
			||||||
| 
						 | 
					@ -159,15 +161,15 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
 | 
				
			||||||
						return true;
 | 
											return true;
 | 
				
			||||||
					});
 | 
										});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
					// TODO: フィルタした結果件数が足りなかった場合の対応
 | 
										redisTimeline.sort((a, b) => a.id > b.id ? -1 : 1);
 | 
				
			||||||
 | 
									}
 | 
				
			||||||
					timeline.sort((a, b) => a.id > b.id ? -1 : 1);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
									if (redisTimeline.length > 0) {
 | 
				
			||||||
					process.nextTick(() => {
 | 
										process.nextTick(() => {
 | 
				
			||||||
						this.activeUsersChart.read(me);
 | 
											this.activeUsersChart.read(me);
 | 
				
			||||||
					});
 | 
										});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
					return await this.noteEntityService.packMany(timeline, me);
 | 
										return await this.noteEntityService.packMany(redisTimeline, me);
 | 
				
			||||||
				} else { // fallback to db
 | 
									} else { // fallback to db
 | 
				
			||||||
					return await this.getFromDb({
 | 
										return await this.getFromDb({
 | 
				
			||||||
						untilId,
 | 
											untilId,
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -110,6 +110,8 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
 | 
				
			||||||
 | 
					
 | 
				
			||||||
				noteIds = noteIds.slice(0, ps.limit);
 | 
									noteIds = noteIds.slice(0, ps.limit);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
									let redisTimeline: MiNote[] = [];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
				if (noteIds.length > 0) {
 | 
									if (noteIds.length > 0) {
 | 
				
			||||||
					const query = this.notesRepository.createQueryBuilder('note')
 | 
										const query = this.notesRepository.createQueryBuilder('note')
 | 
				
			||||||
						.where('note.id IN (:...noteIds)', { noteIds: noteIds })
 | 
											.where('note.id IN (:...noteIds)', { noteIds: noteIds })
 | 
				
			||||||
| 
						 | 
					@ -120,9 +122,9 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
 | 
				
			||||||
						.leftJoinAndSelect('renote.user', 'renoteUser')
 | 
											.leftJoinAndSelect('renote.user', 'renoteUser')
 | 
				
			||||||
						.leftJoinAndSelect('note.channel', 'channel');
 | 
											.leftJoinAndSelect('note.channel', 'channel');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
					let timeline = await query.getMany();
 | 
										redisTimeline = await query.getMany();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
					timeline = timeline.filter(note => {
 | 
										redisTimeline = redisTimeline.filter(note => {
 | 
				
			||||||
						if (me && (note.userId === me.id)) {
 | 
											if (me && (note.userId === me.id)) {
 | 
				
			||||||
							return true;
 | 
												return true;
 | 
				
			||||||
						}
 | 
											}
 | 
				
			||||||
| 
						 | 
					@ -139,17 +141,17 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
 | 
				
			||||||
						return true;
 | 
											return true;
 | 
				
			||||||
					});
 | 
										});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
					// TODO: フィルタした結果件数が足りなかった場合の対応
 | 
										redisTimeline.sort((a, b) => a.id > b.id ? -1 : 1);
 | 
				
			||||||
 | 
									}
 | 
				
			||||||
					timeline.sort((a, b) => a.id > b.id ? -1 : 1);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
									if (redisTimeline.length > 0) {
 | 
				
			||||||
					process.nextTick(() => {
 | 
										process.nextTick(() => {
 | 
				
			||||||
						if (me) {
 | 
											if (me) {
 | 
				
			||||||
							this.activeUsersChart.read(me);
 | 
												this.activeUsersChart.read(me);
 | 
				
			||||||
						}
 | 
											}
 | 
				
			||||||
					});
 | 
										});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
					return await this.noteEntityService.packMany(timeline, me);
 | 
										return await this.noteEntityService.packMany(redisTimeline, me);
 | 
				
			||||||
				} else { // fallback to db
 | 
									} else { // fallback to db
 | 
				
			||||||
					return await this.getFromDb({
 | 
										return await this.getFromDb({
 | 
				
			||||||
						untilId,
 | 
											untilId,
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -5,7 +5,7 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import { Brackets } from 'typeorm';
 | 
					import { Brackets } from 'typeorm';
 | 
				
			||||||
import { Inject, Injectable } from '@nestjs/common';
 | 
					import { Inject, Injectable } from '@nestjs/common';
 | 
				
			||||||
import type { NotesRepository } from '@/models/_.js';
 | 
					import type { MiNote, NotesRepository } from '@/models/_.js';
 | 
				
			||||||
import { Endpoint } from '@/server/api/endpoint-base.js';
 | 
					import { Endpoint } from '@/server/api/endpoint-base.js';
 | 
				
			||||||
import { QueryService } from '@/core/QueryService.js';
 | 
					import { QueryService } from '@/core/QueryService.js';
 | 
				
			||||||
import ActiveUsersChart from '@/core/chart/charts/active-users.js';
 | 
					import ActiveUsersChart from '@/core/chart/charts/active-users.js';
 | 
				
			||||||
| 
						 | 
					@ -89,6 +89,8 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
 | 
				
			||||||
				let noteIds = await this.funoutTimelineService.get(ps.withFiles ? `homeTimelineWithFiles:${me.id}` : `homeTimeline:${me.id}`, untilId, sinceId);
 | 
									let noteIds = await this.funoutTimelineService.get(ps.withFiles ? `homeTimelineWithFiles:${me.id}` : `homeTimeline:${me.id}`, untilId, sinceId);
 | 
				
			||||||
				noteIds = noteIds.slice(0, ps.limit);
 | 
									noteIds = noteIds.slice(0, ps.limit);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
									let redisTimeline: MiNote[] = [];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
				if (noteIds.length > 0) {
 | 
									if (noteIds.length > 0) {
 | 
				
			||||||
					const query = this.notesRepository.createQueryBuilder('note')
 | 
										const query = this.notesRepository.createQueryBuilder('note')
 | 
				
			||||||
						.where('note.id IN (:...noteIds)', { noteIds: noteIds })
 | 
											.where('note.id IN (:...noteIds)', { noteIds: noteIds })
 | 
				
			||||||
| 
						 | 
					@ -99,9 +101,9 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
 | 
				
			||||||
						.leftJoinAndSelect('renote.user', 'renoteUser')
 | 
											.leftJoinAndSelect('renote.user', 'renoteUser')
 | 
				
			||||||
						.leftJoinAndSelect('note.channel', 'channel');
 | 
											.leftJoinAndSelect('note.channel', 'channel');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
					let timeline = await query.getMany();
 | 
										redisTimeline = await query.getMany();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
					timeline = timeline.filter(note => {
 | 
										redisTimeline = redisTimeline.filter(note => {
 | 
				
			||||||
						if (note.userId === me.id) {
 | 
											if (note.userId === me.id) {
 | 
				
			||||||
							return true;
 | 
												return true;
 | 
				
			||||||
						}
 | 
											}
 | 
				
			||||||
| 
						 | 
					@ -120,15 +122,15 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
 | 
				
			||||||
						return true;
 | 
											return true;
 | 
				
			||||||
					});
 | 
										});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
					// TODO: フィルタした結果件数が足りなかった場合の対応
 | 
										redisTimeline.sort((a, b) => a.id > b.id ? -1 : 1);
 | 
				
			||||||
 | 
									}
 | 
				
			||||||
					timeline.sort((a, b) => a.id > b.id ? -1 : 1);
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
									if (redisTimeline.length > 0) {
 | 
				
			||||||
					process.nextTick(() => {
 | 
										process.nextTick(() => {
 | 
				
			||||||
						this.activeUsersChart.read(me);
 | 
											this.activeUsersChart.read(me);
 | 
				
			||||||
					});
 | 
										});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
					return await this.noteEntityService.packMany(timeline, me);
 | 
										return await this.noteEntityService.packMany(redisTimeline, me);
 | 
				
			||||||
				} else { // fallback to db
 | 
									} else { // fallback to db
 | 
				
			||||||
					return await this.getFromDb({
 | 
										return await this.getFromDb({
 | 
				
			||||||
						untilId,
 | 
											untilId,
 | 
				
			||||||
| 
						 | 
					@ -138,6 +140,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
 | 
				
			||||||
						includeRenotedMyNotes: ps.includeRenotedMyNotes,
 | 
											includeRenotedMyNotes: ps.includeRenotedMyNotes,
 | 
				
			||||||
						includeLocalRenotes: ps.includeLocalRenotes,
 | 
											includeLocalRenotes: ps.includeLocalRenotes,
 | 
				
			||||||
						withFiles: ps.withFiles,
 | 
											withFiles: ps.withFiles,
 | 
				
			||||||
 | 
											withRenotes: ps.withRenotes,
 | 
				
			||||||
					}, me);
 | 
										}, me);
 | 
				
			||||||
				}
 | 
									}
 | 
				
			||||||
			} else {
 | 
								} else {
 | 
				
			||||||
| 
						 | 
					@ -149,12 +152,13 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
 | 
				
			||||||
					includeRenotedMyNotes: ps.includeRenotedMyNotes,
 | 
										includeRenotedMyNotes: ps.includeRenotedMyNotes,
 | 
				
			||||||
					includeLocalRenotes: ps.includeLocalRenotes,
 | 
										includeLocalRenotes: ps.includeLocalRenotes,
 | 
				
			||||||
					withFiles: ps.withFiles,
 | 
										withFiles: ps.withFiles,
 | 
				
			||||||
 | 
										withRenotes: ps.withRenotes,
 | 
				
			||||||
				}, me);
 | 
									}, me);
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
		});
 | 
							});
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	private async getFromDb(ps: { untilId: string | null; sinceId: string | null; limit: number; includeMyRenotes: boolean; includeRenotedMyNotes: boolean; includeLocalRenotes: boolean; withFiles: boolean; }, me: MiLocalUser) {
 | 
						private async getFromDb(ps: { untilId: string | null; sinceId: string | null; limit: number; includeMyRenotes: boolean; includeRenotedMyNotes: boolean; includeLocalRenotes: boolean; withFiles: boolean; withRenotes: boolean; }, me: MiLocalUser) {
 | 
				
			||||||
		const followees = await this.userFollowingService.getFollowees(me.id);
 | 
							const followees = await this.userFollowingService.getFollowees(me.id);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		//#region Construct query
 | 
							//#region Construct query
 | 
				
			||||||
| 
						 | 
					@ -222,6 +226,10 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
 | 
				
			||||||
		if (ps.withFiles) {
 | 
							if (ps.withFiles) {
 | 
				
			||||||
			query.andWhere('note.fileIds != \'{}\'');
 | 
								query.andWhere('note.fileIds != \'{}\'');
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							if (ps.withRenotes === false) {
 | 
				
			||||||
 | 
								query.andWhere('note.renoteId IS NULL');
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
		//#endregion
 | 
							//#endregion
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		const timeline = await query.limit(ps.limit).getMany();
 | 
							const timeline = await query.limit(ps.limit).getMany();
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -4,7 +4,7 @@
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import { Inject, Injectable } from '@nestjs/common';
 | 
					import { Inject, Injectable } from '@nestjs/common';
 | 
				
			||||||
import type { NotesRepository, UserListsRepository } from '@/models/_.js';
 | 
					import type { MiNote, NotesRepository, UserListMembershipsRepository, UserListsRepository } from '@/models/_.js';
 | 
				
			||||||
import { Endpoint } from '@/server/api/endpoint-base.js';
 | 
					import { Endpoint } from '@/server/api/endpoint-base.js';
 | 
				
			||||||
import { NoteEntityService } from '@/core/entities/NoteEntityService.js';
 | 
					import { NoteEntityService } from '@/core/entities/NoteEntityService.js';
 | 
				
			||||||
import ActiveUsersChart from '@/core/chart/charts/active-users.js';
 | 
					import ActiveUsersChart from '@/core/chart/charts/active-users.js';
 | 
				
			||||||
| 
						 | 
					@ -13,7 +13,9 @@ import { CacheService } from '@/core/CacheService.js';
 | 
				
			||||||
import { IdService } from '@/core/IdService.js';
 | 
					import { IdService } from '@/core/IdService.js';
 | 
				
			||||||
import { isUserRelated } from '@/misc/is-user-related.js';
 | 
					import { isUserRelated } from '@/misc/is-user-related.js';
 | 
				
			||||||
import { FunoutTimelineService } from '@/core/FunoutTimelineService.js';
 | 
					import { FunoutTimelineService } from '@/core/FunoutTimelineService.js';
 | 
				
			||||||
 | 
					import { QueryService } from '@/core/QueryService.js';
 | 
				
			||||||
import { ApiError } from '../../error.js';
 | 
					import { ApiError } from '../../error.js';
 | 
				
			||||||
 | 
					import { Brackets } from 'typeorm';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export const meta = {
 | 
					export const meta = {
 | 
				
			||||||
	tags: ['notes', 'lists'],
 | 
						tags: ['notes', 'lists'],
 | 
				
			||||||
| 
						 | 
					@ -70,11 +72,16 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
 | 
				
			||||||
		@Inject(DI.userListsRepository)
 | 
							@Inject(DI.userListsRepository)
 | 
				
			||||||
		private userListsRepository: UserListsRepository,
 | 
							private userListsRepository: UserListsRepository,
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
							@Inject(DI.userListMembershipsRepository)
 | 
				
			||||||
 | 
							private userListMembershipsRepository: UserListMembershipsRepository,
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		private noteEntityService: NoteEntityService,
 | 
							private noteEntityService: NoteEntityService,
 | 
				
			||||||
		private activeUsersChart: ActiveUsersChart,
 | 
							private activeUsersChart: ActiveUsersChart,
 | 
				
			||||||
		private cacheService: CacheService,
 | 
							private cacheService: CacheService,
 | 
				
			||||||
		private idService: IdService,
 | 
							private idService: IdService,
 | 
				
			||||||
		private funoutTimelineService: FunoutTimelineService,
 | 
							private funoutTimelineService: FunoutTimelineService,
 | 
				
			||||||
 | 
							private queryService: QueryService,
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	) {
 | 
						) {
 | 
				
			||||||
		super(meta, paramDef, async (ps, me) => {
 | 
							super(meta, paramDef, async (ps, me) => {
 | 
				
			||||||
			const untilId = ps.untilId ?? (ps.untilDate ? this.idService.gen(ps.untilDate!) : null);
 | 
								const untilId = ps.untilId ?? (ps.untilDate ? this.idService.gen(ps.untilDate!) : null);
 | 
				
			||||||
| 
						 | 
					@ -102,44 +109,129 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
 | 
				
			||||||
			let noteIds = await this.funoutTimelineService.get(ps.withFiles ? `userListTimelineWithFiles:${list.id}` : `userListTimeline:${list.id}`, untilId, sinceId);
 | 
								let noteIds = await this.funoutTimelineService.get(ps.withFiles ? `userListTimelineWithFiles:${list.id}` : `userListTimeline:${list.id}`, untilId, sinceId);
 | 
				
			||||||
			noteIds = noteIds.slice(0, ps.limit);
 | 
								noteIds = noteIds.slice(0, ps.limit);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
			if (noteIds.length === 0) {
 | 
								let redisTimeline: MiNote[] = [];
 | 
				
			||||||
				return [];
 | 
					
 | 
				
			||||||
 | 
								if (noteIds.length > 0) {
 | 
				
			||||||
 | 
									const query = this.notesRepository.createQueryBuilder('note')
 | 
				
			||||||
 | 
										.where('note.id IN (:...noteIds)', { noteIds: noteIds })
 | 
				
			||||||
 | 
										.innerJoinAndSelect('note.user', 'user')
 | 
				
			||||||
 | 
										.leftJoinAndSelect('note.reply', 'reply')
 | 
				
			||||||
 | 
										.leftJoinAndSelect('note.renote', 'renote')
 | 
				
			||||||
 | 
										.leftJoinAndSelect('reply.user', 'replyUser')
 | 
				
			||||||
 | 
										.leftJoinAndSelect('renote.user', 'renoteUser')
 | 
				
			||||||
 | 
										.leftJoinAndSelect('note.channel', 'channel');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
									redisTimeline = await query.getMany();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
									redisTimeline = redisTimeline.filter(note => {
 | 
				
			||||||
 | 
										if (note.userId === me.id) {
 | 
				
			||||||
 | 
											return true;
 | 
				
			||||||
 | 
										}
 | 
				
			||||||
 | 
										if (isUserRelated(note, userIdsWhoBlockingMe)) return false;
 | 
				
			||||||
 | 
										if (isUserRelated(note, userIdsWhoMeMuting)) return false;
 | 
				
			||||||
 | 
										if (note.renoteId) {
 | 
				
			||||||
 | 
											if (note.text == null && note.fileIds.length === 0 && !note.hasPoll) {
 | 
				
			||||||
 | 
												if (isUserRelated(note, userIdsWhoMeMutingRenotes)) return false;
 | 
				
			||||||
 | 
												if (ps.withRenotes === false) return false;
 | 
				
			||||||
 | 
											}
 | 
				
			||||||
 | 
										}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
										return true;
 | 
				
			||||||
 | 
									});
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
									redisTimeline.sort((a, b) => a.id > b.id ? -1 : 1);
 | 
				
			||||||
			}
 | 
								}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
			const query = this.notesRepository.createQueryBuilder('note')
 | 
								if (redisTimeline.length > 0) {
 | 
				
			||||||
				.where('note.id IN (:...noteIds)', { noteIds: noteIds })
 | 
									this.activeUsersChart.read(me);
 | 
				
			||||||
				.innerJoinAndSelect('note.user', 'user')
 | 
									return await this.noteEntityService.packMany(redisTimeline, me);
 | 
				
			||||||
				.leftJoinAndSelect('note.reply', 'reply')
 | 
								} else { // fallback to db
 | 
				
			||||||
				.leftJoinAndSelect('note.renote', 'renote')
 | 
									//#region Construct query
 | 
				
			||||||
				.leftJoinAndSelect('reply.user', 'replyUser')
 | 
									const query = this.queryService.makePaginationQuery(this.notesRepository.createQueryBuilder('note'), ps.sinceId, ps.untilId)
 | 
				
			||||||
				.leftJoinAndSelect('renote.user', 'renoteUser')
 | 
										.innerJoin(this.userListMembershipsRepository.metadata.targetName, 'userListMemberships', 'userListMemberships.userId = note.userId')
 | 
				
			||||||
				.leftJoinAndSelect('note.channel', 'channel');
 | 
										.innerJoinAndSelect('note.user', 'user')
 | 
				
			||||||
 | 
										.leftJoinAndSelect('note.reply', 'reply')
 | 
				
			||||||
 | 
										.leftJoinAndSelect('note.renote', 'renote')
 | 
				
			||||||
 | 
										.leftJoinAndSelect('reply.user', 'replyUser')
 | 
				
			||||||
 | 
										.leftJoinAndSelect('renote.user', 'renoteUser')
 | 
				
			||||||
 | 
										.andWhere('userListMemberships.userListId = :userListId', { userListId: list.id })
 | 
				
			||||||
 | 
										.andWhere('note.channelId IS NULL') // チャンネルノートではない
 | 
				
			||||||
 | 
										.andWhere(new Brackets(qb => {
 | 
				
			||||||
 | 
											qb
 | 
				
			||||||
 | 
												.where('note.replyId IS NULL') // 返信ではない
 | 
				
			||||||
 | 
												.orWhere(new Brackets(qb => {
 | 
				
			||||||
 | 
													qb // 返信だけど投稿者自身への返信
 | 
				
			||||||
 | 
														.where('note.replyId IS NOT NULL')
 | 
				
			||||||
 | 
														.andWhere('note.replyUserId = note.userId');
 | 
				
			||||||
 | 
												}))
 | 
				
			||||||
 | 
												.orWhere(new Brackets(qb => {
 | 
				
			||||||
 | 
													qb // 返信だけど自分宛ての返信
 | 
				
			||||||
 | 
														.where('note.replyId IS NOT NULL')
 | 
				
			||||||
 | 
														.andWhere('note.replyUserId = :meId', { meId: me.id });
 | 
				
			||||||
 | 
												}))
 | 
				
			||||||
 | 
												.orWhere(new Brackets(qb => {
 | 
				
			||||||
 | 
													qb // 返信だけどwithRepliesがtrueの場合
 | 
				
			||||||
 | 
														.where('note.replyId IS NOT NULL')
 | 
				
			||||||
 | 
														.andWhere('userListMemberships.withReplies = true');
 | 
				
			||||||
 | 
												}));
 | 
				
			||||||
 | 
										}));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
			let timeline = await query.getMany();
 | 
									this.queryService.generateVisibilityQuery(query, me);
 | 
				
			||||||
 | 
									this.queryService.generateMutedUserQuery(query, me);
 | 
				
			||||||
 | 
									this.queryService.generateBlockedUserQuery(query, me);
 | 
				
			||||||
 | 
									this.queryService.generateMutedUserRenotesQueryForNotes(query, me);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
			timeline = timeline.filter(note => {
 | 
									if (ps.includeMyRenotes === false) {
 | 
				
			||||||
				if (note.userId === me.id) {
 | 
										query.andWhere(new Brackets(qb => {
 | 
				
			||||||
					return true;
 | 
											qb.orWhere('note.userId != :meId', { meId: me.id });
 | 
				
			||||||
				}
 | 
											qb.orWhere('note.renoteId IS NULL');
 | 
				
			||||||
				if (isUserRelated(note, userIdsWhoBlockingMe)) return false;
 | 
											qb.orWhere('note.text IS NOT NULL');
 | 
				
			||||||
				if (isUserRelated(note, userIdsWhoMeMuting)) return false;
 | 
											qb.orWhere('note.fileIds != \'{}\'');
 | 
				
			||||||
				if (note.renoteId) {
 | 
											qb.orWhere('0 < (SELECT COUNT(*) FROM poll WHERE poll."noteId" = note.id)');
 | 
				
			||||||
					if (note.text == null && note.fileIds.length === 0 && !note.hasPoll) {
 | 
										}));
 | 
				
			||||||
						if (isUserRelated(note, userIdsWhoMeMutingRenotes)) return false;
 | 
					 | 
				
			||||||
						if (ps.withRenotes === false) return false;
 | 
					 | 
				
			||||||
					}
 | 
					 | 
				
			||||||
				}
 | 
									}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
				return true;
 | 
									if (ps.includeRenotedMyNotes === false) {
 | 
				
			||||||
			});
 | 
										query.andWhere(new Brackets(qb => {
 | 
				
			||||||
 | 
											qb.orWhere('note.renoteUserId != :meId', { meId: me.id });
 | 
				
			||||||
 | 
											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)');
 | 
				
			||||||
 | 
										}));
 | 
				
			||||||
 | 
									}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
			// TODO: フィルタした結果件数が足りなかった場合の対応
 | 
									if (ps.includeLocalRenotes === false) {
 | 
				
			||||||
 | 
										query.andWhere(new Brackets(qb => {
 | 
				
			||||||
 | 
											qb.orWhere('note.renoteUserHost IS NOT NULL');
 | 
				
			||||||
 | 
											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)');
 | 
				
			||||||
 | 
										}));
 | 
				
			||||||
 | 
									}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
			timeline.sort((a, b) => a.id > b.id ? -1 : 1);
 | 
									if (ps.withRenotes === false) {
 | 
				
			||||||
 | 
										query.andWhere(new Brackets(qb => {
 | 
				
			||||||
 | 
											qb.orWhere('note.renoteId IS NULL');
 | 
				
			||||||
 | 
											qb.orWhere(new Brackets(qb => {
 | 
				
			||||||
 | 
												qb.orWhere('note.text IS NOT NULL');
 | 
				
			||||||
 | 
												qb.orWhere('note.fileIds != \'{}\'');
 | 
				
			||||||
 | 
											}));
 | 
				
			||||||
 | 
										}));
 | 
				
			||||||
 | 
									}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
			this.activeUsersChart.read(me);
 | 
									if (ps.withFiles) {
 | 
				
			||||||
 | 
										query.andWhere('note.fileIds != \'{}\'');
 | 
				
			||||||
 | 
									}
 | 
				
			||||||
 | 
									//#endregion
 | 
				
			||||||
 | 
					
 | 
				
			||||||
			return await this.noteEntityService.packMany(timeline, me);
 | 
									const timeline = await query.limit(ps.limit).getMany();
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
									this.activeUsersChart.read(me);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
									return await this.noteEntityService.packMany(timeline, me);
 | 
				
			||||||
 | 
								}
 | 
				
			||||||
		});
 | 
							});
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue