]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/addline.cpp
b7f2ad42062d902e1d3db26a58c376be0b00c2b1
[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 "xline.h"
16
17 #include "m_spanningtree/treesocket.h"
18 #include "m_spanningtree/treeserver.h"
19 #include "m_spanningtree/utils.h"
20
21 /* $ModDep: m_spanningtree/utils.h m_spanningtree/treeserver.h m_spanningtree/treesocket.h */
22
23 bool TreeSocket::AddLine(const std::string &prefix, std::deque<std::string> &params)
24 {
25         if (params.size() < 6)
26         {
27                 this->Instance->SNO->WriteToSnoMask('x',"%s sent me a malformed ADDLINE of type %s.",prefix.c_str(),params[0].c_str());
28                 return true;
29         }
30
31         XLineFactory* xlf = Instance->XLines->GetFactory(params[0]);
32
33         std::string setter = "<unknown>";
34         User* usr = Instance->FindNick(prefix);
35         if (usr)
36                 setter = usr->nick;
37         else
38         {
39                 TreeServer* t = Utils->FindServer(prefix);
40                 if (t)
41                         setter = t->GetName().c_str();
42         }
43
44         if (!xlf)
45         {
46                 this->Instance->SNO->WriteToSnoMask('x',"%s sent me an unknown ADDLINE type (%s).",setter.c_str(),params[0].c_str());
47                 return true;
48         }
49
50         XLine* xl = xlf->Generate(Instance->Time(), atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str());
51         xl->SetCreateTime(atoi(params[3].c_str()));
52         if (Instance->XLines->AddLine(xl,NULL))
53         {
54                 if (xl->duration)
55                 {
56                         this->Instance->SNO->WriteToSnoMask('x',"%s added %s%s on %s to expire on %s (%s).",setter.c_str(),params[0].c_str(),params[0].length() == 1 ? "LINE" : "",
57                                         params[1].c_str(),Instance->TimeString(xl->expiry).c_str(),params[5].c_str());
58                 }
59                 else
60                 {
61                         this->Instance->SNO->WriteToSnoMask('x',"%s added permanent %s%s on %s (%s).",setter.c_str(),params[0].c_str(),params[0].length() == 1 ? "LINE" : "",
62                                         params[1].c_str(),params[5].c_str());
63                 }
64                 params[5] = ":" + params[5];
65
66                 User* u = Instance->FindNick(prefix);
67                 Utils->DoOneToAllButSender(prefix, "ADDLINE", params, u ? u->server : prefix);
68                 TreeServer *remoteserver = Utils->FindServer(u ? u->server : prefix);
69         
70                 if (!remoteserver->bursting)
71                 {
72                         Instance->XLines->ApplyLines();
73                 }
74         }
75         else
76                 delete xl;
77
78         return true;
79 }
80