2022-09-17 20:27:08 +02:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2022-09-20 22:33:11 +02:00
|
|
|
import type { NotesRepository } from '@/models/index.js';
|
2022-09-17 20:27:08 +02:00
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { QueryService } from '@/core/QueryService.js';
|
|
|
|
import { NoteEntityService } from '@/core/entities/NoteEntityService.js';
|
|
|
|
import { MetaService } from '@/core/MetaService.js';
|
|
|
|
import ActiveUsersChart from '@/core/chart/charts/active-users.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2023-01-12 13:02:26 +01:00
|
|
|
import { RoleService } from '@/core/RoleService.js';
|
2022-02-27 03:07:39 +01:00
|
|
|
import { ApiError } from '../../error.js';
|
2018-04-17 07:52:28 +02:00
|
|
|
|
2018-09-05 16:55:51 +02:00
|
|
|
export const meta = {
|
2019-02-23 03:20:58 +01:00
|
|
|
tags: ['notes'],
|
|
|
|
|
|
|
|
res: {
|
2022-01-18 14:27:10 +01:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2019-02-23 03:20:58 +01:00
|
|
|
items: {
|
2022-01-18 14:27:10 +01:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2019-04-23 15:35:26 +02:00
|
|
|
ref: 'Note',
|
2021-12-09 15:58:30 +01:00
|
|
|
},
|
2019-02-23 03:20:58 +01:00
|
|
|
},
|
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
errors: {
|
|
|
|
gtlDisabled: {
|
|
|
|
message: 'Global timeline has been disabled.',
|
|
|
|
code: 'GTL_DISABLED',
|
2021-12-09 15:58:30 +01:00
|
|
|
id: '0332fc13-6ab2-4427-ae80-a9fadffd1a6b',
|
2019-02-22 03:46:58 +01:00
|
|
|
},
|
2021-12-09 15:58:30 +01:00
|
|
|
},
|
2022-01-18 14:27:10 +01:00
|
|
|
} as const;
|
2018-04-17 07:52:28 +02:00
|
|
|
|
2022-02-20 05:15:40 +01:00
|
|
|
export const paramDef = {
|
2022-02-19 06:05:32 +01:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
2022-04-03 06:57:26 +02:00
|
|
|
withFiles: {
|
|
|
|
type: 'boolean',
|
|
|
|
default: false,
|
|
|
|
description: 'Only show notes that have attached files.',
|
|
|
|
},
|
2022-02-19 06:05:32 +01: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' },
|
|
|
|
},
|
|
|
|
required: [],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 18:12:50 +01:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-17 20:27:08 +02:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.notesRepository)
|
|
|
|
private notesRepository: NotesRepository,
|
2019-01-15 18:30:55 +01:00
|
|
|
|
2022-09-17 20:27:08 +02:00
|
|
|
private noteEntityService: NoteEntityService,
|
|
|
|
private queryService: QueryService,
|
|
|
|
private metaService: MetaService,
|
2023-01-12 13:02:26 +01:00
|
|
|
private roleService: RoleService,
|
2022-09-17 20:27:08 +02:00
|
|
|
private activeUsersChart: ActiveUsersChart,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
2023-01-12 13:02:26 +01:00
|
|
|
const role = await this.roleService.getUserRoleOptions(me ? me.id : null);
|
|
|
|
if (!role.gtlAvailable) {
|
|
|
|
throw new ApiError(meta.errors.gtlDisabled);
|
2022-09-17 20:27:08 +02:00
|
|
|
}
|
2018-07-15 10:50:24 +02:00
|
|
|
|
2022-09-17 20:27:08 +02:00
|
|
|
//#region Construct query
|
|
|
|
const query = this.queryService.makePaginationQuery(this.notesRepository.createQueryBuilder('note'),
|
|
|
|
ps.sinceId, ps.untilId, ps.sinceDate, ps.untilDate)
|
|
|
|
.andWhere('note.visibility = \'public\'')
|
|
|
|
.andWhere('note.channelId IS NULL')
|
|
|
|
.innerJoinAndSelect('note.user', 'user')
|
|
|
|
.leftJoinAndSelect('user.avatar', 'avatar')
|
|
|
|
.leftJoinAndSelect('user.banner', 'banner')
|
|
|
|
.leftJoinAndSelect('note.reply', 'reply')
|
|
|
|
.leftJoinAndSelect('note.renote', 'renote')
|
|
|
|
.leftJoinAndSelect('reply.user', 'replyUser')
|
|
|
|
.leftJoinAndSelect('replyUser.avatar', 'replyUserAvatar')
|
|
|
|
.leftJoinAndSelect('replyUser.banner', 'replyUserBanner')
|
|
|
|
.leftJoinAndSelect('renote.user', 'renoteUser')
|
|
|
|
.leftJoinAndSelect('renoteUser.avatar', 'renoteUserAvatar')
|
|
|
|
.leftJoinAndSelect('renoteUser.banner', 'renoteUserBanner');
|
2018-05-28 14:59:57 +02:00
|
|
|
|
2022-09-17 20:27:08 +02:00
|
|
|
this.queryService.generateRepliesQuery(query, me);
|
|
|
|
if (me) {
|
|
|
|
this.queryService.generateMutedUserQuery(query, me);
|
|
|
|
this.queryService.generateMutedNoteQuery(query, me);
|
|
|
|
this.queryService.generateBlockedUserQuery(query, me);
|
|
|
|
}
|
2018-04-17 07:52:28 +02:00
|
|
|
|
2022-09-17 20:27:08 +02:00
|
|
|
if (ps.withFiles) {
|
|
|
|
query.andWhere('note.fileIds != \'{}\'');
|
|
|
|
}
|
|
|
|
//#endregion
|
2018-09-05 16:55:51 +02:00
|
|
|
|
2022-09-17 20:27:08 +02:00
|
|
|
const timeline = await query.take(ps.limit).getMany();
|
2018-06-06 23:13:57 +02:00
|
|
|
|
2022-09-17 20:27:08 +02:00
|
|
|
process.nextTick(() => {
|
|
|
|
if (me) {
|
|
|
|
this.activeUsersChart.read(me);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return await this.noteEntityService.packMany(timeline, me);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|