]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_delayjoin.cpp
Enable the LINK snomask from m_spanningtree, remove unused FLOOD snomask
[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 #include "inspircd.h"
24 #include <stdarg.h>
25
26 class DelayJoinMode : public ModeHandler
27 {
28         CUList empty;
29  public:
30         DelayJoinMode(Module* Parent) : ModeHandler(Parent, "delayjoin", 'D', PARAM_NONE, MODETYPE_CHANNEL)
31         {
32                 levelrequired = OP_VALUE;
33         }
34
35         ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding);
36 };
37
38 class ModuleDelayJoin : public Module
39 {
40         DelayJoinMode djm;
41  public:
42         LocalIntExt unjoined;
43         ModuleDelayJoin() : djm(this), unjoined("delayjoin", this)
44         {
45         }
46
47         void init() CXX11_OVERRIDE
48         {
49                 ServerInstance->Modules->AddService(djm);
50                 ServerInstance->Modules->AddService(unjoined);
51                 Implementation eventlist[] = { I_OnUserJoin, I_OnUserPart, I_OnUserKick, I_OnBuildNeighborList, I_OnNamesListItem, I_OnText, I_OnRawMode };
52                 ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation));
53         }
54         Version GetVersion() CXX11_OVERRIDE;
55         void OnNamesListItem(User* issuer, Membership*, std::string &prefixes, std::string &nick) CXX11_OVERRIDE;
56         void OnUserJoin(Membership*, bool, bool, CUList&) CXX11_OVERRIDE;
57         void CleanUser(User* user);
58         void OnUserPart(Membership*, std::string &partmessage, CUList&) CXX11_OVERRIDE;
59         void OnUserKick(User* source, Membership*, const std::string &reason, CUList&) CXX11_OVERRIDE;
60         void OnBuildNeighborList(User* source, UserChanList &include, std::map<User*,bool> &exception) CXX11_OVERRIDE;
61         void OnText(User* user, void* dest, int target_type, const std::string &text, char status, CUList &exempt_list) CXX11_OVERRIDE;
62         ModResult OnRawMode(User* user, Channel* channel, const char mode, const std::string &param, bool adding, int pcnt) CXX11_OVERRIDE;
63 };
64
65 ModeAction DelayJoinMode::OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding)
66 {
67         /* no change */
68         if (channel->IsModeSet(this) == adding)
69                 return MODEACTION_DENY;
70
71         if (!adding)
72         {
73                 /*
74                  * Make all users visible, as +D is being removed. If we don't do this,
75                  * they remain permanently invisible on this channel!
76                  */
77                 const UserMembList* names = channel->GetUsers();
78                 for (UserMembCIter n = names->begin(); n != names->end(); ++n)
79                         creator->OnText(n->first, channel, TYPE_CHANNEL, "", 0, empty);
80         }
81         channel->SetMode(this, adding);
82         return MODEACTION_ALLOW;
83 }
84
85 Version ModuleDelayJoin::GetVersion()
86 {
87         return Version("Allows for delay-join channels (+D) where users don't appear to join until they speak", VF_VENDOR);
88 }
89
90 void ModuleDelayJoin::OnNamesListItem(User* issuer, Membership* memb, std::string &prefixes, std::string &nick)
91 {
92         /* don't prevent the user from seeing themself */
93         if (issuer == memb->user)
94                 return;
95
96         /* If the user is hidden by delayed join, hide them from the NAMES list */
97         if (unjoined.get(memb))
98                 nick.clear();
99 }
100
101 static void populate(CUList& except, Membership* memb)
102 {
103         const UserMembList* users = memb->chan->GetUsers();
104         for(UserMembCIter i = users->begin(); i != users->end(); i++)
105         {
106                 if (i->first == memb->user || !IS_LOCAL(i->first))
107                         continue;
108                 except.insert(i->first);
109         }
110 }
111
112 void ModuleDelayJoin::OnUserJoin(Membership* memb, bool sync, bool created, CUList& except)
113 {
114         if (memb->chan->IsModeSet(djm))
115         {
116                 unjoined.set(memb, 1);
117                 populate(except, memb);
118         }
119 }
120
121 void ModuleDelayJoin::OnUserPart(Membership* memb, std::string &partmessage, CUList& except)
122 {
123         if (unjoined.set(memb, 0))
124                 populate(except, memb);
125 }
126
127 void ModuleDelayJoin::OnUserKick(User* source, Membership* memb, const std::string &reason, CUList& except)
128 {
129         if (unjoined.set(memb, 0))
130                 populate(except, memb);
131 }
132
133 void ModuleDelayJoin::OnBuildNeighborList(User* source, UserChanList &include, std::map<User*,bool> &exception)
134 {
135         UCListIter i = include.begin();
136         while (i != include.end())
137         {
138                 Channel* c = *i++;
139                 Membership* memb = c->GetUser(source);
140                 if (memb && unjoined.get(memb))
141                         include.erase(c);
142         }
143 }
144
145 void ModuleDelayJoin::OnText(User* user, void* dest, int target_type, const std::string &text, char status, CUList &exempt_list)
146 {
147         /* Server origin */
148         if (!user)
149                 return;
150
151         if (target_type != TYPE_CHANNEL)
152                 return;
153
154         Channel* channel = static_cast<Channel*>(dest);
155
156         Membership* memb = channel->GetUser(user);
157         if (!memb || !unjoined.set(memb, 0))
158                 return;
159
160         /* Display the join to everyone else (the user who joined got it earlier) */
161         channel->WriteAllExceptSender(user, false, 0, "JOIN %s", channel->name.c_str());
162
163         std::string ms = memb->modes;
164         for(unsigned int i=0; i < memb->modes.length(); i++)
165                 ms.append(" ").append(user->nick);
166
167         if (ms.length() > 0)
168                 channel->WriteAllExceptSender(user, false, 0, "MODE %s +%s", channel->name.c_str(), ms.c_str());
169 }
170
171 /* make the user visible if he receives any mode change */
172 ModResult ModuleDelayJoin::OnRawMode(User* user, Channel* channel, const char mode, const std::string &param, bool adding, int pcnt)
173 {
174         if (!user || !channel || param.empty())
175                 return MOD_RES_PASSTHRU;
176
177         User* dest;
178         if (IS_LOCAL(user))
179                 dest = ServerInstance->FindNickOnly(param);
180         else
181                 dest = ServerInstance->FindNick(param);
182
183         if (!dest)
184                 return MOD_RES_PASSTHRU;
185
186         Membership* memb = channel->GetUser(dest);
187         if (memb && unjoined.set(memb, 0))
188                 channel->WriteAllExceptSender(dest, false, 0, "JOIN %s", channel->name.c_str());
189         return MOD_RES_PASSTHRU;
190 }
191
192 MODULE_INIT(ModuleDelayJoin)