X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoresessioneventprocessor.cpp;h=3b5ad27e5469e3a157d3b5fef56a668438c37227;hp=3abae9027284bbe0dd26222cb7d661d92a24ac22;hb=5ff4265bbd3a682a6d6542480760eaf4a2b85d77;hpb=615c5621f63360ef11c9cc3519c0462d8b5ec85b diff --git a/src/core/coresessioneventprocessor.cpp b/src/core/coresessioneventprocessor.cpp index 3abae902..3b5ad27e 100644 --- a/src/core/coresessioneventprocessor.cpp +++ b/src/core/coresessioneventprocessor.cpp @@ -20,6 +20,7 @@ #include "coresessioneventprocessor.h" +#include "coreirclisthelper.h" #include "corenetwork.h" #include "coresession.h" #include "ircevent.h" @@ -171,6 +172,23 @@ void CoreSessionEventProcessor::processIrcEvent001(IrcEvent *e) { e->network()->setMyNick(nickFromMask(myhostmask)); } +/* RPL_ISUPPORT */ +// TODO Complete 005 handling, also use sensible defaults for non-sent stuff +void CoreSessionEventProcessor::processIrcEvent005(IrcEvent *e) { + if(!checkParamCount(e, 1)) + return; + + QString key, value; + for(int i = 0; i < e->params().count() - 1; i++) { + QString key = e->params()[i].section("=", 0, 0); + QString value = e->params()[i].section("=", 1); + e->network()->addSupport(key, value); + } + + /* determine our prefixes here to get an accurate result */ + e->network()->determinePrefixes(); +} + /* RPL_UMODEIS - " []" */ void CoreSessionEventProcessor::processIrcEvent221(IrcEvent *) { // TODO: save information in network object @@ -320,7 +338,112 @@ void CoreSessionEventProcessor::processIrcEvent317(IrcEvent *e) { } } +/* RPL_LIST - " <# visible> :" */ +void CoreSessionEventProcessor::processIrcEvent322(IrcEvent *e) { + if(!checkParamCount(e, 1)) + return; + + QString channelName; + quint32 userCount = 0; + QString topic; + + switch(e->params().count()) { + case 3: + topic = e->params()[2]; + case 2: + userCount = e->params()[1].toUInt(); + case 1: + channelName = e->params()[0]; + default: + break; + } + if(coreSession()->ircListHelper()->addChannel(e->networkId(), channelName, userCount, topic)) + e->stop(); // consumed by IrcListHelper, so don't further process/show this event +} + +/* RPL_LISTEND ":End of LIST" */ +void CoreSessionEventProcessor::processIrcEvent323(IrcEvent *e) { + if(!checkParamCount(e, 1)) + return; + + if(coreSession()->ircListHelper()->endOfChannelList(e->networkId())) + e->stop(); // consumed by IrcListHelper, so don't further process/show this event +} + +/* RPL_NOTOPIC */ +void CoreSessionEventProcessor::processIrcEvent331(IrcEvent *e) { + if(!checkParamCount(e, 1)) + return; + + IrcChannel *chan = e->network()->ircChannel(e->params()[0]); + if(chan) + chan->setTopic(QString()); +} + +/* RPL_TOPIC */ +void CoreSessionEventProcessor::processIrcEvent332(IrcEvent *e) { + if(!checkParamCount(e, 2)) + return; + + IrcChannel *chan = e->network()->ircChannel(e->params()[0]); + if(chan) + chan->setTopic(e->params()[1]); +} + +/* RPL_WHOREPLY: " + ( "H" / "G" > ["*"] [ ( "@" / "+" ) ] : " */ +void CoreSessionEventProcessor::processIrcEvent352(IrcEvent *e) { + if(!checkParamCount(e, 6)) + return; + + QString channel = e->params()[0]; + IrcUser *ircuser = e->network()->ircUser(e->params()[4]); + if(ircuser) { + ircuser->setUser(e->params()[1]); + ircuser->setHost(e->params()[2]); + + bool away = e->params()[5].startsWith("G"); + ircuser->setAway(away); + ircuser->setServer(e->params()[3]); + ircuser->setRealName(e->params().last().section(" ", 1)); + } + + if(coreNetwork(e)->isAutoWhoInProgress(channel)) + e->setFlag(EventManager::Silent); +} + +/* RPL_NAMREPLY */ +void CoreSessionEventProcessor::processIrcEvent353(IrcEvent *e) { + if(!checkParamCount(e, 3)) + return; + + // param[0] is either "=", "*" or "@" indicating a public, private or secret channel + // we don't use this information at the time beeing + QString channelname = e->params()[1]; + + IrcChannel *channel = e->network()->ircChannel(channelname); + if(!channel) { + qWarning() << Q_FUNC_INFO << "Received unknown target channel:" << channelname; + return; + } + + QStringList nicks; + QStringList modes; + foreach(QString nick, e->params()[2].split(' ')) { + QString mode; + + if(e->network()->prefixes().contains(nick[0])) { + mode = e->network()->prefixToMode(nick[0]); + nick = nick.mid(1); + } + + nicks << nick; + modes << mode; + } + + channel->joinIrcUsers(nicks, modes); +} /* template void CoreSessionEventProcessor::processIrcEvent(IrcEvent *e) {