2017-06-11 09:31:45 +02:00
|
|
|
#include "emotemanager.hpp"
|
2017-07-23 14:16:13 +02:00
|
|
|
#include "common.hpp"
|
2017-06-13 21:13:58 +02:00
|
|
|
#include "util/urlfetch.hpp"
|
|
|
|
#include "windowmanager.hpp"
|
2017-01-04 15:12:31 +01:00
|
|
|
|
2017-01-26 10:18:02 +01:00
|
|
|
#include <QDebug>
|
2017-01-26 17:26:20 +01:00
|
|
|
#include <QJsonArray>
|
|
|
|
#include <QJsonDocument>
|
|
|
|
#include <QJsonObject>
|
|
|
|
#include <QJsonValue>
|
|
|
|
#include <QNetworkAccessManager>
|
|
|
|
#include <QNetworkReply>
|
|
|
|
#include <QNetworkRequest>
|
2017-06-07 10:09:24 +02:00
|
|
|
|
2017-01-26 17:26:20 +01:00
|
|
|
#include <memory>
|
2017-01-26 10:18:02 +01:00
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
#define TWITCH_EMOTE_TEMPLATE "https://static-cdn.jtvnw.net/emoticons/v1/{id}/{scale}.0"
|
|
|
|
|
2017-04-14 17:52:22 +02:00
|
|
|
using namespace chatterino::messages;
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2017-04-14 17:52:22 +02:00
|
|
|
namespace chatterino {
|
2017-01-18 21:30:23 +01:00
|
|
|
|
2017-10-11 10:34:04 +02:00
|
|
|
EmoteManager *EmoteManager::instance = nullptr;
|
|
|
|
|
2017-08-12 15:58:46 +02:00
|
|
|
EmoteManager::EmoteManager(WindowManager &_windowManager)
|
2017-06-13 21:13:58 +02:00
|
|
|
: windowManager(_windowManager)
|
2017-07-31 22:15:02 +02:00
|
|
|
, findShortCodesRegex(":([-+\\w]+):")
|
2017-06-13 21:13:58 +02:00
|
|
|
{
|
2017-10-11 10:34:04 +02:00
|
|
|
this->instance = this;
|
|
|
|
|
2017-07-23 14:16:13 +02:00
|
|
|
pajlada::Settings::Setting<std::string> roomID(
|
|
|
|
"/accounts/current/roomID", "", pajlada::Settings::SettingOption::DoNotWriteToJSON);
|
|
|
|
|
|
|
|
roomID.getValueChangedSignal().connect([this](const std::string &roomID) {
|
|
|
|
this->refreshTwitchEmotes(roomID); //
|
|
|
|
});
|
2017-06-13 21:13:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void EmoteManager::loadGlobalEmotes()
|
|
|
|
{
|
2017-06-26 16:41:20 +02:00
|
|
|
this->loadEmojis();
|
2017-06-13 21:13:58 +02:00
|
|
|
this->loadBTTVEmotes();
|
|
|
|
this->loadFFZEmotes();
|
|
|
|
}
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2017-09-16 00:05:06 +02:00
|
|
|
void EmoteManager::reloadBTTVChannelEmotes(const QString &channelName, std::weak_ptr<EmoteMap> _map)
|
2017-04-12 17:46:44 +02:00
|
|
|
{
|
2017-06-13 21:13:58 +02:00
|
|
|
printf("[EmoteManager] Reload BTTV Channel Emotes for channel %s\n", qPrintable(channelName));
|
|
|
|
|
|
|
|
QString url("https://api.betterttv.net/2/channels/" + channelName);
|
2017-09-16 00:05:06 +02:00
|
|
|
util::urlFetchJSON(url, [this, channelName, _map](QJsonObject &rootNode) {
|
|
|
|
auto map = _map.lock();
|
2017-07-09 17:58:59 +02:00
|
|
|
|
2017-09-16 00:05:06 +02:00
|
|
|
if (_map.expired()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
map->clear();
|
2017-06-13 21:13:58 +02:00
|
|
|
|
|
|
|
auto emotesNode = rootNode.value("emotes").toArray();
|
|
|
|
|
|
|
|
QString linkTemplate = "https:" + rootNode.value("urlTemplate").toString();
|
|
|
|
|
2017-07-23 14:16:13 +02:00
|
|
|
std::vector<std::string> codes;
|
2017-06-13 21:13:58 +02:00
|
|
|
for (const QJsonValue &emoteNode : emotesNode) {
|
|
|
|
QJsonObject emoteObject = emoteNode.toObject();
|
|
|
|
|
|
|
|
QString id = emoteObject.value("id").toString();
|
|
|
|
QString code = emoteObject.value("code").toString();
|
|
|
|
// emoteObject.value("imageType").toString();
|
|
|
|
|
|
|
|
QString link = linkTemplate;
|
|
|
|
link.detach();
|
|
|
|
|
|
|
|
link = link.replace("{{id}}", id).replace("{{image}}", "1x");
|
|
|
|
|
|
|
|
auto emote = this->getBTTVChannelEmoteFromCaches().getOrAdd(id, [this, &code, &link] {
|
2017-07-09 17:58:59 +02:00
|
|
|
return EmoteData(new LazyLoadedImage(*this, this->windowManager, link, 1, code,
|
|
|
|
code + "\nChannel BTTV Emote"));
|
2017-06-13 21:13:58 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
this->bttvChannelEmotes.insert(code, emote);
|
2017-09-16 00:05:06 +02:00
|
|
|
map->insert(code, emote);
|
2017-07-23 14:16:13 +02:00
|
|
|
codes.push_back(code.toStdString());
|
2017-06-13 21:13:58 +02:00
|
|
|
}
|
2017-07-23 14:16:13 +02:00
|
|
|
|
|
|
|
this->bttvChannelEmoteCodes[channelName.toStdString()] = codes;
|
2017-06-13 21:13:58 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-09-16 00:05:06 +02:00
|
|
|
void EmoteManager::reloadFFZChannelEmotes(const QString &channelName, std::weak_ptr<EmoteMap> _map)
|
2017-06-13 21:13:58 +02:00
|
|
|
{
|
|
|
|
printf("[EmoteManager] Reload FFZ Channel Emotes for channel %s\n", qPrintable(channelName));
|
|
|
|
|
|
|
|
QString url("http://api.frankerfacez.com/v1/room/" + channelName);
|
|
|
|
|
2017-09-16 00:05:06 +02:00
|
|
|
util::urlFetchJSON(url, [this, channelName, _map](QJsonObject &rootNode) {
|
|
|
|
auto map = _map.lock();
|
|
|
|
|
|
|
|
if (_map.expired()) {
|
|
|
|
return;
|
|
|
|
}
|
2017-07-09 17:58:59 +02:00
|
|
|
|
2017-09-16 00:05:06 +02:00
|
|
|
map->clear();
|
2017-06-13 21:13:58 +02:00
|
|
|
|
|
|
|
auto setsNode = rootNode.value("sets").toObject();
|
|
|
|
|
2017-07-23 14:16:13 +02:00
|
|
|
std::vector<std::string> codes;
|
2017-06-13 21:13:58 +02:00
|
|
|
for (const QJsonValue &setNode : setsNode) {
|
|
|
|
auto emotesNode = setNode.toObject().value("emoticons").toArray();
|
|
|
|
|
|
|
|
for (const QJsonValue &emoteNode : emotesNode) {
|
|
|
|
QJsonObject emoteObject = emoteNode.toObject();
|
|
|
|
|
|
|
|
// margins
|
|
|
|
int id = emoteObject.value("id").toInt();
|
|
|
|
QString code = emoteObject.value("name").toString();
|
|
|
|
|
|
|
|
QJsonObject urls = emoteObject.value("urls").toObject();
|
|
|
|
QString url1 = "http:" + urls.value("1").toString();
|
|
|
|
|
|
|
|
auto emote =
|
|
|
|
this->getFFZChannelEmoteFromCaches().getOrAdd(id, [this, &code, &url1] {
|
2017-07-09 17:58:59 +02:00
|
|
|
return EmoteData(new LazyLoadedImage(*this, this->windowManager, url1, 1,
|
|
|
|
code, code + "\nGlobal FFZ Emote"));
|
2017-06-13 21:13:58 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
this->ffzChannelEmotes.insert(code, emote);
|
2017-09-16 00:05:06 +02:00
|
|
|
map->insert(code, emote);
|
2017-07-23 14:16:13 +02:00
|
|
|
codes.push_back(code.toStdString());
|
2017-06-13 21:13:58 +02:00
|
|
|
}
|
2017-07-23 14:16:13 +02:00
|
|
|
|
|
|
|
this->ffzChannelEmoteCodes[channelName.toStdString()] = codes;
|
2017-06-13 21:13:58 +02:00
|
|
|
}
|
|
|
|
});
|
2017-04-12 17:46:44 +02:00
|
|
|
}
|
2017-01-04 15:12:31 +01:00
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
ConcurrentMap<QString, twitch::EmoteValue *> &EmoteManager::getTwitchEmotes()
|
|
|
|
{
|
|
|
|
return _twitchEmotes;
|
|
|
|
}
|
2017-01-05 20:49:33 +01:00
|
|
|
|
2017-09-16 00:05:06 +02:00
|
|
|
EmoteMap &EmoteManager::getFFZEmotes()
|
2017-04-12 17:46:44 +02:00
|
|
|
{
|
2017-07-23 09:53:50 +02:00
|
|
|
return ffzGlobalEmotes;
|
2017-04-12 17:46:44 +02:00
|
|
|
}
|
2017-01-15 16:38:30 +01:00
|
|
|
|
2017-09-16 00:05:06 +02:00
|
|
|
EmoteMap &EmoteManager::getChatterinoEmotes()
|
2017-01-05 16:07:20 +01:00
|
|
|
{
|
2017-04-12 17:46:44 +02:00
|
|
|
return _chatterinoEmotes;
|
2017-01-05 16:07:20 +01:00
|
|
|
}
|
2017-01-04 15:12:31 +01:00
|
|
|
|
2017-09-16 00:05:06 +02:00
|
|
|
EmoteMap &EmoteManager::getBTTVChannelEmoteFromCaches()
|
2017-04-12 17:46:44 +02:00
|
|
|
{
|
|
|
|
return _bttvChannelEmoteFromCaches;
|
|
|
|
}
|
|
|
|
|
2017-09-16 16:20:10 +02:00
|
|
|
EmoteMap &EmoteManager::getEmojis()
|
|
|
|
{
|
|
|
|
return this->emojis;
|
|
|
|
}
|
|
|
|
|
2017-07-09 17:58:59 +02:00
|
|
|
ConcurrentMap<int, EmoteData> &EmoteManager::getFFZChannelEmoteFromCaches()
|
2017-04-12 17:46:44 +02:00
|
|
|
{
|
|
|
|
return _ffzChannelEmoteFromCaches;
|
|
|
|
}
|
|
|
|
|
2017-07-09 17:58:59 +02:00
|
|
|
ConcurrentMap<long, EmoteData> &EmoteManager::getTwitchEmoteFromCache()
|
2017-04-12 17:46:44 +02:00
|
|
|
{
|
|
|
|
return _twitchEmoteFromCache;
|
|
|
|
}
|
|
|
|
|
2017-06-26 16:41:20 +02:00
|
|
|
void EmoteManager::loadEmojis()
|
|
|
|
{
|
|
|
|
QFile file(":/emojidata.txt");
|
|
|
|
file.open(QFile::ReadOnly);
|
|
|
|
QTextStream in(&file);
|
|
|
|
|
|
|
|
uint unicodeBytes[4];
|
|
|
|
|
|
|
|
while (!in.atEnd()) {
|
|
|
|
// Line example: sunglasses 1f60e
|
|
|
|
QString line = in.readLine();
|
|
|
|
|
|
|
|
if (line.at(0) == '#') {
|
|
|
|
// Ignore lines starting with # (comments)
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
QStringList parts = line.split(' ');
|
|
|
|
if (parts.length() < 2) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString shortCode = parts[0];
|
|
|
|
QString code = parts[1];
|
|
|
|
|
|
|
|
QStringList unicodeCharacters = code.split('-');
|
|
|
|
if (unicodeCharacters.length() < 1) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
int numUnicodeBytes = 0;
|
|
|
|
|
|
|
|
for (const QString &unicodeCharacter : unicodeCharacters) {
|
|
|
|
unicodeBytes[numUnicodeBytes++] = QString(unicodeCharacter).toUInt(nullptr, 16);
|
|
|
|
}
|
|
|
|
|
|
|
|
EmojiData emojiData{
|
|
|
|
QString::fromUcs4(unicodeBytes, numUnicodeBytes), //
|
|
|
|
code, //
|
2017-07-02 17:37:17 +02:00
|
|
|
shortCode, //
|
2017-06-26 16:41:20 +02:00
|
|
|
};
|
|
|
|
|
2017-07-02 17:37:17 +02:00
|
|
|
this->emojiShortCodeToEmoji.insert(shortCode, emojiData);
|
2017-08-01 00:10:02 +02:00
|
|
|
this->emojiShortCodes.push_back(shortCode.toStdString());
|
2017-06-26 16:41:20 +02:00
|
|
|
|
2017-07-02 17:37:17 +02:00
|
|
|
this->emojiFirstByte[emojiData.value.at(0)].append(emojiData);
|
2017-07-02 18:12:11 +02:00
|
|
|
|
2017-09-16 16:20:10 +02:00
|
|
|
QString url = "https://cdnjs.cloudflare.com/ajax/libs/"
|
|
|
|
"emojione/2.2.6/assets/png/" +
|
|
|
|
code + ".png";
|
|
|
|
|
|
|
|
this->emojis.insert(code,
|
|
|
|
EmoteData(new LazyLoadedImage(*this, this->windowManager, url, 0.35)));
|
|
|
|
|
|
|
|
// TODO(pajlada): The vectors in emojiFirstByte need to be sorted by
|
|
|
|
// emojiData.code.length()
|
2017-06-26 16:41:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-09 17:58:59 +02:00
|
|
|
void EmoteManager::parseEmojis(std::vector<std::tuple<EmoteData, QString>> &parsedWords,
|
|
|
|
const QString &text)
|
2017-06-26 16:41:20 +02:00
|
|
|
{
|
2017-07-02 17:37:17 +02:00
|
|
|
int lastParsedEmojiEndIndex = 0;
|
2017-06-26 16:41:20 +02:00
|
|
|
|
|
|
|
for (auto i = 0; i < text.length() - 1; i++) {
|
2017-07-02 17:37:17 +02:00
|
|
|
const QChar character = text.at(i);
|
|
|
|
|
|
|
|
if (character.isLowSurrogate()) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto it = this->emojiFirstByte.find(character);
|
|
|
|
if (it == this->emojiFirstByte.end()) {
|
|
|
|
// No emoji starts with this character
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
const QVector<EmojiData> possibleEmojis = it.value();
|
|
|
|
|
|
|
|
int remainingCharacters = text.length() - i;
|
|
|
|
|
|
|
|
EmojiData matchedEmoji;
|
|
|
|
|
|
|
|
int matchedEmojiLength = 0;
|
|
|
|
|
|
|
|
for (const EmojiData &emoji : possibleEmojis) {
|
|
|
|
if (remainingCharacters < emoji.value.length()) {
|
|
|
|
// It cannot be this emoji, there's not enough space for it
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool match = true;
|
|
|
|
|
|
|
|
for (int j = 1; j < emoji.value.length(); ++j) {
|
|
|
|
if (text.at(i + j) != emoji.value.at(j)) {
|
|
|
|
match = false;
|
|
|
|
|
|
|
|
break;
|
2017-06-26 16:41:20 +02:00
|
|
|
}
|
|
|
|
}
|
2017-07-02 17:37:17 +02:00
|
|
|
|
|
|
|
if (match) {
|
|
|
|
matchedEmoji = emoji;
|
|
|
|
matchedEmojiLength = emoji.value.length();
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
2017-06-26 16:41:20 +02:00
|
|
|
}
|
2017-07-02 17:37:17 +02:00
|
|
|
|
|
|
|
if (matchedEmojiLength == 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
int currentParsedEmojiFirstIndex = i;
|
|
|
|
int currentParsedEmojiEndIndex = i + (matchedEmojiLength);
|
|
|
|
|
|
|
|
int charactersFromLastParsedEmoji = currentParsedEmojiFirstIndex - lastParsedEmojiEndIndex;
|
|
|
|
|
|
|
|
if (charactersFromLastParsedEmoji > 0) {
|
|
|
|
// Add characters inbetween emojis
|
|
|
|
parsedWords.push_back(std::tuple<messages::LazyLoadedImage *, QString>(
|
|
|
|
nullptr, text.mid(lastParsedEmojiEndIndex, charactersFromLastParsedEmoji)));
|
|
|
|
}
|
|
|
|
|
|
|
|
QString url = "https://cdnjs.cloudflare.com/ajax/libs/"
|
|
|
|
"emojione/2.2.6/assets/png/" +
|
|
|
|
matchedEmoji.code + ".png";
|
|
|
|
|
|
|
|
// Create or fetch cached emoji image
|
|
|
|
auto emojiImage = this->emojiCache.getOrAdd(url, [this, &url] {
|
2017-07-09 17:58:59 +02:00
|
|
|
return EmoteData(new LazyLoadedImage(*this, this->windowManager, url, 0.35)); //
|
2017-07-02 17:37:17 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
// Push the emoji as a word to parsedWords
|
2017-07-09 17:58:59 +02:00
|
|
|
parsedWords.push_back(std::tuple<EmoteData, QString>(emojiImage, QString()));
|
2017-07-02 17:37:17 +02:00
|
|
|
|
|
|
|
lastParsedEmojiEndIndex = currentParsedEmojiEndIndex;
|
|
|
|
|
|
|
|
i += matchedEmojiLength - 1;
|
2017-06-26 16:41:20 +02:00
|
|
|
}
|
|
|
|
|
2017-07-02 17:37:17 +02:00
|
|
|
if (lastParsedEmojiEndIndex < text.length()) {
|
|
|
|
// Add remaining characters
|
|
|
|
parsedWords.push_back(std::tuple<messages::LazyLoadedImage *, QString>(
|
|
|
|
nullptr, text.mid(lastParsedEmojiEndIndex)));
|
2017-06-26 16:41:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-31 22:15:02 +02:00
|
|
|
QString EmoteManager::replaceShortCodes(const QString &text)
|
|
|
|
{
|
|
|
|
QString ret(text);
|
|
|
|
auto it = this->findShortCodesRegex.globalMatch(text);
|
|
|
|
|
|
|
|
int32_t offset = 0;
|
|
|
|
|
|
|
|
while (it.hasNext()) {
|
|
|
|
auto match = it.next();
|
|
|
|
|
|
|
|
auto capturedString = match.captured();
|
|
|
|
|
|
|
|
QString matchString = capturedString.toLower().mid(1, capturedString.size() - 2);
|
|
|
|
|
|
|
|
auto emojiIt = this->emojiShortCodeToEmoji.constFind(matchString);
|
|
|
|
|
|
|
|
if (emojiIt == this->emojiShortCodeToEmoji.constEnd()) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto emojiData = emojiIt.value();
|
|
|
|
|
|
|
|
ret.replace(offset + match.capturedStart(), match.capturedLength(), emojiData.value);
|
|
|
|
|
|
|
|
offset += emojiData.value.size() - match.capturedLength();
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-07-23 14:16:13 +02:00
|
|
|
void EmoteManager::refreshTwitchEmotes(const std::string &roomID)
|
|
|
|
{
|
|
|
|
std::string oauthClient =
|
|
|
|
pajlada::Settings::Setting<std::string>::get("/accounts/" + roomID + "/oauthClient");
|
|
|
|
std::string oauthToken =
|
|
|
|
pajlada::Settings::Setting<std::string>::get("/accounts/" + roomID + "/oauthToken");
|
|
|
|
|
|
|
|
TwitchAccountEmoteData &emoteData = this->twitchAccountEmotes[roomID];
|
|
|
|
|
|
|
|
if (emoteData.filled) {
|
|
|
|
qDebug() << "Already loaded for room id " << qS(roomID);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
qDebug() << "Loading emotes for room id " << qS(roomID);
|
|
|
|
|
|
|
|
if (oauthClient.empty() || oauthToken.empty()) {
|
|
|
|
qDebug() << "Missing oauth client/token";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// api:v5
|
|
|
|
QString url("https://api.twitch.tv/kraken/users/" + qS(roomID) +
|
|
|
|
"/emotes?api_version=5&oauth_token=" + qS(oauthToken) +
|
|
|
|
"&client_id=" + qS(oauthClient));
|
|
|
|
|
|
|
|
qDebug() << url;
|
|
|
|
|
|
|
|
util::urlFetchJSONTimeout(
|
|
|
|
url,
|
|
|
|
[=, &emoteData](QJsonObject &root) {
|
|
|
|
emoteData.emoteSets.clear();
|
|
|
|
emoteData.emoteCodes.clear();
|
|
|
|
|
|
|
|
auto emoticonSets = root.value("emoticon_sets").toObject();
|
|
|
|
for (QJsonObject::iterator it = emoticonSets.begin(); it != emoticonSets.end(); ++it) {
|
|
|
|
std::string emoteSetString = it.key().toStdString();
|
|
|
|
QJsonArray emoteSetList = it.value().toArray();
|
|
|
|
|
|
|
|
for (QJsonValue emoteValue : emoteSetList) {
|
|
|
|
QJsonObject emoticon = emoteValue.toObject();
|
|
|
|
std::string id = emoticon["id"].toString().toStdString();
|
|
|
|
std::string code = emoticon["code"].toString().toStdString();
|
|
|
|
emoteData.emoteSets[emoteSetString].push_back({id, code});
|
|
|
|
emoteData.emoteCodes.push_back(code);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
emoteData.filled = true;
|
|
|
|
},
|
|
|
|
3000);
|
|
|
|
}
|
|
|
|
|
2017-06-13 21:13:58 +02:00
|
|
|
void EmoteManager::loadBTTVEmotes()
|
2017-01-26 17:26:20 +01:00
|
|
|
{
|
|
|
|
QNetworkAccessManager *manager = new QNetworkAccessManager();
|
|
|
|
|
|
|
|
QUrl url("https://api.betterttv.net/2/emotes");
|
|
|
|
QNetworkRequest request(url);
|
|
|
|
|
|
|
|
QNetworkReply *reply = manager->get(request);
|
|
|
|
|
|
|
|
QObject::connect(reply, &QNetworkReply::finished, [=] {
|
|
|
|
if (reply->error() == QNetworkReply::NetworkError::NoError) {
|
|
|
|
QByteArray data = reply->readAll();
|
|
|
|
QJsonDocument jsonDoc(QJsonDocument::fromJson(data));
|
|
|
|
QJsonObject root = jsonDoc.object();
|
|
|
|
|
|
|
|
auto emotes = root.value("emotes").toArray();
|
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
QString linkTemplate = "https:" + root.value("urlTemplate").toString();
|
2017-01-26 17:26:20 +01:00
|
|
|
|
2017-07-23 14:16:13 +02:00
|
|
|
std::vector<std::string> codes;
|
2017-01-26 17:26:20 +01:00
|
|
|
for (const QJsonValue &emote : emotes) {
|
|
|
|
QString id = emote.toObject().value("id").toString();
|
|
|
|
QString code = emote.toObject().value("code").toString();
|
|
|
|
// emote.value("imageType").toString();
|
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
QString tmp = linkTemplate;
|
2017-01-26 17:26:20 +01:00
|
|
|
tmp.detach();
|
2017-04-12 17:46:44 +02:00
|
|
|
QString url = tmp.replace("{{id}}", id).replace("{{image}}", "1x");
|
2017-01-26 17:26:20 +01:00
|
|
|
|
2017-07-23 09:53:50 +02:00
|
|
|
this->bttvGlobalEmotes.insert(
|
2017-06-13 21:13:58 +02:00
|
|
|
code, new LazyLoadedImage(*this, this->windowManager, url, 1, code,
|
|
|
|
code + "\nGlobal BTTV Emote"));
|
2017-07-23 14:16:13 +02:00
|
|
|
codes.push_back(code.toStdString());
|
2017-01-26 17:26:20 +01:00
|
|
|
}
|
2017-07-23 14:16:13 +02:00
|
|
|
|
|
|
|
this->bttvGlobalEmoteCodes = codes;
|
2017-01-26 17:26:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
reply->deleteLater();
|
|
|
|
manager->deleteLater();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-06-13 21:13:58 +02:00
|
|
|
void EmoteManager::loadFFZEmotes()
|
2017-01-26 17:26:20 +01:00
|
|
|
{
|
|
|
|
QNetworkAccessManager *manager = new QNetworkAccessManager();
|
|
|
|
|
|
|
|
QUrl url("https://api.frankerfacez.com/v1/set/global");
|
|
|
|
QNetworkRequest request(url);
|
|
|
|
|
|
|
|
QNetworkReply *reply = manager->get(request);
|
|
|
|
|
|
|
|
QObject::connect(reply, &QNetworkReply::finished, [=] {
|
|
|
|
if (reply->error() == QNetworkReply::NetworkError::NoError) {
|
|
|
|
QByteArray data = reply->readAll();
|
|
|
|
QJsonDocument jsonDoc(QJsonDocument::fromJson(data));
|
|
|
|
QJsonObject root = jsonDoc.object();
|
|
|
|
|
|
|
|
auto sets = root.value("sets").toObject();
|
|
|
|
|
2017-07-23 14:16:13 +02:00
|
|
|
std::vector<std::string> codes;
|
2017-01-26 17:26:20 +01:00
|
|
|
for (const QJsonValue &set : sets) {
|
|
|
|
auto emoticons = set.toObject().value("emoticons").toArray();
|
|
|
|
|
|
|
|
for (const QJsonValue &emote : emoticons) {
|
|
|
|
QJsonObject object = emote.toObject();
|
|
|
|
|
|
|
|
// margins
|
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
// int id = object.value("id").toInt();
|
2017-01-26 17:26:20 +01:00
|
|
|
QString code = object.value("name").toString();
|
|
|
|
|
|
|
|
QJsonObject urls = object.value("urls").toObject();
|
|
|
|
QString url1 = "http:" + urls.value("1").toString();
|
|
|
|
|
2017-07-23 09:53:50 +02:00
|
|
|
this->ffzGlobalEmotes.insert(
|
2017-06-13 21:13:58 +02:00
|
|
|
code, new LazyLoadedImage(*this, this->windowManager, url1, 1, code,
|
|
|
|
code + "\nGlobal FFZ Emote"));
|
2017-07-23 14:16:13 +02:00
|
|
|
codes.push_back(code.toStdString());
|
2017-01-26 17:26:20 +01:00
|
|
|
}
|
2017-07-23 14:16:13 +02:00
|
|
|
|
|
|
|
this->ffzGlobalEmoteCodes = codes;
|
2017-01-26 17:26:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
reply->deleteLater();
|
|
|
|
manager->deleteLater();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-07-09 17:58:59 +02:00
|
|
|
// id is used for lookup
|
|
|
|
// emoteName is used for giving a name to the emote in case it doesn't exist
|
|
|
|
EmoteData EmoteManager::getTwitchEmoteById(long id, const QString &emoteName)
|
2017-01-06 23:28:48 +01:00
|
|
|
{
|
2017-07-09 17:58:59 +02:00
|
|
|
return _twitchEmoteFromCache.getOrAdd(id, [this, &emoteName, &id] {
|
2017-04-12 17:46:44 +02:00
|
|
|
qDebug() << "added twitch emote: " << id;
|
2017-01-13 18:59:11 +01:00
|
|
|
qreal scale;
|
|
|
|
QString url = getTwitchEmoteLink(id, scale);
|
2017-07-09 17:58:59 +02:00
|
|
|
return new LazyLoadedImage(*this, this->windowManager, url, scale, emoteName,
|
|
|
|
emoteName + "\nTwitch Emote");
|
2017-01-13 18:59:11 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
QString EmoteManager::getTwitchEmoteLink(long id, qreal &scale)
|
2017-01-13 18:59:11 +01:00
|
|
|
{
|
|
|
|
scale = .5;
|
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
QString value = TWITCH_EMOTE_TEMPLATE;
|
2017-01-26 10:18:02 +01:00
|
|
|
|
|
|
|
value.detach();
|
|
|
|
|
|
|
|
return value.replace("{id}", QString::number(id)).replace("{scale}", "2");
|
2017-01-06 23:28:48 +01:00
|
|
|
}
|
|
|
|
|
2017-07-09 17:58:59 +02:00
|
|
|
EmoteData EmoteManager::getCheerImage(long long amount, bool animated)
|
2017-01-05 16:07:20 +01:00
|
|
|
{
|
2017-01-15 17:21:28 +01:00
|
|
|
// TODO: fix this xD
|
2017-07-09 17:58:59 +02:00
|
|
|
return EmoteData();
|
2017-06-13 21:13:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
boost::signals2::signal<void()> &EmoteManager::getGifUpdateSignal()
|
|
|
|
{
|
|
|
|
if (!_gifUpdateTimerInitiated) {
|
|
|
|
_gifUpdateTimerInitiated = true;
|
|
|
|
|
|
|
|
_gifUpdateTimer.setInterval(30);
|
|
|
|
_gifUpdateTimer.start();
|
|
|
|
|
|
|
|
QObject::connect(&_gifUpdateTimer, &QTimer::timeout, [this] {
|
|
|
|
_gifUpdateTimerSignal();
|
|
|
|
this->windowManager.repaintGifEmotes();
|
|
|
|
});
|
2017-01-05 20:49:33 +01:00
|
|
|
}
|
2017-06-13 21:13:58 +02:00
|
|
|
|
|
|
|
return _gifUpdateTimerSignal;
|
2017-01-04 15:12:31 +01:00
|
|
|
}
|
2017-05-27 16:16:39 +02:00
|
|
|
|
|
|
|
} // namespace chatterino
|