X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fcoreuserinputhandler.cpp;h=a5a3d875afea09f24baec9f8eaea4cc9af955c53;hb=863b09125c3bed80b3dfa65eacf587d8bcd3e1e3;hp=b8d92e2ed035ce6b7f01792c0ecc52683fce8c80;hpb=5139e540697cee375b2729106a6789b3dfe12840;p=quassel.git diff --git a/src/core/coreuserinputhandler.cpp b/src/core/coreuserinputhandler.cpp index b8d92e2e..a5a3d875 100644 --- a/src/core/coreuserinputhandler.cpp +++ b/src/core/coreuserinputhandler.cpp @@ -169,23 +169,54 @@ void CoreUserInputHandler::handleJoin(const BufferInfo &bufferInfo, const QStrin QString sane_msg = msg; sane_msg.replace(QRegExp(", +"), ","); QStringList params = sane_msg.trimmed().split(" "); + QStringList chans = params[0].split(",", QString::SkipEmptyParts); QStringList keys; + if(params.count() > 1) + keys = params[1].split(","); + int i; for(i = 0; i < chans.count(); i++) { if(!network()->isChannelName(chans[i])) chans[i].prepend('#'); + + if(i < keys.count()) { + network()->addChannelKey(chans[i], keys[i]); + } else { + network()->removeChannelKey(chans[i]); + } } - params[0] = chans.join(","); - if(params.count() > 1) keys = params[1].split(","); - emit putCmd("JOIN", serverEncode(params)); // FIXME handle messages longer than 512 bytes! + + static const char *cmd = "JOIN"; i = 0; - for(; i < keys.count(); i++) { - if(i >= chans.count()) break; - network()->addChannelKey(chans[i], keys[i]); - } - for(; i < chans.count(); i++) { - network()->removeChannelKey(chans[i]); + QStringList joinChans, joinKeys; + int slicesize = chans.count(); + QList encodedParams; + + // go through all to-be-joined channels and (re)build the join list + while(i < chans.count()) { + joinChans.append(chans.at(i)); + if(i < keys.count()) + joinKeys.append(keys.at(i)); + + // if the channel list we built so far either contains all requested channels or exceeds + // the desired amount of channels in this slice, try to send what we have so far + if(++i == chans.count() || joinChans.count() >= slicesize) { + params.clear(); + params.append(joinChans.join(",")); + params.append(joinKeys.join(",")); + encodedParams = serverEncode(params); + // check if it fits in one command + if(lastParamOverrun(cmd, encodedParams) == 0) { + emit putCmd(cmd, encodedParams); + } else if(slicesize > 1) { + // back to start of slice, try again with half the amount of channels + i -= slicesize; + slicesize /= 2; + } + joinChans.clear(); + joinKeys.clear(); + } } } @@ -413,7 +444,7 @@ void CoreUserInputHandler::putPrivmsg(const QByteArray &target, const QByteArray // returns 0 if the message will not be chopped by the irc server or number of chopped bytes if message is too long int CoreUserInputHandler::lastParamOverrun(const QString &cmd, const QList ¶ms) { - // the server will pass our message trunkated to 512 bytes including CRLF with the following format: + // the server will pass our message truncated to 512 bytes including CRLF with the following format: // ":prefix COMMAND param0 param1 :lastparam" // where prefix = "nickname!user@host" // that means that the last message can be as long as: