]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_map.cpp
Switch <stdint.h> test to use a test file too.
[user/henk/code/inspircd.git] / src / commands / cmd_map.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
6  *
7  * This file is part of InspIRCd.  InspIRCd is free software: you can
8  * redistribute it and/or modify it under the terms of the GNU General Public
9  * License as published by the Free Software Foundation, version 2.
10  *
11  * This program is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
14  * details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20
21 #include "inspircd.h"
22
23 class CommandMap : public Command
24 {
25  public:
26         /** Constructor for map.
27          */
28         CommandMap ( Module* parent) : Command(parent,"MAP",0,0) { Penalty=2; }
29         /** Handle command.
30          * @param parameters The parameters to the comamnd
31          * @param pcnt The number of parameters passed to teh command
32          * @param user The user issuing the command
33          * @return A value from CmdResult to indicate command success or failure.
34          */
35         CmdResult Handle(const std::vector<std::string>& parameters, User *user);
36 };
37
38 /** Handle /MAP
39  */
40 CmdResult CommandMap::Handle (const std::vector<std::string>&, User *user)
41 {
42         // as with /LUSERS this does nothing without a linking
43         // module to override its behaviour and display something
44         // better.
45
46         if (IS_OPER(user))
47         {
48                 user->WriteNumeric(006, "%s :%s [%s]", user->nick.c_str(), ServerInstance->Config->ServerName.c_str(), ServerInstance->Config->GetSID().c_str());
49                 user->WriteNumeric(007, "%s :End of /MAP", user->nick.c_str());
50                 return CMD_SUCCESS;
51         }
52         user->WriteNumeric(006, "%s :%s",user->nick.c_str(),ServerInstance->Config->ServerName.c_str());
53         user->WriteNumeric(007, "%s :End of /MAP",user->nick.c_str());
54
55         return CMD_SUCCESS;
56 }
57
58 COMMAND_INIT(CommandMap)