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

46 lines
1.3 KiB
C++
Raw Normal View History

2018-02-05 15:11:50 +01:00
#pragma once
#include "providers/irc/abstractircserver.hpp"
#include "providers/twitch/twitchaccount.hpp"
#include "providers/twitch/twitchchannel.hpp"
#include <memory>
2018-02-05 15:11:50 +01:00
namespace chatterino {
namespace providers {
namespace twitch {
2018-02-05 15:11:50 +01:00
class TwitchServer final : public irc::AbstractIrcServer
{
2018-04-30 20:35:01 +02:00
public:
2018-02-05 15:11:50 +01:00
TwitchServer();
void initialize();
2018-02-05 15:11:50 +01:00
// fourtf: ugh
void forEachChannelAndSpecialChannels(std::function<void(ChannelPtr)> func);
std::shared_ptr<Channel> getChannelOrEmptyByID(const QString &channelID);
2018-02-05 15:11:50 +01:00
const ChannelPtr whispersChannel;
const ChannelPtr mentionsChannel;
2018-04-20 19:54:45 +02:00
IndirectChannel watchingChannel;
2018-02-05 15:11:50 +01:00
protected:
2018-04-01 16:43:30 +02:00
void initializeConnection(Communi::IrcConnection *connection, bool isRead,
bool isWrite) override;
std::shared_ptr<Channel> createChannel(const QString &channelName) override;
2018-02-05 15:11:50 +01:00
2018-04-01 16:43:30 +02:00
void privateMessageReceived(Communi::IrcPrivateMessage *message) override;
void messageReceived(Communi::IrcMessage *message) override;
void writeConnectionMessageReceived(Communi::IrcMessage *message) override;
2018-02-05 15:11:50 +01:00
2018-04-01 16:43:30 +02:00
std::shared_ptr<Channel> getCustomChannel(const QString &channelname) override;
QString cleanChannelName(const QString &dirtyChannelName) override;
2018-02-05 15:11:50 +01:00
};
2018-02-05 15:11:50 +01:00
} // namespace twitch
} // namespace providers
} // namespace chatterino