]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_modenotice.cpp
Replace copyright headers with headers granting specific authors copyright
[user/henk/code/inspircd.git] / src / commands / cmd_modenotice.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
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
22 class CommandModeNotice : public Command
23 {
24  public:
25         CommandModeNotice(Module* parent) : Command(parent,"MODENOTICE",2,2)
26         {
27                 syntax = "<modes> <message>";
28                 flags_needed = 'o';
29         }
30
31         CmdResult Handle(const std::vector<std::string>& parameters, User *src)
32         {
33                 int mlen = parameters[0].length();
34                 for (std::vector<LocalUser*>::const_iterator i = ServerInstance->Users->local_users.begin(); i != ServerInstance->Users->local_users.end(); i++)
35                 {
36                         User* user = *i;
37                         for (int n = 0; n < mlen; n++)
38                         {
39                                 if (!user->IsModeSet(parameters[0][n]))
40                                         goto next_user;
41                         }
42                         user->Write(":%s NOTICE %s :*** From %s: %s", ServerInstance->Config->ServerName.c_str(),
43                                 user->nick.c_str(), src->nick.c_str(), parameters[1].c_str());
44 next_user:      ;
45                 }
46                 return CMD_SUCCESS;
47         }
48
49         RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters)
50         {
51                 return ROUTE_BROADCAST;
52         }
53 };
54
55 COMMAND_INIT(CommandModeNotice)