]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_delayjoin.cpp
a9b17168320d840b8aa12e9fa64ae2fc37b1e372
[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
16 /* $ModDesc: Allows for delay-join channels (+D) where users dont appear to join until they speak */
17
18 class DelayJoinMode : public ModeHandler
19 {
20  public:
21         DelayJoinMode(InspIRCd* Instance) : ModeHandler(Instance, 'D', 0, 0, false, MODETYPE_CHANNEL, false) { }
22
23         ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding)
24         {
25                 if (channel->IsModeSet('D') != adding)
26                 {
27                         if (IS_LOCAL(source) && (channel->GetStatus(source) < STATUS_OP))
28                         {
29                                 source->WriteServ("482 %s %s :Only channel operators may %sset channel mode +D", source->nick, channel->name, adding ? "" : "un");
30                                 return MODEACTION_DENY;
31                         }
32                         else
33                         {
34                                 channel->SetMode('D', adding);
35                                 return MODEACTION_ALLOW;
36                         }
37                 }
38                 else
39                 {
40                         return MODEACTION_DENY;
41                 }
42         }
43 };
44
45 class ModuleDelayJoin : public Module
46 {
47  private:
48         DelayJoinMode* djm;
49         CUList nl;
50  public:
51         ModuleDelayJoin(InspIRCd* Me)
52                 : Module(Me)
53         {
54                 djm = new DelayJoinMode(ServerInstance);
55                 if (!ServerInstance->AddMode(djm))
56                         throw ModuleException("Could not add new modes!");
57         }
58         
59         virtual ~ModuleDelayJoin()
60         {
61                 ServerInstance->Modes->DelMode(djm);
62                 DELETE(djm);
63         }
64
65         Priority Prioritize()
66         {
67                 /* To ensure that we get priority over namesx for names list generation on +u channels */
68                 return (Priority)ServerInstance->Modules->PriorityBefore("m_namesx.so");
69         }
70
71         virtual Version GetVersion()
72         {
73                 return Version(1, 1, 0, 0, VF_COMMON | VF_VENDOR, API_VERSION);
74         }
75
76         void Implements(char* List)
77         {
78                 List[I_OnUserJoin] = List[I_OnUserPart] = List[I_OnUserKick] = List[I_OnUserQuit] = List[I_OnUserList] = List[I_OnText] = 1;
79         }
80
81         virtual int OnUserList(User* user, Channel* Ptr, CUList* &nameslist)
82         {
83                 CUList* newlist = nameslist ? nameslist : Ptr->GetUsers();
84
85                 nl.clear();
86
87                 /* For +D channels ... */
88                 if (Ptr->IsModeSet('D'))
89                 {
90                         std::string key("delayjoin_");
91                         key.append(Ptr->name);
92                         ServerInstance->Log(DEBUG,"Key: %s", key.c_str());
93                         /* Modify the names list, erasing users with the delay join metadata
94                          * for this channel (havent spoken yet)
95                          */
96                         for (CUListIter n = newlist->begin(); n != newlist->end(); ++n)
97                         {
98                                 ServerInstance->Log(DEBUG,"Item: %s", n->first->nick);
99                                 if (!n->first->GetExt(key))
100                                 {
101                                         nl.insert(*n);
102                                         ServerInstance->Log(DEBUG,"Spoken: %s", n->first->nick);
103                                 }
104                         }
105                         ServerInstance->Log(DEBUG,"Insert self");
106                         nl[user] = user->nick;
107                         nameslist = &nl;
108                 }
109                 return 0;
110         }
111
112         virtual void OnUserJoin(User* user, Channel* channel, bool &silent)
113         {
114                 if (channel->IsModeSet('D'))
115                 {
116                         silent = true;
117                         /* Because we silenced the event, make sure it reaches the user whos joining (but only them of course) */
118                         user->WriteFrom(user, "JOIN %s", channel->name);
119
120                         /* This metadata tells the module the user is delayed join on this specific channel */
121                         user->Extend(std::string("delayjoin_")+channel->name);
122
123                         /* This metadata tells the module the user is delayed join on at least one (or more) channels.
124                          * It is only cleared when the user is no longer on ANY +D channels.
125                          */
126                         if (!user->GetExt("delayjoin"))
127                                 user->Extend("delayjoin");
128                 }
129         }
130
131         void OnUserPart(User* user, Channel* channel, const std::string &partmessage, bool &silent)
132         {
133                 if (channel->IsModeSet('D'))
134                 {
135                         if (user->GetExt(std::string("delayjoin_")+channel->name))
136                         {
137                                 silent = true;
138                                 /* Because we silenced the event, make sure it reaches the user whos leaving (but only them of course) */
139                                 user->WriteFrom(user, "PART %s%s%s", channel->name, partmessage.empty() ? "" : " :", partmessage.empty() ? "" : partmessage.c_str());
140                         }
141                 }
142         }
143
144         void OnUserKick(User* source, User* user, Channel* chan, const std::string &reason, bool &silent)
145         {
146                 if (chan->IsModeSet('D'))
147                 {
148                         /* Send silenced event only to the user being kicked and the user doing the kick */
149                         if (user->GetExt(std::string("delayjoin_")+chan->name))
150                         {
151                                 silent = true;
152                                 user->WriteFrom(source, "KICK %s %s %s", chan->name, user->nick, reason.c_str());
153                         }
154                 }
155         }
156
157         void OnUserQuit(User* user, const std::string &reason, const std::string &oper_message)
158         {
159                 Command* parthandler = ServerInstance->Parser->GetHandler("PART");
160                 const char* parameters[2];
161                 if (parthandler && user->GetExt("delayjoin"))
162                 {
163                         for (UCListIter f = user->chans.begin(); f != user->chans.end(); f++)
164                         {
165                                 parameters[0] = f->first->name;
166                                 /* This triggers our OnUserPart, above, making the PART silent */
167                                 parthandler->Handle(parameters, 1, user);
168                         }
169                 }
170         }
171
172         void OnText(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)
173         {
174                 if (target_type != TYPE_CHANNEL)
175                         return;
176
177                 Channel* channel = (Channel*) dest;
178
179                 if (!user->GetExt(std::string("delayjoin_")+channel->name))
180                         return;
181
182                 /* Display the join to everyone else (the user who joined got it earlier) */
183                 channel->WriteAllExcept(user, false, 0, exempt_list, "JOIN %s", channel->name);
184
185                 /* Shrink off the neccessary metadata for a specific channel */
186                 user->Shrink(std::string("delayjoin_")+channel->name);
187
188                 /* Check if the user is left on any other +D channels, if so don't take away the
189                  * metadata that says theyre on one or more channels 
190                  */
191                 for (UCListIter f = user->chans.begin(); f != user->chans.end(); f++)
192                         if (f->first->IsModeSet('D'))
193                                 return;
194
195                 user->Shrink("delayjoin");
196         }
197 };
198
199 MODULE_INIT(ModuleDelayJoin)
200