]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/override_squit.cpp
Merge pull request #590 from SaberUK/master+module-logging
[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 /* $ModDep: m_spanningtree/main.h m_spanningtree/utils.h m_spanningtree/treeserver.h m_spanningtree/treesocket.h */
29
30 ModResult ModuleSpanningTree::HandleSquit(const std::vector<std::string>& parameters, User* user)
31 {
32         TreeServer* s = Utils->FindServerMask(parameters[0]);
33         if (s)
34         {
35                 if (s == Utils->TreeRoot)
36                 {
37                         user->WriteNotice("*** SQUIT: Foolish mortal, you cannot make a server SQUIT itself! (" + parameters[0] + " matches local server name)");
38                         return MOD_RES_DENY;
39                 }
40
41                 TreeSocket* sock = s->GetSocket();
42
43                 if (sock)
44                 {
45                         ServerInstance->SNO->WriteToSnoMask('l',"SQUIT: Server \002%s\002 removed from network by %s",parameters[0].c_str(),user->nick.c_str());
46                         sock->Squit(s,"Server quit by " + user->GetFullRealHost());
47                         ServerInstance->SE->DelFd(sock);
48                         sock->Close();
49                 }
50                 else
51                 {
52                         user->WriteNotice("*** SQUIT may not be used to remove remote servers. Please use RSQUIT instead.");
53                 }
54         }
55         else
56         {
57                  user->WriteNotice("*** SQUIT: The server \002" + parameters[0] + "\002 does not exist on the network.");
58         }
59         return MOD_RES_DENY;
60 }
61