2023-07-27 07:31:52 +02:00
|
|
|
/*
|
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
*/
|
|
|
|
|
|
2022-09-17 20:27:08 +02:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
2022-09-20 22:33:11 +02:00
|
|
|
import type { NotesRepository, DriveFilesRepository } from '@/models/index.js';
|
2022-09-17 20:27:08 +02:00
|
|
|
import { NoteEntityService } from '@/core/entities/NoteEntityService.js';
|
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2022-02-27 03:07:39 +01:00
|
|
|
import { ApiError } from '../../../error.js';
|
2018-10-23 00:04:00 +02:00
|
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 03:20:58 +01:00
|
|
|
tags: ['drive', 'notes'],
|
|
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
requireCredential: true,
|
2018-10-23 00:04:00 +02:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
kind: 'read:drive',
|
2018-10-23 00:04:00 +02:00
|
|
|
|
2022-06-10 07:25:20 +02:00
|
|
|
description: 'Find the notes to which the given file is attached.',
|
|
|
|
|
|
2019-02-24 10:13:11 +01:00
|
|
|
res: {
|
2022-01-18 14:27:10 +01:00
|
|
|
type: 'array',
|
|
|
|
|
optional: false, nullable: false,
|
2019-02-24 10:13:11 +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-24 10:13:11 +01:00
|
|
|
},
|
|
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
errors: {
|
|
|
|
|
noSuchFile: {
|
|
|
|
|
message: 'No such file.',
|
|
|
|
|
code: 'NO_SUCH_FILE',
|
|
|
|
|
id: 'c118ece3-2e4b-4296-99d1-51756e32d232',
|
2021-12-09 15:58:30 +01:00
|
|
|
},
|
|
|
|
|
},
|
2022-01-18 14:27:10 +01:00
|
|
|
} as const;
|
2018-10-23 00:04:00 +02:00
|
|
|
|
2022-02-20 05:15:40 +01:00
|
|
|
export const paramDef = {
|
2022-02-19 06:05:32 +01:00
|
|
|
type: 'object',
|
|
|
|
|
properties: {
|
|
|
|
|
fileId: { type: 'string', format: 'misskey:id' },
|
|
|
|
|
},
|
|
|
|
|
required: ['fileId'],
|
|
|
|
|
} as const;
|
|
|
|
|
|
2022-09-17 20:27:08 +02:00
|
|
|
@Injectable()
|
2023-08-17 14:20:58 +02:00
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
2022-09-17 20:27:08 +02:00
|
|
|
constructor(
|
|
|
|
|
@Inject(DI.driveFilesRepository)
|
|
|
|
|
private driveFilesRepository: DriveFilesRepository,
|
|
|
|
|
|
|
|
|
|
@Inject(DI.notesRepository)
|
|
|
|
|
private notesRepository: NotesRepository,
|
|
|
|
|
|
|
|
|
|
private noteEntityService: NoteEntityService,
|
|
|
|
|
) {
|
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
|
// Fetch file
|
|
|
|
|
const file = await this.driveFilesRepository.findOneBy({
|
|
|
|
|
id: ps.fileId,
|
|
|
|
|
userId: me.id,
|
|
|
|
|
});
|
2018-10-23 00:04:00 +02:00
|
|
|
|
2022-09-17 20:27:08 +02:00
|
|
|
if (file == null) {
|
|
|
|
|
throw new ApiError(meta.errors.noSuchFile);
|
|
|
|
|
}
|
2019-04-24 07:54:06 +02:00
|
|
|
|
2022-09-17 20:27:08 +02:00
|
|
|
const notes = await this.notesRepository.createQueryBuilder('note')
|
|
|
|
|
.where(':file = ANY(note.fileIds)', { file: file.id })
|
|
|
|
|
.getMany();
|
|
|
|
|
|
|
|
|
|
return await this.noteEntityService.packMany(notes, me, {
|
|
|
|
|
detail: true,
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|