2021-08-19 21:55:45 +09:00
|
|
|
import deleteNote from '@/services/note/delete';
|
|
|
|
import define from '../../define';
|
2021-11-12 19:47:04 +09:00
|
|
|
import ms from 'ms';
|
2021-08-19 21:55:45 +09:00
|
|
|
import { getNote } from '../../common/getters';
|
|
|
|
import { ApiError } from '../../error';
|
|
|
|
import { Users } from '@/models/index';
|
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'],
|
|
|
|
|
2022-01-18 22:27:10 +09:00
|
|
|
requireCredential: true,
|
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,
|
2021-12-09 23:58:30 +09:00
|
|
|
minInterval: ms('1sec'),
|
2018-12-17 01:43:34 +09:00
|
|
|
},
|
|
|
|
|
2019-02-22 11:46:58 +09:00
|
|
|
errors: {
|
|
|
|
noSuchNote: {
|
|
|
|
message: 'No such note.',
|
|
|
|
code: 'NO_SUCH_NOTE',
|
2021-12-09 23:58:30 +09:00
|
|
|
id: '490be23f-8c1f-4796-819f-94cb4f9d1630',
|
2019-02-22 11:46:58 +09:00
|
|
|
},
|
|
|
|
|
|
|
|
accessDenied: {
|
|
|
|
message: 'Access denied.',
|
|
|
|
code: 'ACCESS_DENIED',
|
2021-12-09 23:58:30 +09:00
|
|
|
id: 'fe8d7103-0ea8-4ec3-814d-f8b401dc69e9',
|
|
|
|
},
|
|
|
|
},
|
2022-01-18 22:27:10 +09:00
|
|
|
} as const;
|
2018-07-17 04:36:44 +09:00
|
|
|
|
2022-02-20 13:15:40 +09:00
|
|
|
export const paramDef = {
|
2022-02-19 14:05:32 +09:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
noteId: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
|
|
|
required: ['noteId'],
|
|
|
|
} 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) => {
|
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
|
|
|
});
|