]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_ojoin.cpp
m_exemptchanops Fix parameter validation
[user/henk/code/inspircd.git] / src / modules / m_ojoin.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Taros <taros34@hotmail.com>
5  *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
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 #include "inspircd.h"
21
22 #define NETWORK_VALUE 9000000
23
24 /** Handle /OJOIN
25  */
26 class CommandOjoin : public SplitCommand
27 {
28  public:
29         bool active;
30         bool notice;
31         bool op;
32         ModeHandler* npmh;
33         CommandOjoin(Module* parent) :
34                 SplitCommand(parent, "OJOIN", 1)
35         {
36                 flags_needed = 'o'; Penalty = 0; syntax = "<channel>";
37                 active = false;
38         }
39
40         CmdResult HandleLocal(const std::vector<std::string>& parameters, LocalUser* user)
41         {
42                 // Make sure the channel name is allowable.
43                 if (!ServerInstance->IsChannel(parameters[0]))
44                 {
45                         user->WriteNotice("*** Invalid characters in channel name or name too long");
46                         return CMD_FAILURE;
47                 }
48
49                 active = true;
50                 // override is false because we want OnUserPreJoin to run
51                 Channel* channel = Channel::JoinUser(user, parameters[0], false);
52                 active = false;
53
54                 if (channel)
55                 {
56                         ServerInstance->SNO->WriteGlobalSno('a', user->nick+" used OJOIN to join "+channel->name);
57
58                         if (notice)
59                         {
60                                 channel->WriteChannelWithServ(ServerInstance->Config->ServerName, "NOTICE %s :%s joined on official network business.",
61                                         parameters[0].c_str(), user->nick.c_str());
62                                 ServerInstance->PI->SendChannelNotice(channel, 0, user->nick + " joined on official network business.");
63                         }
64                 }
65                 else
66                 {
67                         ServerInstance->SNO->WriteGlobalSno('a', user->nick+" used OJOIN in "+parameters[0]);
68                         // they're already in the channel
69                         std::vector<std::string> modes;
70                         modes.push_back(parameters[0]);
71                         modes.push_back(std::string("+") + npmh->GetModeChar());
72                         if (op)
73                         {
74                                 modes[1].push_back('o');
75                                 modes.push_back(user->nick);
76                         }
77                         modes.push_back(user->nick);
78                         ServerInstance->Modes->Process(modes, ServerInstance->FakeClient);
79                 }
80                 return CMD_SUCCESS;
81         }
82 };
83
84 /** channel mode +Y
85  */
86 class NetworkPrefix : public PrefixMode
87 {
88  public:
89         NetworkPrefix(Module* parent, char NPrefix)
90                 : PrefixMode(parent, "official-join", 'Y')
91         {
92                 prefix = NPrefix;
93                 levelrequired = INT_MAX;
94                 prefixrank = NETWORK_VALUE;
95         }
96
97         ModResult AccessCheck(User* source, Channel* channel, std::string &parameter, bool adding)
98         {
99                 User* theuser = ServerInstance->FindNick(parameter);
100                 // remove own privs?
101                 if (source == theuser && !adding)
102                         return MOD_RES_ALLOW;
103
104                 return MOD_RES_PASSTHRU;
105         }
106 };
107
108 class ModuleOjoin : public Module
109 {
110         NetworkPrefix* np;
111         CommandOjoin mycommand;
112
113  public:
114
115         ModuleOjoin()
116                 : np(NULL), mycommand(this)
117         {
118         }
119
120         void init() CXX11_OVERRIDE
121         {
122                 std::string npre = ServerInstance->Config->ConfValue("ojoin")->getString("prefix");
123                 char NPrefix = npre.empty() ? 0 : npre[0];
124                 if (NPrefix && ServerInstance->Modes->FindPrefix(NPrefix))
125                         throw ModuleException("Looks like the prefix you picked for m_ojoin is already in use. Pick another.");
126
127                 /* Initialise module variables */
128                 np = new NetworkPrefix(this, NPrefix);
129                 mycommand.npmh = np;
130
131                 ServerInstance->Modules->AddService(*np);
132         }
133
134         ModResult OnUserPreJoin(LocalUser* user, Channel* chan, const std::string& cname, std::string& privs, const std::string& keygiven) CXX11_OVERRIDE
135         {
136                 if (mycommand.active)
137                 {
138                         privs += np->GetModeChar();
139                         if (mycommand.op)
140                                 privs += 'o';
141                         return MOD_RES_ALLOW;
142                 }
143
144                 return MOD_RES_PASSTHRU;
145         }
146
147         void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
148         {
149                 ConfigTag* Conf = ServerInstance->Config->ConfValue("ojoin");
150                 mycommand.notice = Conf->getBool("notice", true);
151                 mycommand.op = Conf->getBool("op", true);
152         }
153
154         ModResult OnUserPreKick(User* source, Membership* memb, const std::string &reason) CXX11_OVERRIDE
155         {
156                 // Don't do anything if they're not +Y
157                 if (!memb->hasMode(np->GetModeChar()))
158                         return MOD_RES_PASSTHRU;
159
160                 // Let them do whatever they want to themselves.
161                 if (source == memb->user)
162                         return MOD_RES_PASSTHRU;
163
164                 source->WriteNumeric(ERR_RESTRICTED, memb->chan->name+" :Can't kick "+memb->user->nick+" as they're on official network business.");
165                 return MOD_RES_DENY;
166         }
167
168         ~ModuleOjoin()
169         {
170                 delete np;
171         }
172
173         void Prioritize()
174         {
175                 ServerInstance->Modules->SetPriority(this, I_OnUserPreJoin, PRIORITY_FIRST);
176         }
177
178         Version GetVersion() CXX11_OVERRIDE
179         {
180                 return Version("Network Business Join", VF_VENDOR);
181         }
182 };
183
184 MODULE_INIT(ModuleOjoin)