2018-11-04 03:18:32 +09:00
|
|
|
import $ from 'cafy';
|
2021-08-19 21:55:45 +09:00
|
|
|
import define from '../../../define';
|
|
|
|
|
import { ID } from '@/misc/cafy-id';
|
|
|
|
|
import { Emojis } from '@/models/index';
|
2019-07-05 07:45:00 +09:00
|
|
|
import { getConnection } from 'typeorm';
|
2021-08-19 21:55:45 +09:00
|
|
|
import { ApiError } from '../../../error';
|
2018-11-04 03:18:32 +09:00
|
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 11:20:58 +09:00
|
|
|
tags: ['admin'],
|
|
|
|
|
|
2020-02-15 21:33:32 +09:00
|
|
|
requireCredential: true as const,
|
2018-11-15 04:15:42 +09:00
|
|
|
requireModerator: true,
|
2018-11-04 03:18:32 +09:00
|
|
|
|
|
|
|
|
params: {
|
|
|
|
|
id: {
|
|
|
|
|
validator: $.type(ID)
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
name: {
|
|
|
|
|
validator: $.str
|
|
|
|
|
},
|
|
|
|
|
|
2019-10-21 00:43:39 +09:00
|
|
|
category: {
|
2020-04-21 20:26:54 +09:00
|
|
|
validator: $.optional.nullable.str
|
2019-10-21 00:43:39 +09:00
|
|
|
},
|
|
|
|
|
|
2018-11-04 03:18:32 +09:00
|
|
|
aliases: {
|
|
|
|
|
validator: $.arr($.str)
|
|
|
|
|
}
|
2019-10-16 04:03:18 +09:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
|
noSuchEmoji: {
|
|
|
|
|
message: 'No such emoji.',
|
|
|
|
|
code: 'NO_SUCH_EMOJI',
|
|
|
|
|
id: '684dec9d-a8c2-4364-9aa8-456c49cb1dc8'
|
|
|
|
|
}
|
2018-11-04 03:18:32 +09:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2019-02-22 11:46:58 +09:00
|
|
|
export default define(meta, async (ps) => {
|
2019-04-07 21:50:36 +09:00
|
|
|
const emoji = await Emojis.findOne(ps.id);
|
2018-11-04 03:18:32 +09:00
|
|
|
|
2019-10-16 04:03:18 +09:00
|
|
|
if (emoji == null) throw new ApiError(meta.errors.noSuchEmoji);
|
2018-11-04 03:18:32 +09:00
|
|
|
|
2019-04-07 21:50:36 +09:00
|
|
|
await Emojis.update(emoji.id, {
|
|
|
|
|
updatedAt: new Date(),
|
|
|
|
|
name: ps.name,
|
2019-10-21 00:43:39 +09:00
|
|
|
category: ps.category,
|
2019-04-07 21:50:36 +09:00
|
|
|
aliases: ps.aliases,
|
2018-11-04 03:18:32 +09:00
|
|
|
});
|
2019-07-05 07:45:00 +09:00
|
|
|
|
|
|
|
|
await getConnection().queryResultCache!.remove(['meta_emojis']);
|
2019-02-22 11:46:58 +09:00
|
|
|
});
|