]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/addline.cpp
db9a7f2d6e49fc4cfdfecf91f371d7f6a3bee0e6
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / addline.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2008 Robin Burchell <robin+git@viroteck.net>
5  *
6  * This file is part of InspIRCd.  InspIRCd is free software: you can
7  * redistribute it and/or modify it under the terms of the GNU General Public
8  * License as published by the Free Software Foundation, version 2.
9  *
10  * This program is distributed in the hope that it will be useful, but WITHOUT
11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
13  * details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19
20 #include "inspircd.h"
21 #include "xline.h"
22
23 #include "treesocket.h"
24 #include "treeserver.h"
25 #include "utils.h"
26
27 /* $ModDep: m_spanningtree/utils.h m_spanningtree/treeserver.h m_spanningtree/treesocket.h */
28
29 bool TreeSocket::AddLine(const std::string &prefix, parameterlist &params)
30 {
31         if (params.size() < 6)
32         {
33                 ServerInstance->SNO->WriteToSnoMask('d',"%s sent me a malformed ADDLINE of type %s.",prefix.c_str(),params[0].c_str());
34                 return true;
35         }
36
37         XLineFactory* xlf = ServerInstance->XLines->GetFactory(params[0]);
38
39         std::string setter = "<unknown>";
40         User* usr = ServerInstance->FindNick(prefix);
41         if (usr)
42                 setter = usr->nick;
43         else
44         {
45                 TreeServer* t = Utils->FindServer(prefix);
46                 if (t)
47                         setter = t->GetName().c_str();
48         }
49
50         if (!xlf)
51         {
52                 ServerInstance->SNO->WriteToSnoMask('d',"%s sent me an unknown ADDLINE type (%s).",setter.c_str(),params[0].c_str());
53                 return true;
54         }
55
56         XLine* xl = NULL;
57         try
58         {
59                 xl = xlf->Generate(ServerInstance->Time(), atoi(params[4].c_str()), params[2], params[5], params[1]);
60         }
61         catch (ModuleException &e)
62         {
63                 ServerInstance->SNO->WriteToSnoMask('d',"Unable to ADDLINE type %s from %s: %s", params[0].c_str(), setter.c_str(), e.GetReason());
64                 return true;
65         }
66         xl->SetCreateTime(atoi(params[3].c_str()));
67         if (ServerInstance->XLines->AddLine(xl, NULL))
68         {
69                 if (xl->duration)
70                 {
71                         ServerInstance->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" : "",
72                                         params[1].c_str(),ServerInstance->TimeString(xl->expiry).c_str(),params[5].c_str());
73                 }
74                 else
75                 {
76                         ServerInstance->SNO->WriteToSnoMask('X',"%s added permanent %s%s on %s: %s",setter.c_str(),params[0].c_str(),params[0].length() == 1 ? "-line" : "",
77                                         params[1].c_str(),params[5].c_str());
78                 }
79                 params[5] = ":" + params[5];
80
81                 User* u = ServerInstance->FindNick(prefix);
82                 Utils->DoOneToAllButSender(prefix, "ADDLINE", params, u ? u->server : prefix);
83                 TreeServer *remoteserver = Utils->FindServer(u ? u->server : prefix);
84
85                 if (!remoteserver->bursting)
86                 {
87                         ServerInstance->XLines->ApplyLines();
88                 }
89         }
90         else
91                 delete xl;
92
93         return true;
94 }
95