X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fcoresessioneventprocessor.cpp;h=fa5fc36131d56b7d1b0b1b3c2c8778d133a2370e;hb=0063256bd1892d2bf3edc9acc597e9ab90152148;hp=69d75695e061603fc91bb8c16606acab95bf5823;hpb=b53db87e90676f24e454efa57dd2cbea745d53c5;p=quassel.git diff --git a/src/core/coresessioneventprocessor.cpp b/src/core/coresessioneventprocessor.cpp index 69d75695..fa5fc361 100644 --- a/src/core/coresessioneventprocessor.cpp +++ b/src/core/coresessioneventprocessor.cpp @@ -175,14 +175,20 @@ void CoreSessionEventProcessor::processIrcEventCap(IrcEvent *e) availableCaps = e->params().at(2).split(' '); } // Store what capabilities are available - QStringList availableCapPair; + QString availableCapName, availableCapValue; for (int i = 0; i < availableCaps.count(); ++i) { // Capability may include values, e.g. CAP * LS :multi-prefix sasl=EXTERNAL - availableCapPair = availableCaps[i].trimmed().split('='); - if(availableCapPair.count() >= 2) { - coreNet->addCap(availableCapPair.at(0).trimmed().toLower(), availableCapPair.at(1).trimmed()); - } else { - coreNet->addCap(availableCapPair.at(0).trimmed().toLower()); + // Capability name comes before the first '='. If no '=' exists, this gets the + // whole string instead. + availableCapName = availableCaps[i].section('=', 0, 0).trimmed(); + // Some capabilities include multiple key=value pairs in the listing, + // e.g. "sts=duration=31536000,port=6697" + // Include everything after the first equal sign as part of the value. If no '=' + // exists, this gets an empty string. + availableCapValue = availableCaps[i].section('=', 1).trimmed(); + // Only add the capability if it's non-empty + if (!availableCapName.isEmpty()) { + coreNet->addCap(availableCapName, availableCapValue); } } @@ -242,15 +248,9 @@ void CoreSessionEventProcessor::processIrcEventAccount(IrcEvent *e) IrcUser *ircuser = e->network()->updateNickFromMask(e->prefix()); if (ircuser) { - QString newAccount = e->params().at(0); - // WHOX uses '0' to indicate logged-out, account-notify uses '*' - if (newAccount != "*") { - // Account logged in, set account name - ircuser->setAccount(newAccount); - } else { - // Account logged out, set account name to logged-out - ircuser->setAccount("*"); - } + // WHOX uses '0' to indicate logged-out, account-notify and extended-join uses '*'. + // As '*' is used internally to represent logged-out, no need to handle that differently. + ircuser->setAccount(e->params().at(0)); } else { qDebug() << "Received account-notify data for unknown user" << e->prefix(); } @@ -259,13 +259,17 @@ void CoreSessionEventProcessor::processIrcEventAccount(IrcEvent *e) /* IRCv3 away-notify - ":nick!user@host AWAY [:message]" */ void CoreSessionEventProcessor::processIrcEventAway(IrcEvent *e) { - if (!checkParamCount(e, 2)) + if (!checkParamCount(e, 1)) return; + // Don't use checkParamCount(e, 2) since the message is optional. Some servers respond in a way + // that it counts as two parameters, but we shouldn't rely on that. // Nick is sent as part of parameters in order to split user/server decoding IrcUser *ircuser = e->network()->ircUser(e->params().at(0)); if (ircuser) { - if (!e->params().at(1).isEmpty()) { + // If two parameters are sent -and- the second parameter isn't empty, then user is away. + // Otherwise, mark them as not away. + if (e->params().count() >= 2 && !e->params().at(1).isEmpty()) { ircuser->setAway(true); ircuser->setAwayMessage(e->params().at(1)); } else { @@ -324,7 +328,9 @@ void CoreSessionEventProcessor::processIrcEventJoin(IrcEvent *e) // If logged in, :nick!user@host JOIN #channelname accountname :Real Name // If logged out, :nick!user@host JOIN #channelname * :Real Name // See: http://ircv3.net/specs/extensions/extended-join-3.1.html - // FIXME Keep track of authed user account, requires adding support to ircuser.h/cpp + // WHOX uses '0' to indicate logged-out, account-notify and extended-join uses '*'. + // As '*' is used internally to represent logged-out, no need to handle that differently. + ircuser->setAccount(e->params()[1]); // Update the user's real name, too ircuser->setRealName(e->params()[2]); } @@ -882,10 +888,12 @@ void CoreSessionEventProcessor::processIrcEvent324(IrcEvent *e) } -/* RPL_WHOISACCOUNT: " :is authed as */ +/* RPL_WHOISACCOUNT - " :is authed as" */ void CoreSessionEventProcessor::processIrcEvent330(IrcEvent *e) { - if (!checkParamCount(e, 3)) + // Though the ":is authed as" remark should always be there, we should handle cases when it's + // not included, too. + if (!checkParamCount(e, 2)) return; IrcUser *ircuser = e->network()->ircUser(e->params().at(0)); @@ -1030,7 +1038,7 @@ void CoreSessionEventProcessor::processIrcEvent354(IrcEvent *e) // Don't use .section(" ", 1) with WHOX replies, for there's no hopcount to trim out // As part of IRCv3 account-notify, check account name - // WHOX uses '0' to indicate logged-out, account-notify uses '*' + // WHOX uses '0' to indicate logged-out, account-notify and extended-join uses '*'. QString newAccount = e->params()[7]; if (newAccount != "0") { // Account logged in, set account name @@ -1104,7 +1112,9 @@ void CoreSessionEventProcessor::processWhoInformation (Network *net, const QStri void CoreSessionEventProcessor::processIrcEvent403(IrcEventNumeric *e) { // If this is the result of an AutoWho, hide it. It's confusing to show to the user. - if (!checkParamCount(e, 2)) + // Though the ":No such channel" remark should always be there, we should handle cases when it's + // not included, too. + if (!checkParamCount(e, 1)) return; QString channelOrNick = e->params()[0];