mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-28 23:33:08 +02:00
8ae9d2eaa8
Resolve #10091
90 lines
2.4 KiB
TypeScript
90 lines
2.4 KiB
TypeScript
import { Inject, Injectable } from '@nestjs/common';
|
|
import { DataSource } from 'typeorm';
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
import type { EmojisRepository } from '@/models/index.js';
|
|
import { DI } from '@/di-symbols.js';
|
|
import { EmojiEntityService } from '@/core/entities/EmojiEntityService.js';
|
|
import { GlobalEventService } from '@/core/GlobalEventService.js';
|
|
import { ApiError } from '../../../error.js';
|
|
|
|
export const meta = {
|
|
tags: ['admin'],
|
|
|
|
requireCredential: true,
|
|
requireRolePolicy: 'canManageCustomEmojis',
|
|
|
|
errors: {
|
|
noSuchEmoji: {
|
|
message: 'No such emoji.',
|
|
code: 'NO_SUCH_EMOJI',
|
|
id: '684dec9d-a8c2-4364-9aa8-456c49cb1dc8',
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
id: { type: 'string', format: 'misskey:id' },
|
|
name: { type: 'string' },
|
|
category: {
|
|
type: 'string',
|
|
nullable: true,
|
|
description: 'Use `null` to reset the category.',
|
|
},
|
|
aliases: { type: 'array', items: {
|
|
type: 'string',
|
|
} },
|
|
license: { type: 'string', nullable: true },
|
|
},
|
|
required: ['id', 'name', 'aliases'],
|
|
} as const;
|
|
|
|
// TODO: ロジックをサービスに切り出す
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
@Injectable()
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
constructor(
|
|
@Inject(DI.db)
|
|
private db: DataSource,
|
|
|
|
@Inject(DI.emojisRepository)
|
|
private emojisRepository: EmojisRepository,
|
|
|
|
private emojiEntityService: EmojiEntityService,
|
|
private globalEventService: GlobalEventService,
|
|
) {
|
|
super(meta, paramDef, async (ps, me) => {
|
|
const emoji = await this.emojisRepository.findOneBy({ id: ps.id });
|
|
|
|
if (emoji == null) throw new ApiError(meta.errors.noSuchEmoji);
|
|
|
|
await this.emojisRepository.update(emoji.id, {
|
|
updatedAt: new Date(),
|
|
name: ps.name,
|
|
category: ps.category,
|
|
aliases: ps.aliases,
|
|
license: ps.license,
|
|
});
|
|
|
|
await this.db.queryResultCache?.remove(['meta_emojis']);
|
|
|
|
const updated = await this.emojiEntityService.packDetailed(emoji.id);
|
|
|
|
if (emoji.name === ps.name) {
|
|
this.globalEventService.publishBroadcastStream('emojiUpdated', {
|
|
emojis: [updated],
|
|
});
|
|
} else {
|
|
this.globalEventService.publishBroadcastStream('emojiDeleted', {
|
|
emojis: [await this.emojiEntityService.packDetailed(emoji)],
|
|
});
|
|
|
|
this.globalEventService.publishBroadcastStream('emojiAdded', {
|
|
emoji: updated,
|
|
});
|
|
}
|
|
});
|
|
}
|
|
}
|