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-06-15 02:53:30 +02:00
|
|
|
import del from '../../../../../services/drive/delete-file';
|
2019-02-05 06:14:23 +01:00
|
|
|
import { publishDriveStream } from '../../../../../services/stream';
|
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 { DriveFiles } from '../../../../../models';
|
2018-06-15 02:53:30 +02: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': 'Delete a 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: 'write:drive',
|
2018-10-22 23:59:52 +02:00
|
|
|
|
|
|
|
params: {
|
2018-11-01 19:32:24 +01:00
|
|
|
fileId: {
|
|
|
|
validator: $.type(ID),
|
2018-10-22 23:59:52 +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
|
|
|
},
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchFile: {
|
|
|
|
message: 'No such file.',
|
|
|
|
code: 'NO_SUCH_FILE',
|
|
|
|
id: '908939ec-e52b-4458-b395-1025195cea58'
|
|
|
|
},
|
|
|
|
|
|
|
|
accessDenied: {
|
|
|
|
message: 'Access denied.',
|
|
|
|
code: 'ACCESS_DENIED',
|
|
|
|
id: '5eb8d909-2540-4970-90b8-dd6f86088121'
|
|
|
|
},
|
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
|
|
|
const file = await DriveFiles.findOne(ps.fileId);
|
2018-06-15 02:53:30 +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-06-15 02:53:30 +02: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);
|
2018-12-14 16:09:04 +01:00
|
|
|
}
|
|
|
|
|
2018-06-15 02:53:30 +02:00
|
|
|
// Delete
|
|
|
|
await del(file);
|
|
|
|
|
2018-10-23 00:01:43 +02:00
|
|
|
// Publish fileDeleted event
|
2019-04-07 14:50:36 +02:00
|
|
|
publishDriveStream(user.id, 'fileDeleted', file.id);
|
2019-02-22 03:46:58 +01:00
|
|
|
});
|