2019-02-05 03:48:08 +01:00
|
|
|
import $ from 'cafy';
|
2019-04-07 14:50:36 +02:00
|
|
|
import { ID } from '../../../../../misc/cafy-id';
|
2018-11-02 05:47:44 +01:00
|
|
|
import define from '../../../define';
|
2019-02-22 03:46:58 +01:00
|
|
|
import { ApiError } from '../../../error';
|
2019-04-24 07:54:06 +02:00
|
|
|
import { DriveFiles, Notes } from '../../../../../models';
|
2019-04-23 15:35:26 +02:00
|
|
|
import { types, bool } from '../../../../../misc/schema';
|
2018-10-23 00:04:00 +02:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
stability: 'stable',
|
|
|
|
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '指定したドライブのファイルが添付されている投稿一覧を取得します。',
|
|
|
|
'en-US': 'Get the notes that specified file of drive attached.'
|
|
|
|
},
|
|
|
|
|
2019-02-23 03:20:58 +01:00
|
|
|
tags: ['drive', 'notes'],
|
|
|
|
|
2018-10-23 00:04:00 +02:00
|
|
|
requireCredential: true,
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
kind: 'read:drive',
|
2018-10-23 00:04:00 +02:00
|
|
|
|
|
|
|
params: {
|
2018-11-01 19:32:24 +01:00
|
|
|
fileId: {
|
|
|
|
validator: $.type(ID),
|
2018-10-23 00:04:00 +02:00
|
|
|
desc: {
|
|
|
|
'ja-JP': '対象のファイルID',
|
|
|
|
'en-US': 'Target file ID'
|
|
|
|
}
|
2018-11-01 19:32:24 +01:00
|
|
|
}
|
2019-02-22 03:46:58 +01:00
|
|
|
},
|
|
|
|
|
2019-02-24 10:13:11 +01:00
|
|
|
res: {
|
2019-04-23 15:35:26 +02:00
|
|
|
type: types.array,
|
|
|
|
optional: bool.false, nullable: bool.false,
|
2019-02-24 10:13:11 +01:00
|
|
|
items: {
|
2019-04-23 15:35:26 +02:00
|
|
|
type: types.object,
|
|
|
|
optional: bool.false, nullable: bool.false,
|
|
|
|
ref: 'Note',
|
|
|
|
}
|
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',
|
|
|
|
}
|
2018-10-23 00:04:00 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
export default define(meta, async (ps, user) => {
|
2018-10-23 00:04:00 +02:00
|
|
|
// Fetch file
|
2019-04-07 14:50:36 +02:00
|
|
|
const file = await DriveFiles.findOne({
|
|
|
|
id: ps.fileId,
|
|
|
|
userId: user.id,
|
|
|
|
});
|
2018-10-23 00:04:00 +02:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
if (file == null) {
|
2019-02-22 03:46:58 +01:00
|
|
|
throw new ApiError(meta.errors.noSuchFile);
|
2018-10-23 00:04:00 +02:00
|
|
|
}
|
|
|
|
|
2019-04-24 07:54:06 +02:00
|
|
|
const notes = await Notes.createQueryBuilder('note')
|
|
|
|
.where(':file = ANY(note.fileIds)', { file: file.id })
|
|
|
|
.getMany();
|
|
|
|
|
|
|
|
return await Notes.packMany(notes, user, {
|
2018-10-23 00:04:00 +02:00
|
|
|
detail: true
|
2019-04-24 07:54:06 +02:00
|
|
|
});
|
2019-02-22 03:46:58 +01:00
|
|
|
});
|