2019-02-05 11:48:08 +09:00
|
|
|
import $ from 'cafy';
|
2021-03-23 17:43:07 +09:00
|
|
|
import { ID } from '@/misc/cafy-id';
|
2018-05-28 14:39:46 +09:00
|
|
|
import deleteNote from '../../../../services/note/delete';
|
2018-11-02 13:47:44 +09:00
|
|
|
import define from '../../define';
|
2019-02-02 00:16:27 +09:00
|
|
|
import * as ms from 'ms';
|
2019-02-22 14:02:56 +09:00
|
|
|
import { getNote } from '../../common/getters';
|
2019-02-22 11:46:58 +09:00
|
|
|
import { ApiError } from '../../error';
|
2019-04-07 21:50:36 +09:00
|
|
|
import { Users } from '../../../../models';
|
2018-05-28 14:39:46 +09:00
|
|
|
|
2018-07-17 04:36:44 +09:00
|
|
|
export const meta = {
|
2019-02-23 11:20:58 +09:00
|
|
|
tags: ['notes'],
|
|
|
|
|
2020-02-15 21:33:32 +09:00
|
|
|
requireCredential: true as const,
|
2018-07-17 04:36:44 +09:00
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
kind: 'write:notes',
|
2018-10-22 05:16:27 +09:00
|
|
|
|
2018-12-17 01:43:34 +09:00
|
|
|
limit: {
|
|
|
|
duration: ms('1hour'),
|
|
|
|
max: 300,
|
|
|
|
minInterval: ms('1sec')
|
|
|
|
},
|
|
|
|
|
2018-10-22 05:16:27 +09:00
|
|
|
params: {
|
2018-11-02 03:32:24 +09:00
|
|
|
noteId: {
|
|
|
|
validator: $.type(ID),
|
|
|
|
}
|
2019-02-22 11:46:58 +09:00
|
|
|
},
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchNote: {
|
|
|
|
message: 'No such note.',
|
|
|
|
code: 'NO_SUCH_NOTE',
|
|
|
|
id: '490be23f-8c1f-4796-819f-94cb4f9d1630'
|
|
|
|
},
|
|
|
|
|
|
|
|
accessDenied: {
|
|
|
|
message: 'Access denied.',
|
|
|
|
code: 'ACCESS_DENIED',
|
|
|
|
id: 'fe8d7103-0ea8-4ec3-814d-f8b401dc69e9'
|
|
|
|
}
|
2018-10-22 05:16:27 +09:00
|
|
|
}
|
2018-07-17 04:36:44 +09:00
|
|
|
};
|
|
|
|
|
2019-02-22 11:46:58 +09:00
|
|
|
export default define(meta, async (ps, user) => {
|
2019-02-22 14:02:56 +09:00
|
|
|
const note = await getNote(ps.noteId).catch(e => {
|
2019-02-22 11:46:58 +09:00
|
|
|
if (e.id === '9725d0ce-ba28-4dde-95a7-2cbb2c15de24') throw new ApiError(meta.errors.noSuchNote);
|
|
|
|
throw e;
|
2018-05-28 14:39:46 +09:00
|
|
|
});
|
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
if (!user.isAdmin && !user.isModerator && (note.userId !== user.id)) {
|
2019-02-22 11:46:58 +09:00
|
|
|
throw new ApiError(meta.errors.accessDenied);
|
2018-09-19 17:29:03 +09:00
|
|
|
}
|
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
// この操作を行うのが投稿者とは限らない(例えばモデレーター)ため
|
2021-02-13 15:33:38 +09:00
|
|
|
await deleteNote(await Users.findOneOrFail(note.userId), note);
|
2019-02-22 11:46:58 +09:00
|
|
|
});
|