summaryrefslogtreecommitdiff
path: root/src/server/api/endpoints/admin/emoji/add.ts
blob: 5345876da818c99920b16ce10db831f89eb77d2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import $ from 'cafy';
import define from '../../../define';
import { detectUrlMine } from '../../../../../misc/detect-url-mine';
import { Emojis } from '../../../../../models';
import { genId } from '../../../../../misc/gen-id';
import { getConnection } from 'typeorm';
import { insertModerationLog } from '../../../../../services/insert-moderation-log';
import { ApiError } from '../../../error';

export const meta = {
	desc: {
		'ja-JP': 'カスタム絵文字を追加します。'
	},

	tags: ['admin'],

	requireCredential: true,
	requireModerator: true,

	params: {
		name: {
			validator: $.str.min(1)
		},

		url: {
			validator: $.str.min(1)
		},

		category: {
			validator: $.optional.str
		},

		aliases: {
			validator: $.optional.arr($.str.min(1)),
			default: [] as string[]
		}
	},

	errors: {
		emojiAlredyExists: {
			message: 'Emoji already exists.',
			code: 'EMOJI_ALREADY_EXISTS',
			id: 'fc46b5a4-6b92-4c33-ac66-b806659bb5cf'
		}
	}
};

export default define(meta, async (ps, me) => {
	const type = await detectUrlMine(ps.url);

	const exists = await Emojis.findOne({
		name: ps.name,
		host: null
	});

	if (exists != null) throw new ApiError(meta.errors.emojiAlredyExists);

	const emoji = await Emojis.save({
		id: genId(),
		updatedAt: new Date(),
		name: ps.name,
		category: ps.category,
		host: null,
		aliases: ps.aliases,
		url: ps.url,
		type,
	});

	await getConnection().queryResultCache!.remove(['meta_emojis']);

	insertModerationLog(me, 'addEmoji', {
		emojiId: emoji.id
	});

	return {
		id: emoji.id
	};
});