mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
110 lines
2.5 KiB
C++
110 lines
2.5 KiB
C++
#pragma once
|
|
|
|
#include <IrcConnection>
|
|
|
|
#include "channel.hpp"
|
|
#include "common.hpp"
|
|
#include "singletons/emotemanager.hpp"
|
|
#include "singletons/ircmanager.hpp"
|
|
#include "util/concurrentmap.hpp"
|
|
|
|
#include <mutex>
|
|
|
|
namespace chatterino {
|
|
namespace providers {
|
|
namespace twitch {
|
|
|
|
class TwitchServer;
|
|
|
|
class TwitchChannel final : public Channel
|
|
{
|
|
QTimer *liveStatusTimer;
|
|
QTimer *chattersListTimer;
|
|
|
|
public:
|
|
struct StreamStatus {
|
|
bool live = false;
|
|
unsigned viewerCount = 0;
|
|
QString title;
|
|
QString game;
|
|
QString uptime;
|
|
};
|
|
|
|
~TwitchChannel() final;
|
|
|
|
void reloadChannelEmotes();
|
|
|
|
bool isEmpty() const override;
|
|
bool canSendMessage() const override;
|
|
void sendMessage(const QString &message) override;
|
|
|
|
bool isMod() const override;
|
|
void setMod(bool value);
|
|
bool isBroadcaster();
|
|
bool hasModRights();
|
|
|
|
void addRecentChatter(const std::shared_ptr<messages::Message> &message) final;
|
|
|
|
const std::shared_ptr<chatterino::util::EmoteMap> bttvChannelEmotes;
|
|
const std::shared_ptr<chatterino::util::EmoteMap> ffzChannelEmotes;
|
|
|
|
const QString subscriptionURL;
|
|
const QString channelURL;
|
|
const QString popoutPlayerURL;
|
|
|
|
void setRoomID(const QString &_roomID);
|
|
boost::signals2::signal<void()> roomIDchanged;
|
|
boost::signals2::signal<void()> onlineStatusChanged;
|
|
|
|
pajlada::Signals::NoArgBoltSignal fetchMessages;
|
|
boost::signals2::signal<void()> userStateChanged;
|
|
|
|
QString roomID;
|
|
|
|
StreamStatus GetStreamStatus() const
|
|
{
|
|
std::lock_guard<std::mutex> lock(this->streamStatusMutex);
|
|
return this->streamStatus;
|
|
}
|
|
|
|
struct NameOptions {
|
|
QString displayName;
|
|
QString localizedName;
|
|
};
|
|
|
|
bool IsLive() const
|
|
{
|
|
std::lock_guard<std::mutex> lock(this->streamStatusMutex);
|
|
return this->streamStatus.live;
|
|
}
|
|
|
|
private:
|
|
explicit TwitchChannel(const QString &channelName, Communi::IrcConnection *readConnection);
|
|
|
|
void setLive(bool newLiveStatus);
|
|
void refreshLiveStatus();
|
|
|
|
mutable std::mutex streamStatusMutex;
|
|
StreamStatus streamStatus;
|
|
|
|
void fetchRecentMessages();
|
|
|
|
boost::signals2::connection connectedConnection;
|
|
|
|
bool mod;
|
|
QByteArray messageSuffix;
|
|
QString lastSentMessage;
|
|
|
|
Communi::IrcConnection *readConnecetion;
|
|
|
|
friend class TwitchServer;
|
|
|
|
// Key = login name
|
|
std::map<QString, NameOptions> recentChatters;
|
|
std::mutex recentChattersMutex;
|
|
};
|
|
|
|
} // namespace twitch
|
|
} // namespace providers
|
|
} // namespace chatterino
|