2019-03-17 10:03:57 -05:00
|
|
|
import { emojiRegex } from './emoji-regex';
|
2019-04-23 18:11:19 -05:00
|
|
|
import { fetchMeta } from './fetch-meta';
|
2019-04-07 07:50:36 -05:00
|
|
|
import { Emojis } from '../models';
|
2019-03-17 10:03:57 -05:00
|
|
|
|
2020-02-19 07:06:54 -06:00
|
|
|
const legacies: Record<string, string> = {
|
2020-01-29 13:37:25 -06:00
|
|
|
'like': '👍',
|
|
|
|
'love': '❤', // ここに記述する場合は異体字セレクタを入れない
|
|
|
|
'laugh': '😆',
|
|
|
|
'hmm': '🤔',
|
|
|
|
'surprise': '😮',
|
|
|
|
'congrats': '🎉',
|
|
|
|
'angry': '💢',
|
|
|
|
'confused': '😥',
|
|
|
|
'rip': '😇',
|
|
|
|
'pudding': '🍮',
|
2020-02-19 07:06:54 -06:00
|
|
|
'star': '⭐',
|
2019-03-17 10:03:57 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
export async function getFallbackReaction(): Promise<string> {
|
2019-03-17 11:03:35 -05:00
|
|
|
const meta = await fetchMeta();
|
2020-01-29 13:37:25 -06:00
|
|
|
return meta.useStarForReactionFallback ? '⭐' : '👍';
|
2019-03-17 10:03:57 -05:00
|
|
|
}
|
|
|
|
|
2020-02-18 15:36:50 -06:00
|
|
|
export function convertLegacyReactions(reactions: Record<string, number>) {
|
|
|
|
const _reactions = {} as Record<string, number>;
|
|
|
|
|
|
|
|
for (const reaction of Object.keys(reactions)) {
|
2020-02-19 07:06:54 -06:00
|
|
|
if (Object.keys(legacies).includes(reaction)) {
|
|
|
|
if (_reactions[legacies[reaction]]) {
|
|
|
|
_reactions[legacies[reaction]] += reactions[reaction];
|
2020-02-18 15:36:50 -06:00
|
|
|
} else {
|
2020-02-19 07:06:54 -06:00
|
|
|
_reactions[legacies[reaction]] = reactions[reaction];
|
2020-02-18 15:36:50 -06:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (_reactions[reaction]) {
|
|
|
|
_reactions[reaction] += reactions[reaction];
|
|
|
|
} else {
|
|
|
|
_reactions[reaction] = reactions[reaction];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return _reactions;
|
|
|
|
}
|
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
export async function toDbReaction(reaction?: string | null): Promise<string> {
|
2019-03-17 10:03:57 -05:00
|
|
|
if (reaction == null) return await getFallbackReaction();
|
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
// 文字列タイプのリアクションを絵文字に変換
|
2020-02-19 07:06:54 -06:00
|
|
|
if (Object.keys(legacies).includes(reaction)) return legacies[reaction];
|
2019-03-17 10:03:57 -05:00
|
|
|
|
|
|
|
// Unicode絵文字
|
|
|
|
const match = emojiRegex.exec(reaction);
|
|
|
|
if (match) {
|
|
|
|
// 合字を含む1つの絵文字
|
|
|
|
const unicode = match[0];
|
|
|
|
|
2020-01-29 13:37:25 -06:00
|
|
|
// 異体字セレクタ除去
|
|
|
|
return unicode.match('\u200d') ? unicode : unicode.replace(/\ufe0f/g, '');
|
2019-03-17 10:03:57 -05:00
|
|
|
}
|
|
|
|
|
2019-03-18 06:02:25 -05:00
|
|
|
const custom = reaction.match(/^:([\w+-]+):$/);
|
2019-03-17 10:03:57 -05:00
|
|
|
if (custom) {
|
2019-04-07 07:50:36 -05:00
|
|
|
const emoji = await Emojis.findOne({
|
2019-03-17 10:03:57 -05:00
|
|
|
host: null,
|
|
|
|
name: custom[1],
|
|
|
|
});
|
|
|
|
|
|
|
|
if (emoji) return reaction;
|
|
|
|
}
|
|
|
|
|
|
|
|
return await getFallbackReaction();
|
|
|
|
}
|
2020-01-29 13:37:25 -06:00
|
|
|
|
|
|
|
export function convertLegacyReaction(reaction: string): string {
|
2020-02-19 07:06:54 -06:00
|
|
|
if (Object.keys(legacies).includes(reaction)) return legacies[reaction];
|
2020-01-29 13:37:25 -06:00
|
|
|
return reaction;
|
|
|
|
}
|