#include "providers/twitch/TwitchEmotes.hpp" #include "common/NetworkRequest.hpp" #include "debug/Benchmark.hpp" #include "debug/Log.hpp" #include "messages/Emote.hpp" #include "messages/Image.hpp" #include "util/RapidjsonHelpers.hpp" namespace chatterino { TwitchEmotes::TwitchEmotes() { } QString TwitchEmotes::cleanUpEmoteCode(const EmoteName &dirtyEmoteCode) { auto cleanCode = dirtyEmoteCode.string; cleanCode.detach(); static QMap emoteNameReplacements{ {"[oO](_|\\.)[oO]", "O_o"}, {"\\>\\;\\(", ">("}, {"\\<\\;3", "<3"}, {"\\:-?(o|O)", ":O"}, {"\\:-?(p|P)", ":P"}, {"\\:-?[\\\\/]", ":/"}, {"\\:-?[z|Z|\\|]", ":Z"}, {"\\:-?\\(", ":("}, {"\\:-?\\)", ":)"}, {"\\:-?D", ":D"}, {"\\;-?(p|P)", ";P"}, {"\\;-?\\)", ";)"}, {"R-?\\)", "R)"}, {"B-?\\)", "B)"}, }; auto it = emoteNameReplacements.find(dirtyEmoteCode.string); if (it != emoteNameReplacements.end()) { cleanCode = it.value(); } cleanCode.replace("<", "<"); cleanCode.replace(">", ">"); return cleanCode; } // id is used for lookup // emoteName is used for giving a name to the emote in case it doesn't exist EmotePtr TwitchEmotes::getOrCreateEmote(const EmoteId &id, const EmoteName &name_) { static const QMap replacements{ {"[oO](_|\\.)[oO]", "O_o"}, {"\\>\\;\\(", ">("}, {"\\<\\;3", "<3"}, {"\\:-?(o|O)", ":O"}, {"\\:-?(p|P)", ":P"}, {"\\:-?[\\\\/]", ":/"}, {"\\:-?[z|Z|\\|]", ":Z"}, {"\\:-?\\(", ":("}, {"\\:-?\\)", ":)"}, {"\\:-?D", ":D"}, {"\\;-?(p|P)", ";P"}, {"\\;-?\\)", ";)"}, {"R-?\\)", "R)"}, {"B-?\\)", "B)"}, }; auto name = name_.string; name.detach(); // replace < > name.replace("<", "<"); name.replace(">", ">"); // replace regexes auto it = replacements.find(name); if (it != replacements.end()) { name = it.value(); } // search in cache or create new emote auto cache = this->twitchEmotesCache_.access(); auto shared = (*cache)[id].lock(); if (!shared) { (*cache)[id] = shared = std::make_shared( Emote{EmoteName{name}, ImageSet{ Image::fromUrl(getEmoteLink(id, "1.0"), 1), Image::fromUrl(getEmoteLink(id, "2.0"), 0.5), Image::fromUrl(getEmoteLink(id, "3.0"), 0.25), }, Tooltip{name + "
Twitch Emote"}, Url{}}); } return shared; } Url TwitchEmotes::getEmoteLink(const EmoteId &id, const QString &emoteScale) { return {QString(TWITCH_EMOTE_TEMPLATE) .replace("{id}", id.string) .replace("{scale}", emoteScale)}; } } // namespace chatterino