mirror-chatterino2/src/providers/twitch/TwitchAccount.hpp

150 lines
4.6 KiB
C++
Raw Normal View History

#pragma once
2017-04-12 17:46:44 +02:00
#include "common/Aliases.hpp"
#include "common/Atomic.hpp"
#include "common/Channel.hpp"
2018-08-02 14:23:27 +02:00
#include "common/UniqueAccess.hpp"
2018-06-26 14:09:39 +02:00
#include "controllers/accounts/Account.hpp"
2018-08-02 14:23:27 +02:00
#include "messages/Emote.hpp"
2018-06-26 14:09:39 +02:00
#include "providers/twitch/TwitchUser.hpp"
#include "util/QStringHash.hpp"
#include <rapidjson/document.h>
#include <QColor>
#include <QElapsedTimer>
2017-04-12 17:46:44 +02:00
#include <QString>
#include <functional>
#include <mutex>
#include <set>
2018-05-06 12:52:47 +02:00
2017-04-14 17:52:22 +02:00
namespace chatterino {
enum FollowResult {
FollowResult_Following,
FollowResult_NotFollowing,
FollowResult_Failed,
};
struct TwitchEmoteSetResolverResponse {
const QString channelName;
const QString channelId;
const QString type;
const int tier;
const bool isCustom;
// Example response:
// {
// "channel_name": "zneix",
// "channel_id": "99631238",
// "type": "",
// "tier": 1,
// "custom": false
// }
TwitchEmoteSetResolverResponse(QJsonObject jsonObject)
: channelName(jsonObject.value("channel_name").toString())
, channelId(jsonObject.value("channel_id").toString())
, type(jsonObject.value("type").toString())
, tier(jsonObject.value("tier").toInt())
, isCustom(jsonObject.value("custom").toBool())
{
}
};
std::vector<QStringList> getEmoteSetBatches(QStringList emoteSetKeys);
2018-06-26 17:06:17 +02:00
class TwitchAccount : public Account
2017-04-12 17:46:44 +02:00
{
public:
2018-08-02 14:23:27 +02:00
struct TwitchEmote {
EmoteId id;
EmoteName name;
};
struct EmoteSet {
QString key;
QString channelName;
QString text;
bool local{false};
2018-08-02 14:23:27 +02:00
std::vector<TwitchEmote> emotes;
};
std::map<QString, EmoteSet> staticEmoteSets;
struct TwitchAccountEmoteData {
std::vector<std::shared_ptr<EmoteSet>> emoteSets;
// this EmoteMap should contain all emotes available globally
// excluding locally available emotes, such as follower ones
2018-08-02 14:23:27 +02:00
EmoteMap emotes;
};
2018-08-06 21:17:03 +02:00
TwitchAccount(const QString &username, const QString &oauthToken_,
const QString &oauthClient_, const QString &_userID);
2017-04-12 17:46:44 +02:00
2018-05-06 12:52:47 +02:00
virtual QString toString() const override;
2018-02-05 15:11:50 +01:00
const QString &getUserName() const;
2017-04-12 17:46:44 +02:00
const QString &getOAuthToken() const;
const QString &getOAuthClient() const;
const QString &getUserId() const;
2017-04-12 17:46:44 +02:00
QColor color();
void setColor(QColor color);
// Attempts to update the users OAuth Client ID
// Returns true if the value has changed, otherwise false
bool setOAuthClient(const QString &newClientID);
// Attempts to update the users OAuth Token
// Returns true if the value has changed, otherwise false
bool setOAuthToken(const QString &newOAuthToken);
2017-04-12 17:46:44 +02:00
bool isAnon() const;
void loadBlocks();
void blockUser(QString userId, std::function<void()> onSuccess,
std::function<void()> onFailure);
void unblockUser(QString userId, std::function<void()> onSuccess,
std::function<void()> onFailure);
2018-08-06 21:17:03 +02:00
SharedAccessGuard<const std::set<QString>> accessBlockedUserIds() const;
SharedAccessGuard<const std::set<TwitchUser>> accessBlocks() const;
void loadEmotes(std::weak_ptr<Channel> weakChannel = {});
// loadUserstateEmotes loads emote sets that are part of the USERSTATE emote-sets key
// this function makes sure not to load emote sets that have already been loaded
void loadUserstateEmotes(std::weak_ptr<Channel> weakChannel = {});
// setUserStateEmoteSets sets the emote sets that were parsed from the USERSTATE emote-sets key
// Returns true if the newly inserted emote sets differ from the ones previously saved
[[nodiscard]] bool setUserstateEmoteSets(QStringList newEmoteSets);
SharedAccessGuard<const TwitchAccountEmoteData> accessEmotes() const;
SharedAccessGuard<const std::unordered_map<QString, EmoteMap>>
accessLocalEmotes() const;
// Automod actions
void autoModAllow(const QString msgID, ChannelPtr channel);
void autoModDeny(const QString msgID, ChannelPtr channel);
2017-04-12 17:46:44 +02:00
private:
2018-08-02 14:23:27 +02:00
void loadEmoteSetData(std::shared_ptr<EmoteSet> emoteSet);
2018-07-06 19:23:47 +02:00
QString oauthClient_;
QString oauthToken_;
QString userName_;
QString userId_;
const bool isAnon_;
Atomic<QColor> color_;
2018-07-06 19:23:47 +02:00
mutable std::mutex ignoresMutex_;
QStringList userstateEmoteSets_;
2021-05-01 13:38:58 +02:00
UniqueAccess<std::set<TwitchUser>> ignores_;
UniqueAccess<std::set<QString>> ignoresUserIds_;
2018-08-02 14:23:27 +02:00
// std::map<UserId, TwitchAccountEmoteData> emotes;
UniqueAccess<TwitchAccountEmoteData> emotes_;
UniqueAccess<std::unordered_map<QString, EmoteMap>> localEmotes_;
2017-04-12 17:46:44 +02:00
};
} // namespace chatterino