]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_spanningtree.cpp
Added TOPIC handler stub
[user/henk/code/inspircd.git] / src / modules / m_spanningtree.cpp
index 367e5290d2580d42e58a2005799b07f1b02463ce..63f9a487f8484e28922b18815b861399490c5ec1 100644 (file)
@@ -45,7 +45,10 @@ using namespace std;
 enum ServerState { LISTENER, CONNECTING, WAIT_AUTH_1, WAIT_AUTH_2, CONNECTED };
 
 typedef nspace::hash_map<std::string, userrec*, nspace::hash<string>, irc::StrHashComp> user_hash;
+typedef nspace::hash_map<std::string, chanrec*, nspace::hash<string>, irc::StrHashComp> chan_hash;
+
 extern user_hash clientlist;
+extern chan_hash chanlist;
 
 class TreeServer;
 class TreeSocket;
@@ -53,6 +56,7 @@ class TreeSocket;
 bool DoOneToOne(std::string prefix, std::string command, std::deque<std::string> params, std::string target);
 bool DoOneToAllButSender(std::string prefix, std::string command, std::deque<std::string> params, std::string omit);
 bool DoOneToMany(std::string prefix, std::string command, std::deque<std::string> params);
+bool DoOneToAllButSenderRaw(std::string data,std::string omit);
 
 class TreeServer
 {
@@ -428,6 +432,23 @@ class TreeSocket : public InspSocket
                }
        }
 
+       bool ForceMode(std::string source, std::deque<std::string> params)
+       {
+               userrec* who = new userrec;
+               who->fd = FD_MAGIC_NUMBER;
+               if (params.size() < 2)
+                       return true;
+               char* modelist[255];
+               for (unsigned int q = 0; q < params.size(); q++)
+               {
+                       modelist[q] = (char*)params[q].c_str();
+               }
+               Srv->SendMode(modelist,params.size(),who);
+               DoOneToAllButSender(source,"FMODE",params,source);
+               delete who;
+               return true;
+       }
+
        bool ForceJoin(std::string source, std::deque<std::string> params)
        {
                if (params.size() < 1)
@@ -489,6 +510,12 @@ class TreeSocket : public InspSocket
                std::string ident = params[4];
                time_t age = atoi(params[0].c_str());
                std::string modes = params[5];
+               if (*(modes.c_str()) == '+')
+               {
+                       char* m = (char*)modes.c_str();
+                       m++;
+                       modes = m;
+               }
                std::string ip = params[6];
                std::string gecos = params[7];
                char* tempnick = (char*)nick.c_str();
@@ -519,10 +546,31 @@ class TreeSocket : public InspSocket
                        clientlist[tempnick]->chans[i].channel = NULL;
                        clientlist[tempnick]->chans[i].uc_modes = 0;
                }
+               params[7] = ":" + params[7];
                DoOneToAllButSender(source,"NICK",params,source);
                return true;
        }
 
+       void SendChannelModes(TreeServer* Current)
+       {
+               char data[MAXBUF];
+               for (chan_hash::iterator c = chanlist.begin(); c != chanlist.end(); c++)
+               {
+                       snprintf(data,MAXBUF,":%s FMODE %s +%s",Srv->GetServerName().c_str(),c->second->name,chanmodes(c->second));
+                       this->WriteLine(data);
+                       if (*c->second->topic)
+                       {
+                               snprintf(data,MAXBUF,":%s FTOPIC %s %lu %s :%s",Srv->GetServerName().c_str(),c->second->name,(unsigned long)c->second->topicset,c->second->setby,c->second->topic);
+                               this->WriteLine(data);
+                       }
+                       for (BanList::iterator b = c->second->bans.begin(); b != c->second->bans.end(); b++)
+                       {
+                               snprintf(data,MAXBUF,":%s FMODE %s +b %s",Srv->GetServerName().c_str(),c->second->name,b->data);
+                               this->WriteLine(data);
+                       }
+               }
+       }
+
        // send all users and their channels
        void SendUsers(TreeServer* Current)
        {
@@ -553,6 +601,7 @@ class TreeSocket : public InspSocket
                // Send users and their channels
                this->SendUsers(s);
                // TODO: Send everything else (channel modes etc)
+               this->SendChannelModes(s);
                this->WriteLine("ENDBURST");
        }
 
