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