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';
|
2023-02-16 16:09:41 +02:00
|
|
|
import type { NotesRepository } 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 { 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 14:02:26 +02:00
|
|
|
import { RoleService } from '@/core/RoleService.js';
|
2022-06-14 12:01:23 +03:00
|
|
|
import { ApiError } from '../../error.js';
|
2018-04-17 08:52:28 +03:00
|
|
|
|
2018-09-05 17:55:51 +03:00
|
|
|
export const meta = {
|
2019-02-23 04:20:58 +02:00
|
|
|
tags: ['notes'],
|
|
|
|
|
|
|
|
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
|
|
|
},
|
|
|
|
|
2019-02-22 04:46:58 +02:00
|
|
|
errors: {
|
|
|
|
ltlDisabled: {
|
|
|
|
message: 'Local timeline has been disabled.',
|
|
|
|
code: 'LTL_DISABLED',
|
2021-12-09 16:58:30 +02:00
|
|
|
id: '45a6eb02-7695-4393-b023-dd3be9aaaefd',
|
2019-02-22 04:46:58 +02:00
|
|
|
},
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
2022-01-18 15:27:10 +02:00
|
|
|
} as const;
|
2018-04-17 08:52:28 +03:00
|
|
|
|
2022-02-20 06:15:40 +02:00
|
|
|
export const paramDef = {
|
2022-02-19 07:05:32 +02:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
2022-04-03 07:57:26 +03:00
|
|
|
withFiles: {
|
|
|
|
type: 'boolean',
|
|
|
|
default: false,
|
|
|
|
description: 'Only show notes that have attached files.',
|
|
|
|
},
|
2022-02-19 07:05:32 +02:00
|
|
|
fileType: { type: 'array', items: {
|
|
|
|
type: 'string',
|
|
|
|
} },
|
|
|
|
excludeNsfw: { type: 'boolean', default: false },
|
|
|
|
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 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,
|
2019-01-15 19:30:55 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
private noteEntityService: NoteEntityService,
|
|
|
|
private queryService: QueryService,
|
|
|
|
private metaService: MetaService,
|
2023-01-12 14:02:26 +02:00
|
|
|
private roleService: RoleService,
|
2022-09-17 21:27:08 +03:00
|
|
|
private activeUsersChart: ActiveUsersChart,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
2023-01-15 13:52:53 +02:00
|
|
|
const policies = await this.roleService.getUserPolicies(me ? me.id : null);
|
|
|
|
if (!policies.ltlAvailable) {
|
2023-01-12 14:02:26 +02:00
|
|
|
throw new ApiError(meta.errors.ltlDisabled);
|
2022-09-17 21:27:08 +03:00
|
|
|
}
|
2019-01-20 06:14:31 +02: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-01-01 02:35:14 +02:00
|
|
|
.andWhere('note.createdAt > :minDate', { minDate: new Date(Date.now() - (1000 * 60 * 60 * 24 * 30)) }) // 30日前まで
|
2022-09-17 21:27:08 +03:00
|
|
|
.andWhere('(note.visibility = \'public\') AND (note.userHost 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-04-17 08:52:28 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
this.queryService.generateChannelQuery(query, me);
|
|
|
|
this.queryService.generateRepliesQuery(query, me);
|
|
|
|
this.queryService.generateVisibilityQuery(query, me);
|
|
|
|
if (me) this.queryService.generateMutedUserQuery(query, me);
|
|
|
|
if (me) this.queryService.generateMutedNoteQuery(query, me);
|
|
|
|
if (me) this.queryService.generateBlockedUserQuery(query, me);
|
2018-06-07 00:13:57 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.withFiles) {
|
|
|
|
query.andWhere('note.fileIds != \'{}\'');
|
2019-04-07 15:50:36 +03:00
|
|
|
}
|
2018-09-25 15:09:38 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.fileType != null) {
|
|
|
|
query.andWhere('note.fileIds != \'{}\'');
|
|
|
|
query.andWhere(new Brackets(qb => {
|
|
|
|
for (const type of ps.fileType!) {
|
|
|
|
const i = ps.fileType!.indexOf(type);
|
|
|
|
qb.orWhere(`:type${i} = ANY(note.attachedFileTypes)`, { [`type${i}`]: type });
|
|
|
|
}
|
|
|
|
}));
|
2018-04-17 08:52:28 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (ps.excludeNsfw) {
|
|
|
|
query.andWhere('note.cw IS NULL');
|
|
|
|
query.andWhere('0 = (SELECT COUNT(*) FROM drive_file df WHERE df.id = ANY(note."fileIds") AND df."isSensitive" = TRUE)');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//#endregion
|
|
|
|
|
|
|
|
const timeline = await query.take(ps.limit).getMany();
|
2019-01-17 10:16:08 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
process.nextTick(() => {
|
|
|
|
if (me) {
|
|
|
|
this.activeUsersChart.read(me);
|
|
|
|
}
|
|
|
|
});
|
2019-02-22 04:46:58 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
return await this.noteEntityService.packMany(timeline, me);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|