]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_ojoin.cpp
e26646c3a15a476cdea0ebbf3c3deaae45dd2f50
[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', NETWORK_VALUE, NPrefix)
91         {
92                 levelrequired = INT_MAX;
93         }
94
95         ModResult AccessCheck(User* source, Channel* channel, std::string &parameter, bool adding)
96         {
97                 User* theuser = ServerInstance->FindNick(parameter);
98                 // remove own privs?
99                 if (source == theuser && !adding)
100                         return MOD_RES_ALLOW;
101
102                 return MOD_RES_PASSTHRU;
103         }
104 };
105
106 class ModuleOjoin : public Module
107 {
108         NetworkPrefix* np;
109         CommandOjoin mycommand;
110
111  public:
112
113         ModuleOjoin()
114                 : np(NULL), mycommand(this)
115         {
116         }
117
118         void init() CXX11_OVERRIDE
119         {
120                 std::string npre = ServerInstance->Config->ConfValue("ojoin")->getString("prefix");
121                 char NPrefix = npre.empty() ? 0 : npre[0];
122
123                 /* Initialise module variables */
124                 np = new NetworkPrefix(this, NPrefix);
125                 mycommand.npmh = np;
126
127                 ServerInstance->Modules->AddService(*np);
128         }
129
130         ModResult OnUserPreJoin(LocalUser* user, Channel* chan, const std::string& cname, std::string& privs, const std::string& keygiven) CXX11_OVERRIDE
131         {
132                 if (mycommand.active)
133                 {
134                         privs += np->GetModeChar();
135                         if (mycommand.op)
136                                 privs += 'o';
137                         return MOD_RES_ALLOW;
138                 }
139
140                 return MOD_RES_PASSTHRU;
141         }
142
143         void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
144         {
145                 ConfigTag* Conf = ServerInstance->Config->ConfValue("ojoin");
146                 mycommand.notice = Conf->getBool("notice", true);
147                 mycommand.op = Conf->getBool("op", true);
148         }
149
150         ModResult OnUserPreKick(User* source, Membership* memb, const std::string &reason) CXX11_OVERRIDE
151         {
152                 // Don't do anything if they're not +Y
153                 if (!memb->hasMode(np->GetModeChar()))
154                         return MOD_RES_PASSTHRU;
155
156                 // Let them do whatever they want to themselves.
157                 if (source == memb->user)
158                         return MOD_RES_PASSTHRU;
159
160                 source->WriteNumeric(ERR_RESTRICTED, memb->chan->name+" :Can't kick "+memb->user->nick+" as they're on official network business.");
161                 return MOD_RES_DENY;
162         }
163
164         ~ModuleOjoin()
165         {
166                 delete np;
167         }
168
169         void Prioritize()
170         {
171                 ServerInstance->Modules->SetPriority(this, I_OnUserPreJoin, PRIORITY_FIRST);
172         }
173
174         Version GetVersion() CXX11_OVERRIDE
175         {
176                 return Version("Network Business Join", VF_VENDOR);
177         }
178 };
179
180 MODULE_INIT(ModuleOjoin)