]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/addline.cpp
Remove many unneeded headers from spanningtree files
[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         if (!xlf)
34         {
35                 this->Instance->SNO->WriteToSnoMask('x',"%s sent me an unknown ADDLINE type (%s).",prefix.c_str(),params[0].c_str());
36                 return true;
37         }
38
39         XLine* xl = xlf->Generate(Instance->Time(), atoi(params[4].c_str()), params[2].c_str(), params[5].c_str(), params[1].c_str());
40         xl->SetCreateTime(atoi(params[3].c_str()));
41         if (Instance->XLines->AddLine(xl,NULL))
42         {
43                 if (xl->duration)
44                 {
45                         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" : "",
46                                         params[1].c_str(),Instance->TimeString(xl->expiry).c_str(),params[5].c_str());
47                 }
48                 else
49                 {
50                         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" : "",
51                                         params[1].c_str(),params[5].c_str());
52                 }
53                 params[5] = ":" + params[5];
54
55                 User* u = Instance->FindNick(prefix);
56                 Utils->DoOneToAllButSender(prefix, "ADDLINE", params, u ? u->server : prefix);
57                 TreeServer *remoteserver = Utils->FindServer(u ? u->server : prefix);
58                 
59                 if (!remoteserver->bursting)
60                 {
61                         Instance->XLines->ApplyLines();
62                 }
63         }
64         else
65                 delete xl;
66
67         return true;
68 }
69