@@ -603,6 +652,46 @@ class TreeSocket : public InspSocket
                return false;
        }
 
+       bool OperType(std::string prefix, std::deque<std::string> params)
+       {
+               if (params.size() != 1)
+                       return true;
+               std::string opertype = params[0];
+               userrec* u = Srv->FindNick(prefix);
+               if (u)
+               {
+                       strlcpy(u->oper,opertype.c_str(),NICKMAX);
+                       if (!strchr(u->modes,'o'))
+                       {
+                               strcat(u->modes,"o");
+                       }
+                       DoOneToAllButSender(u->server,"OPERTYPE",params,u->server);
+               }
+               return true;
+       }
+
+       bool RemoteKill(std::string prefix, std::deque<std::string> params)
+       {
+               if (params.size() != 2)
+                       return true;
+               std::string nick = params[0];
+               std::string reason = params[1];
+               userrec* u = Srv->FindNick(prefix);
+               userrec* who = Srv->FindNick(nick);
+               if (who)
+               {
+                       std::string sourceserv = prefix;
+                       if (u)
+                       {
+                               sourceserv = u->server;
+                       }
+                       params[1] = ":" + params[1];
+                       DoOneToAllButSender(prefix,"KILL",params,sourceserv);
+                       Srv->QuitUser(who,reason);
+               }
+               return true;
+       }
+
        bool RemoteServer(std::string prefix, std::deque<std::string> params)
        {
                if (params.size() < 4)
@@ -624,6 +713,7 @@ class TreeSocket : public InspSocket
                }
                TreeServer* Node = new TreeServer(servername,description,ParentOfThis,NULL);
                ParentOfThis->AddChild(Node);
+               params[3] = ":" + params[3];
                DoOneToAllButSender(prefix,"SERVER",params,prefix);
                Srv->SendOpers("*** Server \002"+prefix+"\002 introduced server \002"+servername+"\002 ("+description+")");
                return true;
@@ -656,6 +746,7 @@ class TreeSocket : public InspSocket
                                // node.
                                TreeServer* Node = new TreeServer(servername,description,TreeRoot,this);
                                TreeRoot->AddChild(Node);
+                               params[3] = ":" + params[3];
                                DoOneToAllButSender(TreeRoot->GetName(),"SERVER",params,servername);
                                this->DoBurst(Node);
                                return true;
@@ -707,37 +798,40 @@ class TreeSocket : public InspSocket
                while (!s.eof())
                {
                        s >> param;
-                       if ((param.c_str()[0] == ':') && (item))
+                       if ((param != "") && (param != "\n"))
                        {
-                               char* str = (char*)param.c_str();
-                               str++;
-                               param = str;
-                               std::string append;
-                               while (!s.eof())
+                               if ((param.c_str()[0] == ':') && (item))
                                {
-                                       append = "";
-                                       s >> append;
-                                       if (append != "")
+                                       char* str = (char*)param.c_str();
+                                       str++;
+                                       param = str;
+                                       std::string append;
+                                       while (!s.eof())
                                        {
-                                               param = param + " " + append;
+                                               append = "";
+                                               s >> append;
+                                               if (append != "")
+                                               {
+                                                       param = param + " " + append;
+                                               }
                                        }
                                }
+                               item++;
+                               n.push_back(param);
                        }
-                       item++;
-                       if ((strchr(param.c_str(),' ')) && (!stripcolon))
-                       {
-                               param = ":"+param;
-                       }
-                       n.push_back(param);
                }
                return n;
        }
 
        bool ProcessLine(std::string line)
        {
+               char* l = (char*)line.c_str();
+               while ((strlen(l)) && (l[strlen(l)-1] == '\r') || (l[strlen(l)-1] == '\n'))
+                       l[strlen(l)-1] = '\0';
+               line = l;
+               if (line == "")
+                       return true;
                Srv->Log(DEBUG,"inbound-line: '"+line+"'");
-
-               std::deque<std::string> rawparams = this->Split(line,false);
                std::deque<std::string> params = this->Split(line,true);
                std::string command = "";
                std::string prefix = "";
@@ -836,6 +930,18 @@ class TreeSocket : public InspSocket
                                {
                                        return this->RemoteServer(prefix,params);
                                }
+                               else if (command == "OPERTYPE")
+                               {
+                                       return this->OperType(prefix,params);
+                               }
+                               else if (command == "FMODE")
+                               {
+                                       return this->ForceMode(prefix,params);
+                               }
+                               else if (command == "KILL")
+                               {
+                                       return this->RemoteKill(prefix,params);
+                               }
                                else if (command == "SQUIT")
                                {
                                        if (params.size() == 2)
@@ -880,7 +986,7 @@ class TreeSocket : public InspSocket
                                                        return true;
                                                }
                                        }
