#include "twitchserver.hpp" #include "application.hpp" #include "controllers/accounts/accountcontroller.hpp" #include "controllers/highlights/highlightcontroller.hpp" #include "providers/twitch/ircmessagehandler.hpp" #include "providers/twitch/twitchaccount.hpp" #include "providers/twitch/twitchhelpers.hpp" #include "providers/twitch/twitchmessagebuilder.hpp" #include "util/posttothread.hpp" #include using namespace Communi; using namespace chatterino::singletons; namespace chatterino { namespace providers { namespace twitch { TwitchServer::TwitchServer() : whispersChannel(new Channel("/whispers", Channel::TwitchWhispers)) , mentionsChannel(new Channel("/mentions", Channel::TwitchMentions)) , watchingChannel(Channel::getEmpty(), Channel::TwitchWatching) { qDebug() << "init TwitchServer"; } void TwitchServer::initialize() { getApp()->accounts->twitch.currentUserChanged.connect( [this]() { util::postToThread([this] { this->connect(); }); }); } void TwitchServer::initializeConnection(IrcConnection *connection, bool isRead, bool isWrite) { std::shared_ptr account = getApp()->accounts->twitch.getCurrent(); qDebug() << "logging in as" << account->getUserName(); QString username = account->getUserName(); // QString oauthClient = account->getOAuthClient(); QString oauthToken = account->getOAuthToken(); if (!oauthToken.startsWith("oauth:")) { oauthToken.prepend("oauth:"); } connection->setUserName(username); connection->setNickName(username); connection->setRealName(username); if (!account->isAnon()) { connection->setPassword(oauthToken); // fourtf: ignored users // this->refreshIgnoredUsers(username, oauthClient, oauthToken); } connection->sendCommand(IrcCommand::createCapability("REQ", "twitch.tv/membership")); connection->sendCommand(IrcCommand::createCapability("REQ", "twitch.tv/commands")); connection->sendCommand(IrcCommand::createCapability("REQ", "twitch.tv/tags")); connection->setHost("irc.chat.twitch.tv"); connection->setPort(6667); } std::shared_ptr TwitchServer::createChannel(const QString &channelName) { TwitchChannel *channel = new TwitchChannel(channelName, this->getReadConnection()); channel->sendMessageSignal.connect( [this](auto chan, auto msg) { this->sendMessage(chan, msg); }); return std::shared_ptr(channel); } void TwitchServer::privateMessageReceived(IrcPrivateMessage *message) { IrcMessageHandler::getInstance().handlePrivMessage(message, *this); } void TwitchServer::messageReceived(IrcMessage *message) { // this->readConnection if (message->type() == IrcMessage::Type::Private) { // We already have a handler for private messages return; } const QString &command = message->command(); auto &handler = IrcMessageHandler::getInstance(); if (command == "ROOMSTATE") { handler.handleRoomStateMessage(message); } else if (command == "CLEARCHAT") { handler.handleClearChatMessage(message); } else if (command == "USERSTATE") { handler.handleUserStateMessage(message); } else if (command == "WHISPER") { handler.handleWhisperMessage(message); } else if (command == "USERNOTICE") { handler.handleUserNoticeMessage(message, *this); } else if (command == "MODE") { handler.handleModeMessage(message); } else if (command == "NOTICE") { handler.handleNoticeMessage(static_cast(message)); } else if (command == "JOIN") { handler.handleJoinMessage(message); } else if (command == "PART") { handler.handlePartMessage(message); } } void TwitchServer::writeConnectionMessageReceived(IrcMessage *message) { switch (message->type()) { case IrcMessage::Type::Notice: { IrcMessageHandler::getInstance().handleWriteConnectionNoticeMessage( static_cast(message)); } break; } } std::shared_ptr TwitchServer::getCustomChannel(const QString &channelName) { if (channelName == "/whispers") { return whispersChannel; } if (channelName == "/mentions") { return mentionsChannel; } return nullptr; } void TwitchServer::forEachChannelAndSpecialChannels(std::function func) { std::lock_guard lock(this->channelMutex); for (std::weak_ptr &weak : this->channels) { std::shared_ptr chan = weak.lock(); if (!chan) { continue; } func(chan); } func(this->whispersChannel); func(this->mentionsChannel); } std::shared_ptr TwitchServer::getChannelOrEmptyByID(const QString &channelID) { { std::lock_guard lock(this->channelMutex); for (const auto &weakChannel : this->channels) { auto channel = weakChannel.lock(); if (!channel) { continue; } auto twitchChannel = std::dynamic_pointer_cast(channel); if (!twitchChannel) { continue; } if (twitchChannel->roomID == channelID) { return twitchChannel; } } } return Channel::getEmpty(); } // QString TwitchServer::getLastWhisperedPerson() const //{ // std::lock_guard guard(this->lastWhisperedPersonMutex); // return this->lastWhisperedPerson; //} // void TwitchServer::setLastWhisperedPerson(const QString &person) //{ // std::lock_guard guard(this->lastWhisperedPersonMutex); // this->lastWhisperedPerson = person; //} QString TwitchServer::cleanChannelName(const QString &dirtyChannelName) { return dirtyChannelName.toLower(); } } // namespace twitch } // namespace providers } // namespace chatterino