2022-06-14 12:01:23 +03:00
|
|
|
import { In } 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 { ClipNotesRepository, ClipsRepository } from '@/models/index.js';
|
2022-09-17 21:27:08 +03:00
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { ClipEntityService } from '@/core/entities/ClipEntityService.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-02-27 04:07:39 +02:00
|
|
|
import { ApiError } from '../../error.js';
|
2022-09-17 21:27:08 +03:00
|
|
|
import { GetterService } from '../../common/GetterService.js';
|
2020-11-17 07:59:15 +02:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['clips', 'notes'],
|
|
|
|
|
2022-01-18 15:27:10 +02:00
|
|
|
requireCredential: false,
|
2020-11-17 07:59:15 +02:00
|
|
|
|
|
|
|
res: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'array',
|
|
|
|
optional: false, nullable: false,
|
2020-11-17 07:59:15 +02:00
|
|
|
items: {
|
2022-01-18 15:27:10 +02:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
|
|
|
ref: 'Clip',
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
2020-11-17 07:59:15 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchNote: {
|
|
|
|
message: 'No such note.',
|
|
|
|
code: 'NO_SUCH_NOTE',
|
2021-12-09 16:58:30 +02:00
|
|
|
id: '47db1a1c-b0af-458d-8fb4-986e4efafe1e',
|
|
|
|
},
|
|
|
|
},
|
2022-01-18 15:27:10 +02:00
|
|
|
} as const;
|
2020-11-17 07:59:15 +02:00
|
|
|
|
2022-02-20 06:15:40 +02:00
|
|
|
export const paramDef = {
|
2022-02-19 07:05:32 +02:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
noteId: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
|
|
|
required: ['noteId'],
|
|
|
|
} 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.clipsRepository)
|
|
|
|
private clipsRepository: ClipsRepository,
|
|
|
|
|
|
|
|
@Inject(DI.clipNotesRepository)
|
|
|
|
private clipNotesRepository: ClipNotesRepository,
|
|
|
|
|
|
|
|
private clipEntityService: ClipEntityService,
|
|
|
|
private getterService: GetterService,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
const note = await this.getterService.getNote(ps.noteId).catch(err => {
|
|
|
|
if (err.id === '9725d0ce-ba28-4dde-95a7-2cbb2c15de24') throw new ApiError(meta.errors.noSuchNote);
|
|
|
|
throw err;
|
|
|
|
});
|
|
|
|
|
|
|
|
const clipNotes = await this.clipNotesRepository.findBy({
|
|
|
|
noteId: note.id,
|
|
|
|
});
|
|
|
|
|
|
|
|
const clips = await this.clipsRepository.findBy({
|
|
|
|
id: In(clipNotes.map(x => x.clipId)),
|
|
|
|
isPublic: true,
|
|
|
|
});
|
|
|
|
|
|
|
|
return await Promise.all(clips.map(x => this.clipEntityService.pack(x)));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|