-                                       return DoOneToAllButSender(prefix,command,rawparams,sourceserv);
+                                       return DoOneToAllButSenderRaw(line,sourceserv);
 
                                }
                                return true;
@@ -910,10 +1016,6 @@ class TreeSocket : public InspSocket
                TreeServer* s = FindServer(quitserver);
                if (s)
                {
-                       std::deque<std::string> params;
-                       params.push_back(quitserver);
-                       params.push_back(":Remote host closed the connection");
-                       DoOneToAllButSender(Srv->GetServerName(),"SQUIT",params,quitserver);
                        Squit(s,"Remote host closed the connection");
                }
        }
@@ -926,6 +1028,21 @@ class TreeSocket : public InspSocket
        }
 };
 
+bool DoOneToAllButSenderRaw(std::string data,std::string omit)
+{
+       for (unsigned int x = 0; x < TreeRoot->ChildCount(); x++)
+       {
+               TreeServer* Route = TreeRoot->GetChild(x);
+               if ((Route->GetSocket()) && (Route->GetName() != omit) && (BestRouteTo(omit) != Route))
+               {
+                       TreeSocket* Sock = Route->GetSocket();
+                       log(DEBUG,"Sending RAW to %s",Route->GetName().c_str());
+                       Sock->WriteLine(data);
+               }
+       }
+       return true;
+}
+
 bool DoOneToAllButSender(std::string prefix, std::string command, std::deque<std::string> params, std::string omit)
 {
        log(DEBUG,"ALLBUTONE: Comes from %s SHOULD NOT go back to %s",prefix.c_str(),omit.c_str());
@@ -1214,6 +1331,48 @@ class ModuleSpanningTree : public Module
                return 0;
        }
 
+       virtual void OnUserInvite(userrec* source,userrec* dest,chanrec* channel)
+       {
+               if (std::string(source->server) == Srv->GetServerName())
+               {
+                       std::deque<std::string> params;
+                       params.push_back(dest->nick);
+                       params.push_back(channel->name);
+                       DoOneToMany(source->nick,"INVITE",params);
+               }
+       }
+
+       virtual void OnPostLocalTopicChange(userrec* user, chanrec* chan, std::string topic)
+       {
+       }
+
+       virtual void OnUserNotice(userrec* user, void* dest, int target_type, std::string text)
+       {
+               if (target_type == TYPE_USER)
+               {
+                       userrec* d = (userrec*)dest;
+                       if ((std::string(d->server) != Srv->GetServerName()) && (std::string(user->server) == Srv->GetServerName()))
+                       {
+                               std::deque<std::string> params;
+                               params.clear();
+                               params.push_back(d->nick);
+                               params.push_back(":"+text);
+                               DoOneToOne(user->nick,"NOTICE",params,d->server);
+                       }
+               }
+               else
+               {
+                       if (std::string(user->server) == Srv->GetServerName())
+                       {
+                               chanrec *c = (chanrec*)dest;
+                               std::deque<std::string> params;
+                               params.push_back(c->name);
+                               params.push_back(":"+text);
+                               DoOneToMany(user->nick,"NOTICE",params);
+                       }
+               }
+       }
+
        virtual void OnUserMessage(userrec* user, void* dest, int target_type, std::string text)
        {
                if (target_type == TYPE_USER)
@@ -1274,6 +1433,108 @@ class ModuleSpanningTree : public Module
                }
        }
 
