2019-01-19 01:50:38 +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-07 14:50:36 +02:00
|
|
|
import { DriveFile } from '../../../../../models/entities/drive-file';
|
|
|
|
import { DriveFiles } from '../../../../../models';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-07-16 21:36:44 +02:00
|
|
|
export const meta = {
|
2018-10-22 23:59:52 +02:00
|
|
|
stability: 'stable',
|
|
|
|
|
2018-07-16 21:36:44 +02:00
|
|
|
desc: {
|
2018-08-28 23:59:43 +02:00
|
|
|
'ja-JP': '指定したドライブのファイルの情報を取得します。',
|
|
|
|
'en-US': 'Get specified file of drive.'
|
2018-07-16 21:36:44 +02:00
|
|
|
},
|
|
|
|
|
2019-02-23 03:20:58 +01:00
|
|
|
tags: ['drive'],
|
|
|
|
|
2018-07-16 21:36:44 +02:00
|
|
|
requireCredential: true,
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
kind: 'read:drive',
|
2018-10-22 23:59:52 +02:00
|
|
|
|
|
|
|
params: {
|
2018-11-01 19:32:24 +01:00
|
|
|
fileId: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.type(ID),
|
2018-10-22 23:59:52 +02:00
|
|
|
desc: {
|
|
|
|
'ja-JP': '対象のファイルID',
|
|
|
|
'en-US': 'Target file ID'
|
|
|
|
}
|
2019-01-19 01:50:38 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
url: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.str,
|
2019-01-19 01:50:38 +01:00
|
|
|
desc: {
|
|
|
|
'ja-JP': '対象のファイルのURL',
|
|
|
|
'en-US': 'Target file URL'
|
|
|
|
}
|
2018-11-01 19:32:24 +01:00
|
|
|
}
|
2019-02-22 03:46:58 +01:00
|
|
|
},
|
|
|
|
|
2019-02-23 03:20:58 +01:00
|
|
|
res: {
|
|
|
|
type: 'DriveFile',
|
|
|
|
},
|
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
errors: {
|
|
|
|
noSuchFile: {
|
|
|
|
message: 'No such file.',
|
|
|
|
code: 'NO_SUCH_FILE',
|
|
|
|
id: '067bc436-2718-4795-b0fb-ecbe43949e31'
|
|
|
|
},
|
|
|
|
|
|
|
|
accessDenied: {
|
|
|
|
message: 'Access denied.',
|
|
|
|
code: 'ACCESS_DENIED',
|
|
|
|
id: '25b73c73-68b1-41d0-bad1-381cfdf6579f'
|
|
|
|
},
|
|
|
|
|
|
|
|
fileIdOrUrlRequired: {
|
|
|
|
message: 'fileId or url required.',
|
|
|
|
code: 'INVALID_PARAM',
|
|
|
|
id: '89674805-722c-440c-8d88-5641830dc3e4'
|
|
|
|
}
|
2018-10-22 23:59:52 +02:00
|
|
|
}
|
2018-07-16 21:36:44 +02:00
|
|
|
};
|
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
export default define(meta, async (ps, user) => {
|
2019-04-07 14:50:36 +02:00
|
|
|
let file: DriveFile;
|
2019-01-19 01:50:38 +01:00
|
|
|
|
|
|
|
if (ps.fileId) {
|
2019-04-07 14:50:36 +02:00
|
|
|
file = await DriveFiles.findOne(ps.fileId);
|
2019-01-19 01:50:38 +01:00
|
|
|
} else if (ps.url) {
|
2019-04-07 14:50:36 +02:00
|
|
|
file = await DriveFiles.findOne({
|
|
|
|
where: [{
|
|
|
|
url: ps.url
|
|
|
|
}, {
|
|
|
|
webpublicUrl: ps.url
|
|
|
|
}, {
|
|
|
|
thumbnailUrl: ps.url
|
|
|
|
}],
|
|
|
|
});
|
2019-01-19 01:50:38 +01:00
|
|
|
} else {
|
2019-02-22 03:46:58 +01:00
|
|
|
throw new ApiError(meta.errors.fileIdOrUrlRequired);
|
2019-01-19 01:50:38 +01:00
|
|
|
}
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
if (!user.isAdmin && !user.isModerator && (file.userId !== user.id)) {
|
2019-02-22 03:46:58 +01:00
|
|
|
throw new ApiError(meta.errors.accessDenied);
|
2019-01-19 01:50:38 +01:00
|
|
|
}
|
2016-12-28 23:49:51 +01: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);
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
return await DriveFiles.pack(file, {
|
2018-11-25 20:25:48 +01:00
|
|
|
detail: true,
|
|
|
|
self: true
|
2017-11-06 08:09:51 +01:00
|
|
|
});
|
2019-02-22 03:46:58 +01:00
|
|
|
});
|