2022-06-14 12:01:23 +03:00
|
|
|
import { Brackets } from 'typeorm';
|
2022-09-17 21:27:08 +03:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2022-09-20 23:33:11 +03:00
|
|
|
import type { NotesRepository, FollowingsRepository } from '@/models/index.js';
|
2022-09-17 21:27:08 +03:00
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { QueryService } from '@/core/QueryService.js';
|
|
|
|
import ActiveUsersChart from '@/core/chart/charts/active-users.js';
|
|
|
|
import { NoteEntityService } from '@/core/entities/NoteEntityService.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2023-03-19 09:52:38 +02:00
|
|
|
import { IdService } from '@/core/IdService.js';
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2018-07-06 14:40:44 +03:00
|
|
|
export const meta = {
|
2019-02-23 04:20:58 +02:00
|
|
|
tags: ['notes'],
|
|
|
|
|
2022-01-18 15:27:10 +02:00
|
|
|
requireCredential: true,
|
2018-07-16 00:58:45 +03:00
|
|
|
|
2019-02-23 04:20:58 +02:00
|
|
|
res: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2019-02-23 04:20:58 +02:00
|
|
|
items: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2019-04-23 16:35:26 +03:00
|
|
|
ref: 'Note',
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
2019-02-23 04:20:58 +02:00
|
|
|
},
|
2022-01-18 15:27:10 +02:00
|
|
|
} as const;
|
2018-07-06 14:40:44 +03:00
|
|
|
|
2022-02-20 06:15:40 +02:00
|
|
|
export const paramDef = {
|
2022-02-19 07:05:32 +02:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
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' },
|
|
|
|
includeMyRenotes: { type: 'boolean', default: true },
|
|
|
|
includeRenotedMyNotes: { type: 'boolean', default: true },
|
|
|
|
includeLocalRenotes: { type: 'boolean', default: true },
|
2023-05-16 06:16:37 +03:00
|
|
|
withFiles: { type: 'boolean', default: false },
|
|
|
|
withReplies: { type: 'boolean', default: false },
|
2022-02-19 07:05:32 +02:00
|
|
|
},
|
|
|
|
required: [],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-17 21:27:08 +03:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.notesRepository)
|
|
|
|
private notesRepository: NotesRepository,
|
2018-04-21 05:42:38 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
@Inject(DI.followingsRepository)
|
|
|
|
private followingsRepository: FollowingsRepository,
|
2018-04-21 05:42:38 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
private noteEntityService: NoteEntityService,
|
|
|
|
private queryService: QueryService,
|
|
|
|
private activeUsersChart: ActiveUsersChart,
|
2023-03-19 09:52:38 +02:00
|
|
|
private idService: IdService,
|
2022-09-17 21:27:08 +03:00
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
2023-02-26 11:57:24 +02:00
|
|
|
const followees = await this.followingsRepository.createQueryBuilder('following')
|
|
|
|
.select('following.followeeId')
|
|
|
|
.where('following.followerId = :followerId', { followerId: me.id })
|
|
|
|
.getMany();
|
2018-06-07 00:13:57 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
//#region Construct query
|
|
|
|
const query = this.queryService.makePaginationQuery(this.notesRepository.createQueryBuilder('note'),
|
|
|
|
ps.sinceId, ps.untilId, ps.sinceDate, ps.untilDate)
|
2023-03-19 09:52:38 +02:00
|
|
|
.andWhere('note.id > :minId', { minId: this.idService.genId(new Date(Date.now() - (1000 * 60 * 60 * 24 * 10))) }) // 10日前まで
|
2022-09-17 21:27:08 +03:00
|
|
|
.innerJoinAndSelect('note.user', 'user')
|
|
|
|
.leftJoinAndSelect('note.reply', 'reply')
|
|
|
|
.leftJoinAndSelect('note.renote', 'renote')
|
|
|
|
.leftJoinAndSelect('reply.user', 'replyUser')
|
2023-04-06 13:48:24 +03:00
|
|
|
.leftJoinAndSelect('renote.user', 'renoteUser');
|
2023-02-26 11:54:52 +02:00
|
|
|
|
2023-02-26 11:57:24 +02:00
|
|
|
if (followees.length > 0) {
|
2023-02-26 11:54:52 +02:00
|
|
|
const meOrFolloweeIds = [me.id, ...followees.map(f => f.followeeId)];
|
|
|
|
|
|
|
|
query.andWhere('note.userId IN (:...meOrFolloweeIds)', { meOrFolloweeIds: meOrFolloweeIds });
|
|
|
|
} else {
|
|
|
|
query.andWhere('note.userId = :meId', { meId: me.id });
|
|
|
|
}
|
2016-12-29 00:49:51 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
this.queryService.generateChannelQuery(query, me);
|
2023-05-16 06:16:37 +03:00
|
|
|
this.queryService.generateRepliesQuery(query, ps.withReplies, me);
|
2022-09-17 21:27:08 +03:00
|
|
|
this.queryService.generateVisibilityQuery(query, me);
|
|
|
|
this.queryService.generateMutedUserQuery(query, me);
|
|
|
|
this.queryService.generateMutedNoteQuery(query, me);
|
|
|
|
this.queryService.generateBlockedUserQuery(query, me);
|
2023-03-08 01:56:09 +02:00
|
|
|
this.queryService.generateMutedUserRenotesQueryForNotes(query, me);
|
2019-01-17 10:16:08 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.includeMyRenotes === false) {
|
|
|
|
query.andWhere(new Brackets(qb => {
|
|
|
|
qb.orWhere('note.userId != :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)');
|
|
|
|
}));
|
|
|
|
}
|
2019-02-22 04:46:58 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
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)');
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
|
|
|
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)');
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.withFiles) {
|
|
|
|
query.andWhere('note.fileIds != \'{}\'');
|
|
|
|
}
|
|
|
|
//#endregion
|
|
|
|
|
|
|
|
const timeline = await query.take(ps.limit).getMany();
|
|
|
|
|
|
|
|
process.nextTick(() => {
|
|
|
|
this.activeUsersChart.read(me);
|
|
|
|
});
|
|
|
|
|
|
|
|
return await this.noteEntityService.packMany(timeline, me);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|