2022-02-27 11:07:39 +09:00
|
|
|
import define from '../../../define.js';
|
|
|
|
|
import { ApiError } from '../../../error.js';
|
|
|
|
|
import { DriveFiles, Notes } from '@/models/index.js';
|
2018-10-23 07:04:00 +09:00
|
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 11:20:58 +09:00
|
|
|
tags: ['drive', 'notes'],
|
|
|
|
|
|
2022-01-18 22:27:10 +09:00
|
|
|
requireCredential: true,
|
2018-10-23 07:04:00 +09:00
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
kind: 'read:drive',
|
2018-10-23 07:04:00 +09:00
|
|
|
|
2022-06-10 07:25:20 +02:00
|
|
|
description: 'Find the notes to which the given file is attached.',
|
|
|
|
|
|
2019-02-24 18:13:11 +09:00
|
|
|
res: {
|
2022-01-18 22:27:10 +09:00
|
|
|
type: 'array',
|
|
|
|
|
optional: false, nullable: false,
|
2019-02-24 18:13:11 +09:00
|
|
|
items: {
|
2022-01-18 22:27:10 +09:00
|
|
|
type: 'object',
|
|
|
|
|
optional: false, nullable: false,
|
2019-04-23 22:35:26 +09:00
|
|
|
ref: 'Note',
|
2021-12-09 23:58:30 +09:00
|
|
|
},
|
2019-02-24 18:13:11 +09:00
|
|
|
},
|
|
|
|
|
|
2019-02-22 11:46:58 +09:00
|
|
|
errors: {
|
|
|
|
|
noSuchFile: {
|
|
|
|
|
message: 'No such file.',
|
|
|
|
|
code: 'NO_SUCH_FILE',
|
|
|
|
|
id: 'c118ece3-2e4b-4296-99d1-51756e32d232',
|
2021-12-09 23:58:30 +09:00
|
|
|
},
|
|
|
|
|
},
|
2022-01-18 22:27:10 +09:00
|
|
|
} as const;
|
2018-10-23 07:04:00 +09:00
|
|
|
|
2022-02-20 13:15:40 +09:00
|
|
|
export const paramDef = {
|
2022-02-19 14:05:32 +09:00
|
|
|
type: 'object',
|
|
|
|
|
properties: {
|
|
|
|
|
fileId: { type: 'string', format: 'misskey:id' },
|
|
|
|
|
},
|
|
|
|
|
required: ['fileId'],
|
|
|
|
|
} as const;
|
|
|
|
|
|
2022-01-03 02:12:50 +09:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 14:05:32 +09:00
|
|
|
export default define(meta, paramDef, async (ps, user) => {
|
2018-10-23 07:04:00 +09:00
|
|
|
// Fetch file
|
2022-03-26 15:34:00 +09:00
|
|
|
const file = await DriveFiles.findOneBy({
|
2019-04-07 21:50:36 +09:00
|
|
|
id: ps.fileId,
|
|
|
|
|
userId: user.id,
|
|
|
|
|
});
|
2018-10-23 07:04:00 +09:00
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
if (file == null) {
|
2019-02-22 11:46:58 +09:00
|
|
|
throw new ApiError(meta.errors.noSuchFile);
|
2018-10-23 07:04:00 +09:00
|
|
|
}
|
|
|
|
|
|
2019-04-24 14:54:06 +09:00
|
|
|
const notes = await Notes.createQueryBuilder('note')
|
|
|
|
|
.where(':file = ANY(note.fileIds)', { file: file.id })
|
|
|
|
|
.getMany();
|
|
|
|
|
|
|
|
|
|
return await Notes.packMany(notes, user, {
|
2021-12-09 23:58:30 +09:00
|
|
|
detail: true,
|
2019-04-24 14:54:06 +09:00
|
|
|
});
|
2019-02-22 11:46:58 +09:00
|
|
|
});
|