]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_modenotice.cpp
Add m_starttls and remove it from m_ssl_gnutls, which allows it to work with both...
[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                 for (LocalUserList::const_iterator i = ServerInstance->Users->local_users.begin(); i != ServerInstance->Users->local_users.end(); i++)
36                 {
37                         User* user = *i;
38                         for (int n = 0; n < mlen; n++)
39                         {
40                                 if (!user->IsModeSet(parameters[0][n]))
41                                         goto next_user;
42                         }
43                         user->WriteNotice(msg);
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_OPT_BCAST;
52         }
53 };
54
55 class ModuleModeNotice : public Module
56 {
57         CommandModeNotice cmd;
58
59  public:
60         ModuleModeNotice()
61                 : cmd(this)
62         {
63         }
64
65         Version GetVersion() CXX11_OVERRIDE
66         {
67                 return Version("Provides the /MODENOTICE command", VF_VENDOR);
68         }
69 };
70
71 MODULE_INIT(ModuleModeNotice)