]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_modenotice.cpp
056eb4a626a5f63c29f1fbd9ca66edd3a9248dcc
[user/henk/code/inspircd.git] / src / modules / m_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                 std::string msg = "*** From " + src->nick + ": " + parameters[1];
34                 int mlen = parameters[0].length();
35                 const UserManager::LocalList& list = ServerInstance->Users.GetLocalUsers();
36                 for (UserManager::LocalList::const_iterator i = list.begin(); i != list.end(); ++i)
37                 {
38                         User* user = *i;
39                         for (int n = 0; n < mlen; n++)
40                         {
41                                 if (!user->IsModeSet(parameters[0][n]))
42                                         goto next_user;
43                         }
44                         user->WriteNotice(msg);
45 next_user:      ;
46                 }
47                 return CMD_SUCCESS;
48         }
49
50         RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters)
51         {
52                 return ROUTE_OPT_BCAST;
53         }
54 };
55
56 class ModuleModeNotice : public Module
57 {
58         CommandModeNotice cmd;
59
60  public:
61         ModuleModeNotice()
62                 : cmd(this)
63         {
64         }
65
66         Version GetVersion() CXX11_OVERRIDE
67         {
68                 return Version("Provides the /MODENOTICE command", VF_VENDOR);
69         }
70 };
71
72 MODULE_INIT(ModuleModeNotice)