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