]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_delayjoin.cpp
Register all commands, modes and extensions using AddService()
[user/henk/code/inspircd.git] / src / modules / m_delayjoin.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2010 Jens Voss <DukePyrolator@anope.org>
5  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
6  *   Copyright (C) 2008 Robin Burchell <robin+git@viroteck.net>
7  *   Copyright (C) 2007-2008 Craig Edwards <craigedwards@brainbox.cc>
8  *
9  * This file is part of InspIRCd.  InspIRCd is free software: you can
10  * redistribute it and/or modify it under the terms of the GNU General Public
11  * License as published by the Free Software Foundation, version 2.
12  *
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
20  */
21
22
23 /* $ModDesc: Allows for delay-join channels (+D) where users don't appear to join until they speak */
24
25 #include "inspircd.h"
26 #include <stdarg.h>
27
28 class DelayJoinMode : public ModeHandler
29 {
30  private:
31         CUList empty;
32  public:
33         DelayJoinMode(Module* Parent) : ModeHandler(Parent, "delayjoin", 'D', PARAM_NONE, MODETYPE_CHANNEL)
34         {
35                 levelrequired = OP_VALUE;
36         }
37
38         ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding);
39 };
40
41 class ModuleDelayJoin : public Module
42 {
43         DelayJoinMode djm;
44  public:
45         LocalIntExt unjoined;
46         ModuleDelayJoin() : djm(this), unjoined("delayjoin", this)
47         {
48         }
49
50         void init()
51         {
52                 ServerInstance->Modules->AddService(djm);
53                 Implementation eventlist[] = { I_OnUserJoin, I_OnUserPart, I_OnUserKick, I_OnBuildNeighborList, I_OnNamesListItem, I_OnText, I_OnRawMode };
54                 ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation));
55         }
56         ~ModuleDelayJoin();
57         Version GetVersion();
58         void OnNamesListItem(User* issuer, Membership*, std::string &prefixes, std::string &nick);
59         void OnUserJoin(Membership*, bool, bool, CUList&);
60         void CleanUser(User* user);
61         void OnUserPart(Membership*, std::string &partmessage, CUList&);
62         void OnUserKick(User* source, Membership*, const std::string &reason, CUList&);
63         void OnBuildNeighborList(User* source, UserChanList &include, std::map<User*,bool> &exception);
64         void OnText(User* user, void* dest, int target_type, const std::string &text, char status, CUList &exempt_list);
65         ModResult OnRawMode(User* user, Channel* channel, const char mode, const std::string &param, bool adding, int pcnt);
66 };
67
68 ModeAction DelayJoinMode::OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding)
69 {
70         /* no change */
71         if (channel->IsModeSet('D') == adding)
72                 return MODEACTION_DENY;
73
74         if (!adding)
75         {
76                 /*
77                  * Make all users visible, as +D is being removed. If we don't do this,
78                  * they remain permanently invisible on this channel!
79                  */
80                 const UserMembList* names = channel->GetUsers();
81                 for (UserMembCIter n = names->begin(); n != names->end(); ++n)
82                         creator->OnText(n->first, channel, TYPE_CHANNEL, "", 0, empty);
83         }
84         channel->SetMode('D', adding);
85         return MODEACTION_ALLOW;
86 }
87
88 ModuleDelayJoin::~ModuleDelayJoin()
89 {
90 }
91
92 Version ModuleDelayJoin::GetVersion()
93 {
94         return Version("Allows for delay-join channels (+D) where users don't appear to join until they speak", VF_VENDOR);
95 }
96
97 void ModuleDelayJoin::OnNamesListItem(User* issuer, Membership* memb, std::string &prefixes, std::string &nick)
98 {
99         /* don't prevent the user from seeing themself */
100         if (issuer == memb->user)
101                 return;
102
103         /* If the user is hidden by delayed join, hide them from the NAMES list */
104         if (unjoined.get(memb))
105                 nick.clear();
106 }
107
108 static void populate(CUList& except, Membership* memb)
109 {
110         const UserMembList* users = memb->chan->GetUsers();
111         for(UserMembCIter i = users->begin(); i != users->end(); i++)
112         {
113                 if (i->first == memb->user || !IS_LOCAL(i->first))
114                         continue;
115                 except.insert(i->first);
116         }
117 }
118
119 void ModuleDelayJoin::OnUserJoin(Membership* memb, bool sync, bool created, CUList& except)
120 {
121         if (memb->chan->IsModeSet('D'))
122         {
123                 unjoined.set(memb, 1);
124                 populate(except, memb);
125         }
126 }
127
128 void ModuleDelayJoin::OnUserPart(Membership* memb, std::string &partmessage, CUList& except)
129 {
130         if (unjoined.set(memb, 0))
131                 populate(except, memb);
132 }
133
134 void ModuleDelayJoin::OnUserKick(User* source, Membership* memb, const std::string &reason, CUList& except)
135 {
136         if (unjoined.set(memb, 0))
137                 populate(except, memb);
138 }
139
140 void ModuleDelayJoin::OnBuildNeighborList(User* source, UserChanList &include, std::map<User*,bool> &exception)
141 {
142         UCListIter i = include.begin();
143         while (i != include.end())
144         {
145                 Channel* c = *i++;
146                 Membership* memb = c->GetUser(source);
147                 if (memb && unjoined.get(memb))
148                         include.erase(c);
149         }
150 }
151
152 void ModuleDelayJoin::OnText(User* user, void* dest, int target_type, const std::string &text, char status, CUList &exempt_list)
153 {
154         /* Server origin */
155         if (!user)
156                 return;
157
158         if (target_type != TYPE_CHANNEL)
159                 return;
160
161         Channel* channel = static_cast<Channel*>(dest);
162
163         Membership* memb = channel->GetUser(user);
164         if (!memb || !unjoined.set(memb, 0))
165                 return;
166
167         /* Display the join to everyone else (the user who joined got it earlier) */
168         channel->WriteAllExceptSender(user, false, 0, "JOIN %s", channel->name.c_str());
169
170         std::string ms = memb->modes;
171         for(unsigned int i=0; i < memb->modes.length(); i++)
172                 ms.append(" ").append(user->nick);
173
174         if (ms.length() > 0)
175                 channel->WriteAllExceptSender(user, false, 0, "MODE %s +%s", channel->name.c_str(), ms.c_str());
176 }
177
178 /* make the user visible if he receives any mode change */
179 ModResult ModuleDelayJoin::OnRawMode(User* user, Channel* channel, const char mode, const std::string &param, bool adding, int pcnt)
180 {
181         if (!user || !channel || param.empty())
182                 return MOD_RES_PASSTHRU;
183
184         User* dest;
185         if (IS_LOCAL(user))
186                 dest = ServerInstance->FindNickOnly(param);
187         else
188                 dest = ServerInstance->FindNick(param);
189
190         if (!dest)
191                 return MOD_RES_PASSTHRU;
192
193         Membership* memb = channel->GetUser(dest);
194         if (memb && unjoined.set(memb, 0))
195                 channel->WriteAllExceptSender(dest, false, 0, "JOIN %s", channel->name.c_str());
196         return MOD_RES_PASSTHRU;
197 }
198
199 MODULE_INIT(ModuleDelayJoin)