2018-11-02 08:04:02 +02:00
|
|
|
import $ from 'cafy';
|
2021-08-19 12:33:41 +03:00
|
|
|
import define from '../../../define.js';
|
|
|
|
import { Emojis, DriveFiles } from '@/models/index.js';
|
|
|
|
import { genId } from '@/misc/gen-id.js';
|
2019-07-05 01:45:00 +03:00
|
|
|
import { getConnection } from 'typeorm';
|
2021-08-19 12:33:41 +03:00
|
|
|
import { insertModerationLog } from '@/services/insert-moderation-log.js';
|
|
|
|
import { ApiError } from '../../../error.js';
|
|
|
|
import { ID } from '@/misc/cafy-id.js';
|
2020-02-13 18:09:39 +02:00
|
|
|
import rndstr from 'rndstr';
|
2021-08-19 12:33:41 +03:00
|
|
|
import { publishBroadcastStream } from '@/services/stream.js';
|
2018-11-02 08:04:02 +02:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 04:20:58 +02:00
|
|
|
tags: ['admin'],
|
|
|
|
|
2020-02-15 14:33:32 +02:00
|
|
|
requireCredential: true as const,
|
2018-11-14 21:15:42 +02:00
|
|
|
requireModerator: true,
|
2018-11-02 08:04:02 +02:00
|
|
|
|
|
|
|
params: {
|
2020-02-13 18:09:39 +02:00
|
|
|
fileId: {
|
|
|
|
validator: $.type(ID)
|
2018-11-02 08:04:02 +02:00
|
|
|
},
|
2019-10-15 22:03:18 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
errors: {
|
2020-02-13 18:09:39 +02:00
|
|
|
noSuchFile: {
|
|
|
|
message: 'No such file.',
|
|
|
|
code: 'MO_SUCH_FILE',
|
2019-10-15 22:03:18 +03:00
|
|
|
id: 'fc46b5a4-6b92-4c33-ac66-b806659bb5cf'
|
|
|
|
}
|
2018-11-02 08:04:02 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-07-13 21:18:45 +03:00
|
|
|
export default define(meta, async (ps, me) => {
|
2020-02-13 18:09:39 +02:00
|
|
|
const file = await DriveFiles.findOne(ps.fileId);
|
2019-03-20 21:50:44 +02:00
|
|
|
|
2020-02-13 18:09:39 +02:00
|
|
|
if (file == null) throw new ApiError(meta.errors.noSuchFile);
|
2019-10-15 22:03:18 +03:00
|
|
|
|
2020-02-13 18:09:39 +02:00
|
|
|
const name = file.name.split('.')[0].match(/^[a-z0-9_]+$/) ? file.name.split('.')[0] : `_${rndstr('a-z0-9', 8)}_`;
|
2019-10-15 22:03:18 +03:00
|
|
|
|
2019-04-07 15:50:36 +03:00
|
|
|
const emoji = await Emojis.save({
|
|
|
|
id: genId(),
|
2018-11-04 03:42:16 +02:00
|
|
|
updatedAt: new Date(),
|
2020-02-13 18:09:39 +02:00
|
|
|
name: name,
|
|
|
|
category: null,
|
2018-11-02 08:04:02 +02:00
|
|
|
host: null,
|
2020-02-13 18:09:39 +02:00
|
|
|
aliases: [],
|
|
|
|
url: file.url,
|
|
|
|
type: file.type,
|
2018-11-02 08:04:02 +02:00
|
|
|
});
|
|
|
|
|
2019-07-05 01:45:00 +03:00
|
|
|
await getConnection().queryResultCache!.remove(['meta_emojis']);
|
|
|
|
|
2020-04-02 16:17:17 +03:00
|
|
|
publishBroadcastStream('emojiAdded', {
|
|
|
|
emoji: await Emojis.pack(emoji.id)
|
|
|
|
});
|
|
|
|
|
2019-07-13 21:18:45 +03:00
|
|
|
insertModerationLog(me, 'addEmoji', {
|
|
|
|
emojiId: emoji.id
|
|
|
|
});
|
|
|
|
|
2019-02-22 04:46:58 +02:00
|
|
|
return {
|
2019-04-07 15:50:36 +03:00
|
|
|
id: emoji.id
|
2019-02-22 04:46:58 +02:00
|
|
|
};
|
|
|
|
});
|