2022-09-17 21:27:08 +03:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { DataSource } from 'typeorm';
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
2022-09-20 23:33:11 +03:00
|
|
|
import type { EmojisRepository } from '@/models/index.js';
|
2022-09-17 21:27:08 +03:00
|
|
|
import { DI } from '@/di-symbols.js';
|
|
|
|
import { ModerationLogService } from '@/core/ModerationLogService.js';
|
2022-02-27 04:07:39 +02:00
|
|
|
import { ApiError } from '../../../error.js';
|
2023-01-22 16:53:24 +02:00
|
|
|
import { EmojiEntityService } from '@/core/entities/EmojiEntityService.js';
|
|
|
|
import { GlobalEventService } from '@/core/GlobalEventService.js';
|
2018-11-03 20:18:32 +02:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 04:20:58 +02:00
|
|
|
tags: ['admin'],
|
|
|
|
|
2022-01-18 15:27:10 +02:00
|
|
|
requireCredential: true,
|
2023-01-15 13:52:53 +02:00
|
|
|
requireRolePolicy: 'canManageCustomEmojis',
|
2018-11-03 20:18:32 +02:00
|
|
|
|
2019-10-15 22:03:18 +03:00
|
|
|
errors: {
|
|
|
|
noSuchEmoji: {
|
|
|
|
message: 'No such emoji.',
|
|
|
|
code: 'NO_SUCH_EMOJI',
|
2021-12-09 16:58:30 +02:00
|
|
|
id: 'be83669b-773a-44b7-b1f8-e5e5170ac3c2',
|
|
|
|
},
|
|
|
|
},
|
2022-01-18 15:27:10 +02:00
|
|
|
} as const;
|
2018-11-03 20:18:32 +02:00
|
|
|
|
2022-02-20 06:15:40 +02:00
|
|
|
export const paramDef = {
|
2022-02-19 07:05:32 +02:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
id: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
|
|
|
required: ['id'],
|
|
|
|
} as const;
|
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
// TODO: ロジックをサービスに切り出す
|
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-17 21:27:08 +03:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.db)
|
|
|
|
private db: DataSource,
|
|
|
|
|
|
|
|
@Inject(DI.emojisRepository)
|
|
|
|
private emojisRepository: EmojisRepository,
|
|
|
|
|
|
|
|
private moderationLogService: ModerationLogService,
|
2023-01-22 16:53:24 +02:00
|
|
|
private emojiEntityService: EmojiEntityService,
|
|
|
|
private globalEventService: GlobalEventService,
|
2022-09-17 21:27:08 +03:00
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
const emoji = await this.emojisRepository.findOneBy({ id: ps.id });
|
2018-11-03 20:18:32 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
if (emoji == null) throw new ApiError(meta.errors.noSuchEmoji);
|
2018-11-03 20:18:32 +02:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
await this.emojisRepository.delete(emoji.id);
|
2019-07-05 01:45:00 +03:00
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
await this.db.queryResultCache!.remove(['meta_emojis']);
|
2019-07-13 21:18:45 +03:00
|
|
|
|
2023-01-22 16:53:24 +02:00
|
|
|
this.globalEventService.publishBroadcastStream('emojiDeleted', {
|
|
|
|
emojis: [ await this.emojiEntityService.pack(emoji) ],
|
|
|
|
});
|
|
|
|
|
2022-09-17 21:27:08 +03:00
|
|
|
this.moderationLogService.insertModerationLog(me, 'deleteEmoji', {
|
|
|
|
emoji: emoji,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|