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