]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_ojoin.cpp
cacc206d69e84e1b3de15a1e239346e968aa9c76
[user/henk/code/inspircd.git] / src / modules / m_ojoin.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2010 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 /*
15  * Written for InspIRCd-1.2 by Taros on the Tel'Laerad M&D Team
16  * <http://tellaerad.net>
17  */
18
19 #include "inspircd.h"
20
21 /* $ModConfig: <ojoin prefix="!" notice="yes" op="yes">
22  *  Specify the prefix that +Y will grant here, it should be unused.
23  *  Leave prefix empty if you do not wish +Y to grant a prefix
24  *  If notice is set to on, upon ojoin, the server will notice
25  *  the channel saying that the oper is joining on network business
26  *  If op is set to on, it will give them +o along with +Y */
27 /* $ModDesc: Provides the /ojoin command, which joins a user to a channel on network business, and gives them +Y, which makes them immune to kick / deop and so on. */
28 /* $ModAuthor: Taros */
29 /* $ModAuthorMail: taros34@hotmail.com */
30
31 /* A note: This will not protect against kicks from services,
32  * ulines, or operoverride. */
33
34 #define NETWORK_VALUE 9000000
35
36 char NPrefix;
37 bool notice;
38 bool op;
39
40 /** Handle /OJOIN
41  */
42 class CommandOjoin : public Command
43 {
44  public:
45         bool active;
46         CommandOjoin(Module* parent) : Command(parent,"OJOIN", 1)
47         {
48                 flags_needed = 'o'; Penalty = 0; syntax = "<channel>";
49                 active = false;
50                 TRANSLATE3(TR_NICK, TR_TEXT, TR_END);
51         }
52
53         CmdResult Handle (const std::vector<std::string>& parameters, User *user)
54         {
55                 // Make sure the channel name is allowable.
56                 if (!ServerInstance->IsChannel(parameters[0].c_str(), ServerInstance->Config->Limits.ChanMax))
57                 {
58                         user->WriteServ("NOTICE "+std::string(user->nick)+" :*** Invalid characters in channel name or name too long");
59                         return CMD_FAILURE;
60                 }
61
62                 active = true;
63                 Channel* channel = Channel::JoinUser(user, parameters[0].c_str(), false, "", false);
64                 active = false;
65
66                 if (channel)
67                 {
68                         ServerInstance->SNO->WriteGlobalSno('a', std::string(user->nick)+" used OJOIN to join "+channel->name);
69
70                         if (notice)
71                         {
72                                 channel = ServerInstance->FindChan(parameters[0]);
73                                 channel->WriteChannelWithServ(ServerInstance->Config->ServerName.c_str(), "NOTICE %s :%s joined on official network business.",
74                                         parameters[0].c_str(), user->nick.c_str());
75                                 ServerInstance->PI->SendChannelNotice(channel, 0, std::string(user->nick) + " joined on official network business.");
76                         }
77                 }
78                 else
79                 {
80                         ServerInstance->SNO->WriteGlobalSno('a', std::string(user->nick)+" used OJOIN in "+parameters[0]);
81                         // they're already in the channel
82                         std::vector<std::string> modes;
83                         modes.push_back(parameters[0]);
84                         modes.push_back("+Y");
85                         modes.push_back(user->nick);
86                         ServerInstance->SendMode(modes, ServerInstance->FakeClient);
87                         ServerInstance->PI->SendMode(parameters[0], ServerInstance->Modes->GetLastParseParams(), ServerInstance->Modes->GetLastParseTranslate());
88                 }
89                 return CMD_SUCCESS;
90         }
91 };
92
93 /** channel mode +Y
94  */
95 class NetworkPrefix : public ModeHandler
96 {
97  public:
98         NetworkPrefix(Module* parent) : ModeHandler(parent, "official-join", 'Y', PARAM_ALWAYS, MODETYPE_CHANNEL)
99         {
100                 list = true;
101                 prefix = NPrefix;
102                 levelrequired = 0xFFFFFFFF;
103                 m_paramtype = TR_NICK;
104         }
105
106         void RemoveMode(Channel* channel, irc::modestacker* stack)
107         {
108                 const UserMembList* cl = channel->GetUsers();
109                 std::vector<std::string> mode_junk;
110                 mode_junk.push_back(channel->name);
111                 irc::modestacker modestack(false);
112                 std::deque<std::string> stackresult;
113
114                 for (UserMembCIter i = cl->begin(); i != cl->end(); i++)
115                 {
116                         if (i->second->hasMode('Y'))
117                         {
118                                 if (stack)
119                                         stack->Push(this->GetModeChar(), i->first->nick);
120                                 else
121                                         modestack.Push(this->GetModeChar(), i->first->nick);
122                         }
123                 }
124
125                 if (stack)
126                         return;
127
128                 while (modestack.GetStackedLine(stackresult))
129                 {
130                         mode_junk.insert(mode_junk.end(), stackresult.begin(), stackresult.end());
131                         ServerInstance->SendMode(mode_junk, ServerInstance->FakeClient);
132                         mode_junk.erase(mode_junk.begin() + 1, mode_junk.end());
133                 }
134         }
135
136         User* FindAndVerify(std::string &parameter, Channel* channel)
137         {
138                 User* theuser = ServerInstance->FindNick(parameter);
139                 if ((!theuser) || (!channel->HasUser(theuser)))
140                 {
141                         parameter.clear();
142                         return NULL;
143                 }
144                 return theuser;
145         }
146
147         ModeAction HandleChange(User* source, User* theuser, bool adding, Channel* channel, std::string &parameter)
148         {
149                 Membership* m = channel->GetUser(theuser);
150                 if (m && adding)
151                 {
152                         if (!m->hasMode('Y'))
153                         {
154                                 parameter = theuser->nick;
155                                 return MODEACTION_ALLOW;
156                         }
157                 }
158                 else if (m && !adding)
159                 {
160                         if (m->hasMode('Y'))
161                         {
162                                 parameter = theuser->nick;
163                                 return MODEACTION_ALLOW;
164                         }
165                 }
166                 return MODEACTION_DENY;
167         }
168
169         unsigned int GetPrefixRank()
170         {
171                 return NETWORK_VALUE;
172         }
173
174         void RemoveMode(User* user, irc::modestacker* stack)
175         {
176         }
177
178         ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding)
179         {
180                 User* theuser = FindAndVerify(parameter, channel);
181
182                 if (!theuser)
183                         return MODEACTION_DENY;
184
185                  // source is a server, or ulined, we'll let them +-Y the user.
186                 if (source == ServerInstance->FakeClient ||
187                         ((source == theuser) && (!adding)) ||
188                         (ServerInstance->ULine(source->nick.c_str())) ||
189                         (ServerInstance->ULine(source->server)) ||
190                         (!IS_LOCAL(source))
191                         )
192                 {
193                         return HandleChange(source, theuser, adding, channel, parameter);
194                 }
195                 else
196                 {
197                         // bzzzt, wrong answer!
198                         source->WriteNumeric(482, "%s %s :Only servers may change this mode.", source->nick.c_str(), channel->name.c_str());
199                         return MODEACTION_DENY;
200                 }
201         }
202
203 };
204
205 class ModuleOjoin : public Module
206 {
207         NetworkPrefix* np;
208         CommandOjoin mycommand;
209
210  public:
211
212         ModuleOjoin()
213                 : np(NULL), mycommand(this)
214         {
215                 /* Load config stuff */
216                 OnRehash(NULL);
217
218                 /* Initialise module variables */
219                 np = new NetworkPrefix(this);
220
221                 if (!ServerInstance->Modes->AddMode(np))
222                 {
223                         delete np;
224                         throw ModuleException("Could not add new mode!");
225                 }
226
227                 ServerInstance->AddCommand(&mycommand);
228
229                 Implementation eventlist[] = { I_OnUserPreJoin, I_OnUserPreKick, I_OnRehash };
230                 ServerInstance->Modules->Attach(eventlist, this, 3);
231         }
232
233         ModResult OnUserPreJoin(User *user, Channel *chan, const char *cname, std::string &privs, const std::string &keygiven)
234         {
235                 if (mycommand.active)
236                 {
237                         privs += 'Y';
238                         if (op)
239                                 privs += 'o';
240                         return MOD_RES_ALLOW;
241                 }
242
243                 return MOD_RES_PASSTHRU;
244         }
245
246         void OnRehash(User* user)
247         {
248                 ConfigReader Conf;
249
250                 if (!np)
251                 {
252                         // This is done on module load only
253                         std::string npre = Conf.ReadValue("ojoin", "prefix", 0);
254                         NPrefix = npre.empty() ? 0 : npre[0];
255
256                         if (NPrefix && ServerInstance->Modes->FindPrefix(NPrefix))
257                                 throw ModuleException("Looks like the +Y prefix you picked for m_ojoin is already in use. Pick another.");
258                 }
259
260                 notice = Conf.ReadFlag("ojoin", "notice", "yes", 0);
261                 op = Conf.ReadFlag("ojoin", "op", "yes", 0);
262         }
263
264         ModResult OnUserPreKick(User* source, Membership* memb, const std::string &reason)
265         {
266                 if ((ServerInstance->ULine(source->nick.c_str())) || ServerInstance->ULine(source->server))
267                         return MOD_RES_PASSTHRU;
268
269                 // Don't do anything if they're not +Y
270                 if (!memb->hasMode('Y'))
271                         return MOD_RES_PASSTHRU;
272
273                 // Let them do whatever they want to themselves.
274                 if (source == memb->user)
275                         return MOD_RES_PASSTHRU;
276
277                 source->WriteNumeric(484, source->nick+" "+memb->chan->name+" :Can't kick "+memb->user->nick+" as they're on official network business.");
278                 return MOD_RES_DENY;
279         }
280
281         ~ModuleOjoin()
282         {
283                 delete np;
284         }
285
286         void Prioritize()
287         {
288                 ServerInstance->Modules->SetPriority(this, I_OnUserPreJoin, PRIORITY_FIRST);
289         }
290
291         Version GetVersion()
292         {
293                 return Version("Network Buisness Join", VF_VENDOR);
294         }
295 };
296
297 MODULE_INIT(ModuleOjoin)
298