537 lines
17 KiB
C++
537 lines
17 KiB
C++
#include "providers/seventv/SeventvEmotes.hpp"
|
|
|
|
#include "Application.hpp"
|
|
#include "common/Literals.hpp"
|
|
#include "common/network/NetworkResult.hpp"
|
|
#include "common/QLogging.hpp"
|
|
#include "messages/Emote.hpp"
|
|
#include "messages/Image.hpp"
|
|
#include "messages/ImageSet.hpp"
|
|
#include "messages/MessageBuilder.hpp"
|
|
#include "providers/seventv/eventapi/Dispatch.hpp"
|
|
#include "providers/seventv/SeventvAPI.hpp"
|
|
#include "providers/twitch/TwitchChannel.hpp"
|
|
#include "singletons/Settings.hpp"
|
|
#include "util/Helpers.hpp"
|
|
|
|
#include <QJsonArray>
|
|
#include <QJsonDocument>
|
|
#include <QJsonObject>
|
|
#include <QStringView>
|
|
#include <QThread>
|
|
|
|
#include <array>
|
|
#include <utility>
|
|
|
|
/**
|
|
* # References
|
|
*
|
|
* - EmoteSet: https://github.com/SevenTV/API/blob/a84e884b5590dbb5d91a5c6b3548afabb228f385/data/model/emote-set.model.go#L8-L18
|
|
* - ActiveEmote: https://github.com/SevenTV/API/blob/a84e884b5590dbb5d91a5c6b3548afabb228f385/data/model/emote-set.model.go#L20-L27
|
|
* - EmotePartial (emoteData): https://github.com/SevenTV/API/blob/a84e884b5590dbb5d91a5c6b3548afabb228f385/data/model/emote.model.go#L24-L34
|
|
* - ImageHost: https://github.com/SevenTV/API/blob/a84e884b5590dbb5d91a5c6b3548afabb228f385/data/model/model.go#L36-L39
|
|
* - ImageFile: https://github.com/SevenTV/API/blob/a84e884b5590dbb5d91a5c6b3548afabb228f385/data/model/model.go#L41-L48
|
|
*/
|
|
namespace {
|
|
|
|
using namespace chatterino;
|
|
using namespace seventv::eventapi;
|
|
|
|
// These declarations won't throw an exception.
|
|
const QString CHANNEL_HAS_NO_EMOTES("This channel has no 7TV channel emotes.");
|
|
const QString EMOTE_LINK_FORMAT("https://7tv.app/emotes/%1");
|
|
|
|
struct CreateEmoteResult {
|
|
Emote emote;
|
|
EmoteId id;
|
|
EmoteName name;
|
|
bool hasImages{};
|
|
};
|
|
|
|
EmotePtr cachedOrMake(Emote &&emote, const EmoteId &id)
|
|
{
|
|
static std::unordered_map<EmoteId, std::weak_ptr<const Emote>> cache;
|
|
static std::mutex mutex;
|
|
|
|
return cachedOrMakeEmotePtr(std::move(emote), cache, mutex, id);
|
|
}
|
|
|
|
/**
|
|
* This decides whether an emote should be displayed
|
|
* as zero-width
|
|
*/
|
|
bool isZeroWidthActive(const QJsonObject &activeEmote)
|
|
{
|
|
auto flags = SeventvActiveEmoteFlags(
|
|
SeventvActiveEmoteFlag(activeEmote.value("flags").toInt()));
|
|
return flags.has(SeventvActiveEmoteFlag::ZeroWidth);
|
|
}
|
|
|
|
Tooltip createTooltip(const QString &name, const QString &author, bool isGlobal)
|
|
{
|
|
return Tooltip{QString("%1<br>%2 7TV Emote<br>By: %3")
|
|
.arg(name.toHtmlEscaped(),
|
|
isGlobal ? "Global" : "Channel",
|
|
author.isEmpty() ? "<deleted>"
|
|
: author.toHtmlEscaped())};
|
|
}
|
|
|
|
Tooltip createAliasedTooltip(const QString &name, const QString &baseName,
|
|
const QString &author, bool isGlobal)
|
|
{
|
|
return Tooltip{QString("%1<br>Alias of %2<br>%3 7TV Emote<br>By: %4")
|
|
.arg(name.toHtmlEscaped(), baseName.toHtmlEscaped(),
|
|
isGlobal ? "Global" : "Channel",
|
|
author.isEmpty() ? "<deleted>"
|
|
: author.toHtmlEscaped())};
|
|
}
|
|
|
|
CreateEmoteResult createEmote(const QJsonObject &activeEmote,
|
|
const QJsonObject &emoteData, bool isGlobal)
|
|
{
|
|
auto emoteId = EmoteId{activeEmote["id"].toString()};
|
|
auto emoteName = EmoteName{activeEmote["name"].toString()};
|
|
auto author =
|
|
EmoteAuthor{emoteData["owner"].toObject()["display_name"].toString()};
|
|
auto baseEmoteName = EmoteName{emoteData["name"].toString()};
|
|
bool zeroWidth = isZeroWidthActive(activeEmote);
|
|
bool aliasedName = emoteName != baseEmoteName;
|
|
auto tooltip =
|
|
aliasedName
|
|
? createAliasedTooltip(emoteName.string, baseEmoteName.string,
|
|
author.string, isGlobal)
|
|
: createTooltip(emoteName.string, author.string, isGlobal);
|
|
auto imageSet = SeventvEmotes::createImageSet(emoteData, false);
|
|
|
|
auto emote = Emote({
|
|
emoteName,
|
|
imageSet,
|
|
tooltip,
|
|
Url{EMOTE_LINK_FORMAT.arg(emoteId.string)},
|
|
zeroWidth,
|
|
emoteId,
|
|
author,
|
|
makeConditionedOptional(aliasedName, baseEmoteName),
|
|
});
|
|
|
|
return {emote, emoteId, emoteName, !emote.images.getImage1()->isEmpty()};
|
|
}
|
|
|
|
bool checkEmoteVisibility(const QJsonObject &emoteData)
|
|
{
|
|
if (!emoteData["listed"].toBool() &&
|
|
!getSettings()->showUnlistedSevenTVEmotes)
|
|
{
|
|
return false;
|
|
}
|
|
auto flags =
|
|
SeventvEmoteFlags(SeventvEmoteFlag(emoteData["flags"].toInt()));
|
|
return !flags.has(SeventvEmoteFlag::ContentTwitchDisallowed);
|
|
}
|
|
|
|
EmotePtr createUpdatedEmote(const EmotePtr &oldEmote,
|
|
const EmoteUpdateDispatch &dispatch)
|
|
{
|
|
bool toNonAliased = oldEmote->baseName.has_value() &&
|
|
dispatch.emoteName == oldEmote->baseName->string;
|
|
|
|
auto baseName = oldEmote->baseName.value_or(oldEmote->name);
|
|
auto emote = std::make_shared<const Emote>(Emote(
|
|
{EmoteName{dispatch.emoteName}, oldEmote->images,
|
|
toNonAliased
|
|
? createTooltip(dispatch.emoteName, oldEmote->author.string, false)
|
|
: createAliasedTooltip(dispatch.emoteName, baseName.string,
|
|
oldEmote->author.string, false),
|
|
oldEmote->homePage, oldEmote->zeroWidth, oldEmote->id,
|
|
oldEmote->author, makeConditionedOptional(!toNonAliased, baseName)}));
|
|
return emote;
|
|
}
|
|
|
|
} // namespace
|
|
|
|
namespace chatterino {
|
|
|
|
using namespace seventv::eventapi;
|
|
using namespace seventv::detail;
|
|
using namespace literals;
|
|
|
|
EmoteMap seventv::detail::parseEmotes(const QJsonArray &emoteSetEmotes,
|
|
bool isGlobal)
|
|
{
|
|
auto emotes = EmoteMap();
|
|
|
|
for (const auto &activeEmoteJson : emoteSetEmotes)
|
|
{
|
|
auto activeEmote = activeEmoteJson.toObject();
|
|
auto emoteData = activeEmote["data"].toObject();
|
|
|
|
if (emoteData.empty() || !checkEmoteVisibility(emoteData))
|
|
{
|
|
continue;
|
|
}
|
|
|
|
auto result = createEmote(activeEmote, emoteData, isGlobal);
|
|
if (!result.hasImages)
|
|
{
|
|
// this shouldn't happen but if it does, it will crash,
|
|
// so we don't add the emote
|
|
qCDebug(chatterinoSeventv)
|
|
<< "Emote without images:" << activeEmote;
|
|
continue;
|
|
}
|
|
auto ptr = cachedOrMake(std::move(result.emote), result.id);
|
|
emotes[result.name] = ptr;
|
|
}
|
|
|
|
return emotes;
|
|
}
|
|
|
|
SeventvEmotes::SeventvEmotes()
|
|
: global_(std::make_shared<EmoteMap>())
|
|
{
|
|
getSettings()->enableSevenTVGlobalEmotes.connect(
|
|
[this] {
|
|
this->loadGlobalEmotes();
|
|
},
|
|
this->managedConnections, false);
|
|
}
|
|
|
|
std::shared_ptr<const EmoteMap> SeventvEmotes::globalEmotes() const
|
|
{
|
|
return this->global_.get();
|
|
}
|
|
|
|
std::optional<EmotePtr> SeventvEmotes::globalEmote(const EmoteName &name) const
|
|
{
|
|
auto emotes = this->global_.get();
|
|
auto it = emotes->find(name);
|
|
|
|
if (it == emotes->end())
|
|
{
|
|
return std::nullopt;
|
|
}
|
|
return it->second;
|
|
}
|
|
|
|
void SeventvEmotes::loadGlobalEmotes()
|
|
{
|
|
if (!Settings::instance().enableSevenTVGlobalEmotes)
|
|
{
|
|
this->setGlobalEmotes(EMPTY_EMOTE_MAP);
|
|
return;
|
|
}
|
|
|
|
readProviderEmotesCache("global", "seventv", [this](auto jsonDoc) {
|
|
auto emoteMap = parseEmotes(jsonDoc.object()["emotes"].toArray(), true);
|
|
this->setGlobalEmotes(std::make_shared<EmoteMap>(std::move(emoteMap)));
|
|
});
|
|
|
|
qCDebug(chatterinoSeventv) << "Loading 7TV Global Emotes";
|
|
|
|
getApp()->getSeventvAPI()->getEmoteSet(
|
|
u"global"_s,
|
|
[this](const auto &json) {
|
|
writeProviderEmotesCache("global", "seventv",
|
|
QJsonDocument(json).toJson());
|
|
QJsonArray parsedEmotes = json["emotes"].toArray();
|
|
|
|
auto emoteMap = parseEmotes(parsedEmotes, true);
|
|
qCDebug(chatterinoSeventv)
|
|
<< "Loaded" << emoteMap.size() << "7TV Global Emotes";
|
|
this->setGlobalEmotes(
|
|
std::make_shared<EmoteMap>(std::move(emoteMap)));
|
|
},
|
|
[](const auto &result) {
|
|
qCWarning(chatterinoSeventv)
|
|
<< "Couldn't load 7TV global emotes" << result.getData();
|
|
});
|
|
}
|
|
|
|
void SeventvEmotes::setGlobalEmotes(std::shared_ptr<const EmoteMap> emotes)
|
|
{
|
|
this->global_.set(std::move(emotes));
|
|
}
|
|
|
|
void SeventvEmotes::loadChannelEmotes(
|
|
const std::weak_ptr<Channel> &channel, const QString &channelId,
|
|
std::function<void(EmoteMap &&, ChannelInfo)> callback, bool manualRefresh,
|
|
bool cacheHit)
|
|
{
|
|
qCDebug(chatterinoSeventv)
|
|
<< "Reloading 7TV Channel Emotes" << channelId << manualRefresh;
|
|
|
|
getApp()->getSeventvAPI()->getUserByTwitchID(
|
|
channelId,
|
|
[callback = std::move(callback), channel, channelId,
|
|
manualRefresh](const auto &json) {
|
|
writeProviderEmotesCache(channelId, "seventv",
|
|
QJsonDocument(json).toJson());
|
|
const auto emoteSet = json["emote_set"].toObject();
|
|
const auto parsedEmotes = emoteSet["emotes"].toArray();
|
|
|
|
auto emoteMap = parseEmotes(parsedEmotes, false);
|
|
bool hasEmotes = !emoteMap.empty();
|
|
|
|
qCDebug(chatterinoSeventv)
|
|
<< "Loaded" << emoteMap.size() << "7TV Channel Emotes for"
|
|
<< channelId << "manual refresh:" << manualRefresh;
|
|
|
|
if (hasEmotes)
|
|
{
|
|
auto user = json["user"].toObject();
|
|
|
|
size_t connectionIdx = 0;
|
|
for (const auto &conn : user["connections"].toArray())
|
|
{
|
|
if (conn.toObject()["platform"].toString() == "TWITCH")
|
|
{
|
|
break;
|
|
}
|
|
connectionIdx++;
|
|
}
|
|
|
|
callback(std::move(emoteMap),
|
|
{user["id"].toString(), emoteSet["id"].toString(),
|
|
connectionIdx});
|
|
}
|
|
|
|
auto shared = channel.lock();
|
|
if (!shared)
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (manualRefresh)
|
|
{
|
|
if (hasEmotes)
|
|
{
|
|
shared->addSystemMessage("7TV channel emotes reloaded.");
|
|
}
|
|
else
|
|
{
|
|
shared->addSystemMessage(CHANNEL_HAS_NO_EMOTES);
|
|
}
|
|
}
|
|
},
|
|
[channelId, channel, manualRefresh, cacheHit](const auto &result) {
|
|
auto shared = channel.lock();
|
|
if (!shared)
|
|
{
|
|
return;
|
|
}
|
|
if (result.status() == 404)
|
|
{
|
|
qCWarning(chatterinoSeventv)
|
|
<< "Error occurred fetching 7TV emotes: "
|
|
<< result.parseJson();
|
|
if (manualRefresh)
|
|
{
|
|
shared->addSystemMessage(CHANNEL_HAS_NO_EMOTES);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// TODO: Auto retry in case of a timeout, with a delay
|
|
auto errorString = result.formatError();
|
|
qCWarning(chatterinoSeventv)
|
|
<< "Error fetching 7TV emotes for channel" << channelId
|
|
<< ", error" << errorString;
|
|
shared->addSystemMessage(
|
|
QStringLiteral("Failed to fetch 7TV channel "
|
|
"emotes. (Error: %1)")
|
|
.arg(errorString));
|
|
if (cacheHit)
|
|
{
|
|
shared->addSystemMessage(
|
|
"Using cached 7TV emotes as fallback.");
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
std::optional<EmotePtr> SeventvEmotes::addEmote(
|
|
Atomic<std::shared_ptr<const EmoteMap>> &map,
|
|
const EmoteAddDispatch &dispatch)
|
|
{
|
|
// Check for visibility first, so we don't copy the map.
|
|
auto emoteData = dispatch.emoteJson["data"].toObject();
|
|
if (emoteData.empty() || !checkEmoteVisibility(emoteData))
|
|
{
|
|
return std::nullopt;
|
|
}
|
|
|
|
// This copies the map.
|
|
EmoteMap updatedMap = *map.get();
|
|
auto result = createEmote(dispatch.emoteJson, emoteData, false);
|
|
if (!result.hasImages)
|
|
{
|
|
// Incoming emote didn't contain any images, abort
|
|
qCDebug(chatterinoSeventv)
|
|
<< "Emote without images:" << dispatch.emoteJson;
|
|
return std::nullopt;
|
|
}
|
|
auto emote = std::make_shared<const Emote>(std::move(result.emote));
|
|
updatedMap[result.name] = emote;
|
|
map.set(std::make_shared<EmoteMap>(std::move(updatedMap)));
|
|
|
|
return emote;
|
|
}
|
|
|
|
std::optional<EmotePtr> SeventvEmotes::updateEmote(
|
|
Atomic<std::shared_ptr<const EmoteMap>> &map,
|
|
const EmoteUpdateDispatch &dispatch)
|
|
{
|
|
auto oldMap = map.get();
|
|
auto oldEmote = oldMap->findEmote(dispatch.emoteName, dispatch.emoteID);
|
|
if (oldEmote == oldMap->end())
|
|
{
|
|
return std::nullopt;
|
|
}
|
|
|
|
// This copies the map.
|
|
EmoteMap updatedMap = *map.get();
|
|
updatedMap.erase(oldEmote->second->name);
|
|
|
|
auto emote = createUpdatedEmote(oldEmote->second, dispatch);
|
|
updatedMap[emote->name] = emote;
|
|
map.set(std::make_shared<EmoteMap>(std::move(updatedMap)));
|
|
|
|
return emote;
|
|
}
|
|
|
|
std::optional<EmotePtr> SeventvEmotes::removeEmote(
|
|
Atomic<std::shared_ptr<const EmoteMap>> &map,
|
|
const EmoteRemoveDispatch &dispatch)
|
|
{
|
|
// This copies the map.
|
|
EmoteMap updatedMap = *map.get();
|
|
auto it = updatedMap.findEmote(dispatch.emoteName, dispatch.emoteID);
|
|
if (it == updatedMap.end())
|
|
{
|
|
// We already copied the map at this point and are now discarding the copy.
|
|
// This is fine, because this case should be really rare.
|
|
return std::nullopt;
|
|
}
|
|
auto emote = it->second;
|
|
updatedMap.erase(it);
|
|
map.set(std::make_shared<EmoteMap>(std::move(updatedMap)));
|
|
|
|
return emote;
|
|
}
|
|
|
|
void SeventvEmotes::getEmoteSet(
|
|
const QString &emoteSetId,
|
|
std::function<void(EmoteMap &&, QString)> successCallback,
|
|
std::function<void(QString)> errorCallback)
|
|
{
|
|
qCDebug(chatterinoSeventv) << "Loading 7TV Emote Set" << emoteSetId;
|
|
|
|
getApp()->getSeventvAPI()->getEmoteSet(
|
|
emoteSetId,
|
|
[callback = std::move(successCallback), emoteSetId](const auto &json) {
|
|
assert(!isAppAboutToQuit());
|
|
|
|
auto parsedEmotes = json["emotes"].toArray();
|
|
|
|
auto emoteMap = parseEmotes(parsedEmotes, false);
|
|
|
|
qCDebug(chatterinoSeventv) << "Loaded" << emoteMap.size()
|
|
<< "7TV Emotes from" << emoteSetId;
|
|
|
|
callback(std::move(emoteMap), json["name"].toString());
|
|
},
|
|
[emoteSetId, callback = std::move(errorCallback)](const auto &result) {
|
|
callback(result.formatError());
|
|
});
|
|
}
|
|
|
|
ImageSet SeventvEmotes::createImageSet(const QJsonObject &emoteData,
|
|
bool useStatic)
|
|
{
|
|
auto host = emoteData["host"].toObject();
|
|
// "//cdn.7tv[...]"
|
|
auto baseUrl = host["url"].toString();
|
|
auto files = host["files"].toArray();
|
|
|
|
std::array<ImagePtr, 4> sizes;
|
|
double baseWidth = 0.0;
|
|
size_t nextSize = 0;
|
|
|
|
for (auto fileItem : files)
|
|
{
|
|
if (nextSize >= sizes.size())
|
|
{
|
|
break;
|
|
}
|
|
|
|
auto file = fileItem.toObject();
|
|
if (file["format"].toString() != "WEBP")
|
|
{
|
|
continue; // We only use webp
|
|
}
|
|
|
|
double width = file["width"].toDouble();
|
|
double scale = 1.0; // in relation to first image
|
|
if (baseWidth > 0.0)
|
|
{
|
|
scale = baseWidth / width;
|
|
}
|
|
else
|
|
{
|
|
// => this is the first image
|
|
baseWidth = width;
|
|
}
|
|
|
|
auto name = [&] {
|
|
if (useStatic)
|
|
{
|
|
auto staticName = file["static_name"].toString();
|
|
if (!staticName.isEmpty())
|
|
{
|
|
return staticName;
|
|
}
|
|
}
|
|
return file["name"].toString();
|
|
}();
|
|
|
|
auto image =
|
|
Image::fromUrl({QString("https:%1/%2").arg(baseUrl, name)}, scale,
|
|
{static_cast<int>(width), file["height"].toInt(16)});
|
|
|
|
sizes.at(nextSize) = image;
|
|
nextSize++;
|
|
}
|
|
|
|
if (nextSize < sizes.size())
|
|
{
|
|
// this should be really rare
|
|
// this means we didn't get all sizes of an emote
|
|
if (nextSize == 0)
|
|
{
|
|
qCDebug(chatterinoSeventv)
|
|
<< "Got file list without any eligible files";
|
|
// When this emote is typed, chatterino will crash.
|
|
return ImageSet{};
|
|
}
|
|
for (; nextSize < sizes.size(); nextSize++)
|
|
{
|
|
sizes.at(nextSize) = Image::getEmpty();
|
|
}
|
|
}
|
|
|
|
// Typically, 7TV provides four versions (1x, 2x, 3x, and 4x). The 3x
|
|
// version has a scale factor of 1/3, which is a size other providers don't
|
|
// provide - they only provide the 4x version (0.25). To be in line with
|
|
// other providers, we prefer the 4x version but fall back to the 3x one if
|
|
// it doesn't exist.
|
|
auto largest = std::move(sizes[3]);
|
|
if (!largest || largest->isEmpty())
|
|
{
|
|
largest = std::move(sizes[2]);
|
|
}
|
|
|
|
return ImageSet{sizes[0], sizes[1], largest};
|
|
}
|
|
|
|
} // namespace chatterino
|