]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/addline.cpp
Fix some regressions in sending tags between servers.
[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 "treeserver.h"
24 #include "utils.h"
25 #include "commands.h"
26
27 CmdResult CommandAddLine::Handle(User* usr, Params& params)
28 {
29         XLineFactory* xlf = ServerInstance->XLines->GetFactory(params[0]);
30         const std::string& setter = usr->nick;
31
32         if (!xlf)
33         {
34                 ServerInstance->SNO->WriteToSnoMask('x', "%s sent me an unknown ADDLINE type (%s).", setter.c_str(), params[0].c_str());
35                 return CMD_FAILURE;
36         }
37
38         XLine* xl = NULL;
39         try
40         {
41                 xl = xlf->Generate(ServerInstance->Time(), ConvToNum<unsigned long>(params[4]), params[2], params[5], params[1]);
42         }
43         catch (ModuleException &e)
44         {
45                 ServerInstance->SNO->WriteToSnoMask('x', "Unable to ADDLINE type %s from %s: %s", params[0].c_str(), setter.c_str(), e.GetReason().c_str());
46                 return CMD_FAILURE;
47         }
48         xl->SetCreateTime(ConvToNum<time_t>(params[3]));
49         if (ServerInstance->XLines->AddLine(xl, NULL))
50         {
51                 if (xl->duration)
52                 {
53                         ServerInstance->SNO->WriteToSnoMask('X', "%s added timed %s%s for %s, expires in %s (on %s): %s",
54                                 setter.c_str(), params[0].c_str(), params[0].length() == 1 ? "-line" : "",
55                                 params[1].c_str(), InspIRCd::DurationString(xl->duration).c_str(),
56                                 InspIRCd::TimeString(xl->expiry).c_str(), params[5].c_str());
57                 }
58                 else
59                 {
60                         ServerInstance->SNO->WriteToSnoMask('X', "%s added permanent %s%s on %s: %s",
61                                 setter.c_str(), params[0].c_str(), params[0].length() == 1 ? "-line" : "",
62                                 params[1].c_str(), params[5].c_str());
63                 }
64
65                 TreeServer* remoteserver = TreeServer::Get(usr);
66
67                 if (!remoteserver->IsBursting())
68                 {
69                         ServerInstance->XLines->ApplyLines();
70                 }
71                 return CMD_SUCCESS;
72         }
73         else
74         {
75                 delete xl;
76                 return CMD_FAILURE;
77         }
78 }
79
80 CommandAddLine::Builder::Builder(XLine* xline, User* user)
81         : CmdBuilder(user, "ADDLINE")
82 {
83         push(xline->type);
84         push(xline->Displayable());
85         push(xline->source);
86         push_int(xline->set_time);
87         push_int(xline->duration);
88         push_last(xline->reason);
89 }