2020-01-29 21:37:25 +02:00
|
|
|
import $ from 'cafy';
|
2021-08-19 15:55:45 +03:00
|
|
|
import { ID } from '@/misc/cafy-id';
|
|
|
|
import define from '../../define';
|
|
|
|
import { ClipNotes, Clips, Notes } from '@/models/index';
|
|
|
|
import { makePaginationQuery } from '../../common/make-pagination-query';
|
|
|
|
import { generateVisibilityQuery } from '../../common/generate-visibility-query';
|
|
|
|
import { generateMutedUserQuery } from '../../common/generate-muted-user-query';
|
|
|
|
import { ApiError } from '../../error';
|
|
|
|
import { generateBlockedUserQuery } from '../../common/generate-block-query';
|
2020-01-29 21:37:25 +02:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['account', 'notes', 'clips'],
|
|
|
|
|
2020-11-15 10:35:40 +02:00
|
|
|
requireCredential: false as const,
|
2020-01-29 21:37:25 +02:00
|
|
|
|
|
|
|
kind: 'read:account',
|
|
|
|
|
|
|
|
params: {
|
2020-11-15 05:04:54 +02:00
|
|
|
clipId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
},
|
|
|
|
|
2020-01-29 21:37:25 +02:00
|
|
|
limit: {
|
|
|
|
validator: $.optional.num.range(1, 100),
|
2021-12-09 16:58:30 +02:00
|
|
|
default: 10,
|
2020-01-29 21:37:25 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
sinceId: {
|
|
|
|
validator: $.optional.type(ID),
|
|
|
|
},
|
|
|
|
|
|
|
|
untilId: {
|
|
|
|
validator: $.optional.type(ID),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchClip: {
|
2020-11-15 05:04:54 +02:00
|
|
|
message: 'No such clip.',
|
2020-01-29 21:37:25 +02:00
|
|
|
code: 'NO_SUCH_CLIP',
|
2021-12-09 16:58:30 +02:00
|
|
|
id: '1d7645e6-2b6d-4635-b0fe-fe22b0e72e00',
|
|
|
|
},
|
2021-03-06 15:34:11 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
|
|
|
type: 'array' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
items: {
|
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2021-12-09 16:58:30 +02:00
|
|
|
ref: 'Note',
|
|
|
|
},
|
|
|
|
},
|
2020-01-29 21:37:25 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
export default define(meta, async (ps, user) => {
|
|
|
|
const clip = await Clips.findOne({
|
|
|
|
id: ps.clipId,
|
|
|
|
});
|
|
|
|
|
|
|
|
if (clip == null) {
|
|
|
|
throw new ApiError(meta.errors.noSuchClip);
|
|
|
|
}
|
|
|
|
|
2020-11-15 10:35:40 +02:00
|
|
|
if (!clip.isPublic && (user == null || (clip.userId !== user.id))) {
|
2020-11-15 10:32:29 +02:00
|
|
|
throw new ApiError(meta.errors.noSuchClip);
|
|
|
|
}
|
|
|
|
|
2020-01-29 21:37:25 +02:00
|
|
|
const clipQuery = ClipNotes.createQueryBuilder('joining')
|
|
|
|
.select('joining.noteId')
|
|
|
|
.where('joining.clipId = :clipId', { clipId: clip.id });
|
|
|
|
|
|
|
|
const query = makePaginationQuery(Notes.createQueryBuilder('note'), ps.sinceId, ps.untilId)
|
|
|
|
.andWhere(`note.id IN (${ clipQuery.getQuery() })`)
|
2021-03-21 05:33:37 +02:00
|
|
|
.innerJoinAndSelect('note.user', 'user')
|
2021-03-21 05:31:56 +02:00
|
|
|
.leftJoinAndSelect('note.reply', 'reply')
|
|
|
|
.leftJoinAndSelect('note.renote', 'renote')
|
|
|
|
.leftJoinAndSelect('reply.user', 'replyUser')
|
|
|
|
.leftJoinAndSelect('renote.user', 'renoteUser')
|
2020-01-29 21:37:25 +02:00
|
|
|
.setParameters(clipQuery.getParameters());
|
|
|
|
|
2020-11-15 10:35:40 +02:00
|
|
|
if (user) {
|
|
|
|
generateVisibilityQuery(query, user);
|
|
|
|
generateMutedUserQuery(query, user);
|
2021-08-17 15:48:59 +03:00
|
|
|
generateBlockedUserQuery(query, user);
|
2020-11-15 10:35:40 +02:00
|
|
|
}
|
2020-01-29 21:37:25 +02:00
|
|
|
|
|
|
|
const notes = await query
|
|
|
|
.take(ps.limit!)
|
|
|
|
.getMany();
|
|
|
|
|
|
|
|
return await Notes.packMany(notes, user);
|
|
|
|
});
|