b9cb6d1c10
将来ESMに移行しやすいように Related: #7658 なんかmochaが起動しなくなってるけど理由不明 すぐ直したい
56 lines
1.3 KiB
TypeScript
56 lines
1.3 KiB
TypeScript
import $ from 'cafy';
|
|
import { ID } from '@/misc/cafy-id.js';
|
|
import deleteNote from '@/services/note/delete.js';
|
|
import define from '../../define.js';
|
|
import * as ms from 'ms';
|
|
import { getNote } from '../../common/getters.js';
|
|
import { ApiError } from '../../error.js';
|
|
import { Users } from '@/models/index.js';
|
|
|
|
export const meta = {
|
|
tags: ['notes'],
|
|
|
|
requireCredential: true as const,
|
|
|
|
kind: 'write:notes',
|
|
|
|
limit: {
|
|
duration: ms('1hour'),
|
|
max: 300,
|
|
minInterval: ms('1sec')
|
|
},
|
|
|
|
params: {
|
|
noteId: {
|
|
validator: $.type(ID),
|
|
}
|
|
},
|
|
|
|
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'
|
|
}
|
|
}
|
|
};
|
|
|
|
export default define(meta, async (ps, user) => {
|
|
const note = await getNote(ps.noteId).catch(e => {
|
|
if (e.id === '9725d0ce-ba28-4dde-95a7-2cbb2c15de24') throw new ApiError(meta.errors.noSuchNote);
|
|
throw e;
|
|
});
|
|
|
|
if (!user.isAdmin && !user.isModerator && (note.userId !== user.id)) {
|
|
throw new ApiError(meta.errors.accessDenied);
|
|
}
|
|
|
|
// この操作を行うのが投稿者とは限らない(例えばモデレーター)ため
|
|
await deleteNote(await Users.findOneOrFail(note.userId), note);
|
|
});
|