]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/addline.cpp
57629d74c1909245fde7144778f3f5e45371a612
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / addline.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "inspircd.h"
15 #include "commands/cmd_whois.h"
16 #include "commands/cmd_stats.h"
17 #include "socket.h"
18 #include "wildcard.h"
19 #include "xline.h"
20 #include "transport.h"
21 #include "socketengine.h"
22
23 #include "m_spanningtree/main.h"
24 #include "m_spanningtree/utils.h"
25 #include "m_spanningtree/treeserver.h"
26 #include "m_spanningtree/link.h"
27 #include "m_spanningtree/treesocket.h"
28 #include "m_spanningtree/resolvers.h"
29 #include "m_spanningtree/handshaketimer.h"
30
31 /* $ModDep: m_spanningtree/timesynctimer.h m_spanningtree/resolvers.h m_spanningtree/main.h m_spanningtree/utils.h m_spanningtree/treeserver.h m_spanningtree/link.h m_spanningtree/treesocket.h */
32
33 bool TreeSocket::AddLine(const std::string &prefix, std::deque<std::string> &params)
34 {
35         if (params.size() < 6)
36         {
37                 this->Instance->SNO->WriteToSnoMask('x',"%s sent me a malformed ADDLINE of type %s.",prefix.c_str(),params[0].c_str());
38                 return true;
39         }
40
41         XLineFactory* xlf = Instance->XLines->GetFactory(params[0]);
42
43         if (!xlf)
44         {
45                 this->Instance->SNO->WriteToSnoMask('x',"%s sent me an unknown ADDLINE type (%s).",prefix.c_str(),params[0].c_str());
46                 return true;
47         }
48
49         XLine* xl = xlf->Generate(Instance->Time(), atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str());
50         xl->SetCreateTime(atoi(params[3].c_str()));
51         if (Instance->XLines->AddLine(xl,NULL))
52         {
53                 if (xl->duration)
54                 {
55                         this->Instance->SNO->WriteToSnoMask('x',"%s added %s%s on %s to expire on %s (%s).",prefix.c_str(),params[0].c_str(),params[0].length() == 1 ? "LINE" : "",
56                                         params[1].c_str(),Instance->TimeString(xl->expiry).c_str(),params[5].c_str());
57                 }
58                 else
59                 {
60                         this->Instance->SNO->WriteToSnoMask('x',"%s added permanent %s%s on %s (%s).",prefix.c_str(),params[0].c_str(),params[0].length() == 1 ? "LINE" : "",
61                                         params[1].c_str(),params[5].c_str());
62                 }
63                 params[5] = ":" + params[5];
64
65                 User* u = Instance->FindNick(prefix);
66                 Utils->DoOneToAllButSender(prefix, "ADDLINE", params, u ? u->server : prefix);
67                 TreeServer *remoteserver = Utils->FindServer(u ? u->server : prefix);
68                 
69                 if (!remoteserver->bursting)
70                 {
71                         Instance->XLines->ApplyLines();
72                 }
73         }
74         else
75                 delete xl;
76
77         return true;
78 }
79