mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-11 14:33:09 +02:00
fcfb5ef0a3
* wip
* ✌️
* use ajv/dist/core
* revert try
* clean up
43 lines
1,013 B
TypeScript
43 lines
1,013 B
TypeScript
import define from '../../../define';
|
|
import { Emojis } from '@/models/index';
|
|
import { getConnection } from 'typeorm';
|
|
import { insertModerationLog } from '@/services/insert-moderation-log';
|
|
import { ApiError } from '../../../error';
|
|
|
|
export const meta = {
|
|
tags: ['admin'],
|
|
|
|
requireCredential: true,
|
|
requireModerator: true,
|
|
|
|
errors: {
|
|
noSuchEmoji: {
|
|
message: 'No such emoji.',
|
|
code: 'NO_SUCH_EMOJI',
|
|
id: 'be83669b-773a-44b7-b1f8-e5e5170ac3c2',
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
id: { type: 'string', format: 'misskey:id' },
|
|
},
|
|
required: ['id'],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default define(meta, paramDef, async (ps, me) => {
|
|
const emoji = await Emojis.findOne(ps.id);
|
|
|
|
if (emoji == null) throw new ApiError(meta.errors.noSuchEmoji);
|
|
|
|
await Emojis.delete(emoji.id);
|
|
|
|
await getConnection().queryResultCache!.remove(['meta_emojis']);
|
|
|
|
insertModerationLog(me, 'deleteEmoji', {
|
|
emoji: emoji,
|
|
});
|
|
});
|