]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/override_squit.cpp
eb224660d58a6d00335d383ba095fd672c74bf70
[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 CommandBase::Params& 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                 if (s->IsLocal())
40                 {
41                         ServerInstance->SNO->WriteToSnoMask('l',"SQUIT: Server \002%s\002 removed from network by %s",parameters[0].c_str(),user->nick.c_str());
42                         s->SQuit("Server quit by " + user->GetFullRealHost());
43                 }
44                 else
45                 {
46                         user->WriteNotice("*** SQUIT may not be used to remove remote servers. Please use RSQUIT instead.");
47                 }
48         }
49         else
50         {
51                  user->WriteNotice("*** SQUIT: The server \002" + parameters[0] + "\002 does not exist on the network.");
52         }
53         return MOD_RES_DENY;
54 }