]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/override_squit.cpp
1d0781dc33f51d1646525aeaa6b1ed19e2049ec2
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / override_squit.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2007 Craig Edwards <craigedwards@brainbox.cc>
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 "socket.h"
22
23 #include "main.h"
24 #include "utils.h"
25 #include "treeserver.h"
26 #include "treesocket.h"
27
28 ModResult ModuleSpanningTree::HandleSquit(const std::vector<std::string>& parameters, User* user)
29 {
30         TreeServer* s = Utils->FindServerMask(parameters[0]);
31         if (s)
32         {
33                 if (s->IsRoot())
34                 {
35                         user->WriteNotice("*** SQUIT: Foolish mortal, you cannot make a server SQUIT itself! (" + parameters[0] + " matches local server name)");
36                         return MOD_RES_DENY;
37                 }
38
39                 TreeSocket* sock = s->GetSocket();
40
41                 if (s->IsLocal())
42                 {
43                         ServerInstance->SNO->WriteToSnoMask('l',"SQUIT: Server \002%s\002 removed from network by %s",parameters[0].c_str(),user->nick.c_str());
44                         sock->Squit(s,"Server quit by " + user->GetFullRealHost());
45                         ServerInstance->SE->DelFd(sock);
46                         sock->Close();
47                 }
48                 else
49                 {
50                         user->WriteNotice("*** SQUIT may not be used to remove remote servers. Please use RSQUIT instead.");
51                 }
52         }
53         else
54         {
55                  user->WriteNotice("*** SQUIT: The server \002" + parameters[0] + "\002 does not exist on the network.");
56         }
57         return MOD_RES_DENY;
58 }