X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoresessioneventprocessor.cpp;h=cb116919b735e546b6fda1b854c476e5a1ce78bc;hp=7a44fd0ffad83f56873c8d3d07c2811d4aed1064;hb=3ec6f311bb4fff1540a01c26069300ad17f6d134;hpb=46984aca05b2d5f8dddd0c8739e60a1753078123 diff --git a/src/core/coresessioneventprocessor.cpp b/src/core/coresessioneventprocessor.cpp index 7a44fd0f..cb116919 100644 --- a/src/core/coresessioneventprocessor.cpp +++ b/src/core/coresessioneventprocessor.cpp @@ -20,9 +20,12 @@ #include "coresessioneventprocessor.h" +#include "coreirclisthelper.h" #include "corenetwork.h" #include "coresession.h" #include "ircevent.h" +#include "ircuser.h" +#include "messageevent.h" CoreSessionEventProcessor::CoreSessionEventProcessor(CoreSession *session) : QObject(session), @@ -45,6 +48,28 @@ bool CoreSessionEventProcessor::checkParamCount(IrcEvent *e, int minParams) { return true; } +void CoreSessionEventProcessor::tryNextNick(NetworkEvent *e, const QString &errnick, bool erroneus) { + QStringList desiredNicks = coreSession()->identity(e->network()->identity())->nicks(); + int nextNickIdx = desiredNicks.indexOf(errnick) + 1; + QString nextNick; + if(nextNickIdx > 0 && desiredNicks.size() > nextNickIdx) { + nextNick = desiredNicks[nextNickIdx]; + } else { + if(erroneus) { + // FIXME Make this an ErrorEvent or something like that, so it's translated in the client + MessageEvent *msgEvent = new MessageEvent(Message::Error, e->network(), + tr("No free and valid nicks in nicklist found. use: /nick to continue"), + QString(), QString(), Message::None, e->timestamp()); + coreSession()->eventManager()->sendEvent(msgEvent); + return; + } else { + nextNick = errnick + "_"; + } + } + // FIXME Use a proper output event for this + coreNetwork(e)->putRawLine("NICK " + coreNetwork(e)->encodeServerString(nextNick)); +} + void CoreSessionEventProcessor::processIrcEventNumeric(IrcEventNumeric *e) { switch(e->number()) { @@ -170,6 +195,327 @@ 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 +} + +/* RPL_STATSCONN - "Highest connection cout: 8000 (7999 clients)" */ +void CoreSessionEventProcessor::processIrcEvent250(IrcEvent *) { + // TODO: save information in network object +} + +/* RPL_LOCALUSERS - "Current local user: 5024 Max: 7999 */ +void CoreSessionEventProcessor::processIrcEvent265(IrcEvent *) { + // TODO: save information in network object +} + +/* RPL_GLOBALUSERS - "Current global users: 46093 Max: 47650" */ +void CoreSessionEventProcessor::processIrcEvent266(IrcEvent *) { + // TODO: save information in network object +} + +/* +WHOIS-Message: + Replies 311 - 313, 317 - 319 are all replies generated in response to a WHOIS message. + and 301 (RPL_AWAY) + " :" +WHO-Message: + Replies 352 and 315 paired are used to answer a WHO message. + +WHOWAS-Message: + Replies 314 and 369 are responses to a WHOWAS message. + +*/ + +/* RPL_AWAY - " :" */ +void CoreSessionEventProcessor::processIrcEvent301(IrcEvent *e) { + if(!checkParamCount(e, 2)) + return; + + IrcUser *ircuser = e->network()->ircUser(e->params().at(0)); + if(ircuser) { + ircuser->setAway(true); + ircuser->setAwayMessage(e->params().at(1)); + //ircuser->setLastAwayMessage(now); + } +} + +/* RPL_UNAWAY - ":You are no longer marked as being away" */ +void CoreSessionEventProcessor::processIrcEvent305(IrcEvent *e) { + IrcUser *me = e->network()->me(); + if(me) + me->setAway(false); + + if(e->network()->autoAwayActive()) { + e->network()->setAutoAwayActive(false); + e->setFlag(EventManager::Silent); + } +} + +/* RPL_NOWAWAY - ":You have been marked as being away" */ +void CoreSessionEventProcessor::processIrcEvent306(IrcEvent *e) { + IrcUser *me = e->network()->me(); + if(me) + me->setAway(true); +} + +/* RPL_WHOISSERVICE - " is registered nick" */ +void CoreSessionEventProcessor::processIrcEvent307(IrcEvent *e) { + if(!checkParamCount(e, 1)) + return; + + IrcUser *ircuser = e->network()->ircUser(e->params().at(0)); + if(ircuser) + ircuser->setWhoisServiceReply(e->params().join(" ")); +} + +/* RPL_SUSERHOST - " is available for help." */ +void CoreSessionEventProcessor::processIrcEvent310(IrcEvent *e) { + if(!checkParamCount(e, 1)) + return; + + IrcUser *ircuser = e->network()->ircUser(e->params().at(0)); + if(ircuser) + ircuser->setSuserHost(e->params().join(" ")); +} + +/* RPL_WHOISUSER - " * :" */ +void CoreSessionEventProcessor::processIrcEvent311(IrcEvent *e) { + if(!checkParamCount(e, 3)) + return; + + IrcUser *ircuser = e->network()->ircUser(e->params().at(0)); + if(ircuser) { + ircuser->setUser(e->params().at(1)); + ircuser->setHost(e->params().at(2)); + ircuser->setRealName(e->params().last()); + } +} + +/* RPL_WHOISSERVER - " :" */ +void CoreSessionEventProcessor::processIrcEvent312(IrcEvent *e) { + if(!checkParamCount(e, 2)) + return; + + IrcUser *ircuser = e->network()->ircUser(e->params().at(0)); + if(ircuser) + ircuser->setServer(e->params().at(1)); +} + +/* RPL_WHOISOPERATOR - " :is an IRC operator" */ +void CoreSessionEventProcessor::processIrcEvent313(IrcEvent *e) { + if(!checkParamCount(e, 1)) + return; + + IrcUser *ircuser = e->network()->ircUser(e->params().at(0)); + if(ircuser) + ircuser->setIrcOperator(e->params().last()); +} + +/* RPL_ENDOFWHO: " :End of WHO list" */ +void CoreSessionEventProcessor::processIrcEvent315(IrcEvent *e) { + if(!checkParamCount(e, 1)) + return; + + if(coreNetwork(e)->setAutoWhoDone(e->params()[0])) + e->setFlag(EventManager::Silent); +} + +/* RPL_WHOISIDLE - " :seconds idle" + (real life: " :seconds idle, signon time) */ +void CoreSessionEventProcessor::processIrcEvent317(IrcEvent *e) { + if(!checkParamCount(e, 2)) + return; + + QDateTime loginTime; + + int idleSecs = e->params()[1].toInt(); + if(e->params().count() > 3) { // if we have more then 3 params we have the above mentioned "real life" situation + int logintime = e->params()[2].toInt(); + loginTime = QDateTime::fromTime_t(logintime); + } + + IrcUser *ircuser = e->network()->ircUser(e->params()[0]); + if(ircuser) { + ircuser->setIdleTime(e->timestamp().addSecs(-idleSecs)); + if(loginTime.isValid()) + ircuser->setLoginTime(loginTime); + } +} + +/* 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); +} + +/* ERR_ERRONEUSNICKNAME */ +void CoreSessionEventProcessor::processIrcEvent432(IrcEventNumeric *e) { + QString errnick; + if(e->params().count() < 2) { + // handle unreal-ircd bug, where unreal ircd doesnt supply a TARGET in ERR_ERRONEUSNICKNAME during registration phase: + // nick @@@ + // :irc.scortum.moep.net 432 @@@ :Erroneous Nickname: Illegal characters + // correct server reply: + // :irc.scortum.moep.net 432 * @@@ :Erroneous Nickname: Illegal characters + e->params().prepend(e->target()); + e->setTarget("*"); + } + errnick = e->params()[0]; + + tryNextNick(e, errnick, true /* erroneus */); +} + +/* ERR_NICKNAMEINUSE */ +void CoreSessionEventProcessor::processIrcEvent433(IrcEventNumeric *e) { + if(!checkParamCount(e, 1)) + return; + + QString errnick = e->params().first(); + + // if there is a problem while connecting to the server -> we handle it + // but only if our connection has not been finished yet... + if(!e->network()->currentServer().isEmpty()) + return; + + tryNextNick(e, errnick); +} + +/* ERR_UNAVAILRESOURCE */ +void CoreSessionEventProcessor::processIrcEvent437(IrcEventNumeric *e) { + if(!checkParamCount(e, 1)) + return; + + QString errnick = e->params().first(); + + // if there is a problem while connecting to the server -> we handle it + // but only if our connection has not been finished yet... + if(!e->network()->currentServer().isEmpty()) + return; + + if(!e->network()->isChannelName(errnick)) + tryNextNick(e, errnick); +} + /* template void CoreSessionEventProcessor::processIrcEvent(IrcEvent *e) { if(!checkParamCount(e, 1)) @@ -177,3 +523,4 @@ void CoreSessionEventProcessor::processIrcEvent(IrcEvent *e) { } */ +