Event backend porting, mostly WHOIS-related stuff
[quassel.git] / src / core / coresessioneventprocessor.cpp
index 7a44fd0..3abae90 100644 (file)
@@ -23,6 +23,7 @@
 #include "corenetwork.h"
 #include "coresession.h"
 #include "ircevent.h"
+#include "ircuser.h"
 
 CoreSessionEventProcessor::CoreSessionEventProcessor(CoreSession *session)
   : QObject(session),
@@ -170,6 +171,157 @@ void CoreSessionEventProcessor::processIrcEvent001(IrcEvent *e) {
   e->network()->setMyNick(nickFromMask(myhostmask));
 }
 
+/* RPL_UMODEIS - "<user_modes> [<user_mode_params>]" */
+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)
+              "<nick> :<away message>"
+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 - "<nick> :<away message>" */
+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 - "<user> 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 - "<user> 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 - "<nick> <user> <host> * :<real name>" */
+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 -  "<nick> <server> :<server info>" */
+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 - "<nick> :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: "<name> :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 - "<nick> <integer> :seconds idle"
+   (real life: "<nick> <integer> <integer> :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);
+  }
+}
+
+
+
 /* template
 void CoreSessionEventProcessor::processIrcEvent(IrcEvent *e) {
   if(!checkParamCount(e, 1))