+       virtual void OnUserConnect(userrec* user)
+       {
+               char agestr[MAXBUF];
+               if (std::string(user->server) == Srv->GetServerName())
+               {
+                       log(DEBUG,"**** User on %s CONNECTS: %s",user->server,user->nick);
+                       std::deque<std::string> params;
+                       snprintf(agestr,MAXBUF,"%lu",(unsigned long)user->age);
+                       params.clear();
+                       params.push_back(agestr);
+                       params.push_back(user->nick);
+                       params.push_back(user->host);
+                       params.push_back(user->dhost);
+                       params.push_back(user->ident);
+                       params.push_back("+"+std::string(user->modes));
+                       params.push_back(user->ip);
+                       params.push_back(":"+std::string(user->fullname));
+                       DoOneToMany(Srv->GetServerName(),"NICK",params);
+               }
+       }
+
+       virtual void OnUserQuit(userrec* user, std::string reason)
+       {
+               if (std::string(user->server) == Srv->GetServerName())
+               {
+                       log(DEBUG,"**** User on %s QUITS: %s",user->server,user->nick);
+                       std::deque<std::string> params;
+                       params.push_back(":"+reason);
+                       DoOneToMany(user->nick,"QUIT",params);
+               }
+       }
+
+       virtual void OnUserPostNick(userrec* user, std::string oldnick)
+       {
+               if (std::string(user->server) == Srv->GetServerName())
+               {
+                       log(DEBUG,"**** User on %s changes NICK: %s",user->server,user->nick);
+                       std::deque<std::string> params;
+                       params.push_back(user->nick);
+                       DoOneToMany(oldnick,"NICK",params);
+               }
+       }
+
+       virtual void OnUserKick(userrec* source, userrec* user, chanrec* chan, std::string reason)
+       {
+               if (std::string(source->server) == Srv->GetServerName())
+               {
+                       log(DEBUG,"**** User on %s KICKs: %s %s",source->server,source->nick,user->nick);
+                       std::deque<std::string> params;
+                       params.push_back(chan->name);
+                       params.push_back(user->nick);
+                       params.push_back(":"+reason);
+                       DoOneToMany(source->nick,"KICK",params);
+               }
+       }
+
+       virtual void OnRemoteKill(userrec* source, userrec* dest, std::string reason)
+       {
+               std::deque<std::string> params;
+               params.push_back(dest->nick);
+               params.push_back(":"+reason);
+               DoOneToMany(source->nick,"KILL",params);
+       }
+
+       // note: the protocol does not allow direct umode +o except
+       // via NICK with 8 params. sending OPERTYPE infers +o modechange
+       // locally.
+       virtual void OnOper(userrec* user, std::string opertype)
+       {
+               if (std::string(user->server) == Srv->GetServerName())
+               {
+                       std::deque<std::string> params;
+                       params.push_back(opertype);
+                       DoOneToMany(user->nick,"OPERTYPE",params);
+               }
+       }
+
+       virtual void OnMode(userrec* user, void* dest, int target_type, std::string text)
+       {
+               log(DEBUG,"*** ONMODE TRIGGER");
+               if (std::string(user->server) == Srv->GetServerName())
+               {
+                       log(DEBUG,"*** LOCAL");
+                       if (target_type == TYPE_USER)
+                       {
+                               userrec* u = (userrec*)dest;
+                               std::deque<std::string> params;
+                               params.push_back(u->nick);
+                               params.push_back(text);
+                               DoOneToMany(user->nick,"MODE",params);
+                       }
+                       else
+                       {
+                               chanrec* c = (chanrec*)dest;
+                               std::deque<std::string> params;
+                               params.push_back(c->name);
+                               params.push_back(text);
+                               DoOneToMany(user->nick,"MODE",params);
+                       }
+               }
+       }
+
        virtual ~ModuleSpanningTree()
        {
                delete Srv;