2022-02-27 04:07:39 +02:00
|
|
|
import define from '../../../define.js';
|
|
|
|
import { Emojis } from '@/models/index.js';
|
2019-07-05 01:45:00 +03:00
|
|
|
import { getConnection } from 'typeorm';
|
2022-02-27 04:07:39 +02:00
|
|
|
import { ApiError } from '../../../error.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,
|
2018-11-14 21:15:42 +02:00
|
|
|
requireModerator: true,
|
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: '684dec9d-a8c2-4364-9aa8-456c49cb1dc8',
|
|
|
|
},
|
|
|
|
},
|
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' },
|
|
|
|
name: { type: 'string' },
|
|
|
|
category: { type: 'string', nullable: true },
|
|
|
|
aliases: { type: 'array', items: {
|
|
|
|
type: 'string',
|
|
|
|
} },
|
|
|
|
},
|
|
|
|
required: ['id', 'name', 'aliases'],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 07:05:32 +02:00
|
|
|
export default define(meta, paramDef, async (ps) => {
|
2019-04-07 15:50:36 +03:00
|
|
|
const emoji = await Emojis.findOne(ps.id);
|
2018-11-03 20:18:32 +02:00
|
|
|
|
2019-10-15 22:03:18 +03:00
|
|
|
if (emoji == null) throw new ApiError(meta.errors.noSuchEmoji);
|
2018-11-03 20:18:32 +02:00
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
await Emojis.update(emoji.id, {
|
|
|
|
updatedAt: new Date(),
|
|
|
|
name: ps.name,
|
2019-10-20 18:43:39 +03:00
|
|
|
category: ps.category,
|
2019-04-07 15:50:36 +03:00
|
|
|
aliases: ps.aliases,
|
2018-11-03 20:18:32 +02:00
|
|
|
});
|
2019-07-05 01:45:00 +03:00
|
|
|
|
|
|
|
await getConnection().queryResultCache!.remove(['meta_emojis']);
|
2019-02-22 04:46:58 +02:00
|
|
|
});
|