]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_delayjoin.cpp
18ae5c289bcb4c95f6dfc081fac3773bde4fcf7a
[user/henk/code/inspircd.git] / src / modules / m_delayjoin.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *          the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "inspircd.h"
15 #include <stdarg.h>
16
17 /* $ModDesc: Allows for delay-join channels (+D) where users dont appear to join until they speak */
18
19 class DelayJoinMode : public ModeHandler
20 {
21         CUList empty;
22         Module* Creator;
23  public:
24         DelayJoinMode(InspIRCd* Instance, Module* Parent) : ModeHandler(Instance, 'D', 0, 0, false, MODETYPE_CHANNEL, false), Creator(Parent) { }
25
26         ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding)
27         {
28                 if (channel->IsModeSet('D') != adding)
29                 {
30                         if (IS_LOCAL(source) && (channel->GetStatus(source) < STATUS_OP))
31                         {
32                                 source->WriteServ("482 %s %s :Only channel operators may %sset channel mode +D", source->nick, channel->name, adding ? "" : "un");
33                                 return MODEACTION_DENY;
34                         }
35                         else
36                         {
37                                 if (channel->IsModeSet('D'))
38                                 {
39                                         /* Make all delayed join users visible, or if an op removes +D
40                                          * while users exist that havent spoken, they remain permenantly
41                                          * invisible on this channel!
42                                          */
43                                         CUList* names = channel->GetUsers();
44                                         for (CUListIter n = names->begin(); n != names->end(); ++n)
45                                                 Creator->OnText(n->first, channel, TYPE_CHANNEL, "", 0, empty);
46                                 }
47                                 channel->SetMode('D', adding);
48                                 return MODEACTION_ALLOW;
49                         }
50                 }
51                 else
52                 {
53                         return MODEACTION_DENY;
54                 }
55         }
56 };
57
58 class ModuleDelayJoin : public Module
59 {
60  private:
61         DelayJoinMode* djm;
62         CUList nl;
63  public:
64         ModuleDelayJoin(InspIRCd* Me)
65                 : Module(Me)
66         {
67                 djm = new DelayJoinMode(ServerInstance, this);
68                 if (!ServerInstance->AddMode(djm))
69                         throw ModuleException("Could not add new modes!");
70                 Implementation eventlist[] = { I_OnUserJoin, I_OnUserPart, I_OnUserKick, I_OnUserQuit, I_OnUserList, I_OnText };
71                 ServerInstance->Modules->Attach(eventlist, this, 6);
72         }
73         
74         virtual ~ModuleDelayJoin()
75         {
76                 ServerInstance->Modes->DelMode(djm);
77                 DELETE(djm);
78         }
79
80         void Prioritize()
81         {
82                 /* To ensure that we get priority over namesx for names list generation */
83                 Module* namesx = ServerInstance->Modules->Find("m_namesx.so");
84                 ServerInstance->Modules->SetPriority(this, I_OnUserList, PRIO_BEFORE, &namesx);
85         }
86
87         virtual Version GetVersion()
88         {
89                 return Version(1, 1, 0, 0, VF_COMMON | VF_VENDOR, API_VERSION);
90         }
91
92         void Implements(char* List)
93         {
94                 List[I_OnUserJoin] = List[I_OnUserPart] = List[I_OnUserKick] = List[I_OnUserQuit] = List[I_OnUserList] = List[I_OnText] = 1;
95         }
96
97         virtual int OnUserList(User* user, Channel* Ptr, CUList* &nameslist)
98         {
99                 CUList* newlist = nameslist ? nameslist : Ptr->GetUsers();
100
101                 nl.clear();
102
103                 /* For +D channels ... */
104                 if (Ptr->IsModeSet('D'))
105                 {
106                         std::string key("delayjoin_");
107                         key.append(Ptr->name);
108
109                         /* Modify the names list, erasing users with the delay join metadata
110                          * for this channel (havent spoken yet)
111                          */
112                         for (CUListIter n = newlist->begin(); n != newlist->end(); ++n)
113                         {
114                                 if (!n->first->GetExt(key))
115                                         nl.insert(*n);
116                         }
117
118                         /* Always show self */
119                         nl[user] = user->nick;
120                         nameslist = &nl;
121                 }
122                 return 0;
123         }
124
125         virtual void OnUserJoin(User* user, Channel* channel, bool &silent)
126         {
127                 if (channel->IsModeSet('D'))
128                 {
129                         silent = true;
130                         /* Because we silenced the event, make sure it reaches the user whos joining (but only them of course) */
131                         user->WriteFrom(user, "JOIN %s", channel->name);
132
133                         /* This metadata tells the module the user is delayed join on this specific channel */
134                         user->Extend(std::string("delayjoin_")+channel->name);
135
136                         /* This metadata tells the module the user is delayed join on at least one (or more) channels.
137                          * It is only cleared when the user is no longer on ANY +D channels.
138                          */
139                         if (!user->GetExt("delayjoin"))
140                                 user->Extend("delayjoin");
141                 }
142         }
143
144         void OnUserPart(User* user, Channel* channel, const std::string &partmessage, bool &silent)
145         {
146                 if (channel->IsModeSet('D'))
147                 {
148                         if (user->GetExt(std::string("delayjoin_")+channel->name))
149                         {
150                                 silent = true;
151                                 /* Because we silenced the event, make sure it reaches the user whos leaving (but only them of course) */
152                                 user->WriteFrom(user, "PART %s%s%s", channel->name, partmessage.empty() ? "" : " :", partmessage.empty() ? "" : partmessage.c_str());
153                         }
154                 }
155         }
156
157         void OnUserKick(User* source, User* user, Channel* chan, const std::string &reason, bool &silent)
158         {
159                 if (chan->IsModeSet('D'))
160                 {
161                         /* Send silenced event only to the user being kicked and the user doing the kick */
162                         if (user->GetExt(std::string("delayjoin_")+chan->name))
163                         {
164                                 silent = true;
165                                 user->WriteFrom(source, "KICK %s %s %s", chan->name, user->nick, reason.c_str());
166                         }
167                 }
168         }
169
170         void OnUserQuit(User* user, const std::string &reason, const std::string &oper_message)
171         {
172                 Command* parthandler = ServerInstance->Parser->GetHandler("PART");
173                 const char* parameters[2];
174                 if (parthandler && user->GetExt("delayjoin"))
175                 {
176                         for (UCListIter f = user->chans.begin(); f != user->chans.end(); f++)
177                         {
178                                 parameters[0] = f->first->name;
179                                 /* This triggers our OnUserPart, above, making the PART silent */
180                                 parthandler->Handle(parameters, 1, user);
181                         }
182                 }
183         }
184
185         void OnText(User* user, void* dest, int target_type, const std::string &text, char status, CUList &exempt_list)
186         {
187                 if (target_type != TYPE_CHANNEL)
188                         return;
189
190                 Channel* channel = (Channel*) dest;
191
192                 if (!user->GetExt(std::string("delayjoin_")+channel->name))
193                         return;
194
195                 /* Display the join to everyone else (the user who joined got it earlier) */
196                 this->WriteCommonFrom(user, channel, "JOIN %s", channel->name);
197
198                 /* Shrink off the neccessary metadata for a specific channel */
199                 user->Shrink(std::string("delayjoin_")+channel->name);
200
201                 /* Check if the user is left on any other +D channels, if so don't take away the
202                  * metadata that says theyre on one or more channels 
203                  */
204                 for (UCListIter f = user->chans.begin(); f != user->chans.end(); f++)
205                         if (f->first->IsModeSet('D'))
206                                 return;
207
208                 user->Shrink("delayjoin");
209         }
210
211         void WriteCommonFrom(User *user, Channel* channel, const char* text, ...)
212         {
213                 va_list argsPtr;
214                 char textbuffer[MAXBUF];
215                 char tb[MAXBUF];
216
217                 va_start(argsPtr, text);
218                 vsnprintf(textbuffer, MAXBUF, text, argsPtr);
219                 va_end(argsPtr);
220                 snprintf(tb,MAXBUF,":%s %s",user->GetFullHost(),textbuffer);
221
222                 CUList *ulist = channel->GetUsers();
223
224                 for (CUList::iterator i = ulist->begin(); i != ulist->end(); i++)
225                 {
226                         /* User doesnt get a JOIN sent to themselves */
227                         if (user == i->first)
228                                 continue;
229
230                         /* Users with a visibility state that hides them dont appear */
231                         if (user->Visibility && !user->Visibility->VisibleTo(i->first))
232                                 continue;
233
234                         i->first->Write(std::string(tb));
235                 }
236         }
237
238 };
239
240 MODULE_INIT(ModuleDelayJoin)
241