]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_delayjoin.cpp
1b631033a2740fe3103c9b4f19e2c3753d030ffe
[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] = 
79                 List[I_OnUserPreMessage] = List[I_OnUserPreNotice] = 1;
80         }
81
82         virtual int OnUserList(User* user, Channel* Ptr, CUList* &nameslist)
83         {
84                 if (!nameslist)
85                         return 0;
86
87                 /* For +D channels ... */
88                 if (Ptr->IsModeSet('D'))
89                 {
90                         std::string key("delayjoin_");
91                         key.append(Ptr->name);
92
93                         /* Modify the names list, erasing users with the delay join metadata
94                          * for this channel (havent spoken yet)
95                          */
96                         for (CUListIter n = nameslist->begin(); n != nameslist->end(); ++n)
97                         {                               
98                                 if (!n->first->GetExt(key))
99                                         nl.insert(*n);
100                         }
101                         nl[user] = user->nick;
102                         nameslist = &nl;
103                 }
104                 return 0;
105         }
106
107         virtual void OnUserJoin(User* user, Channel* channel, bool &silent)
108         {
109                 if (channel->IsModeSet('D'))
110                 {
111                         silent = true;
112                         /* Because we silenced the event, make sure it reaches the user whos joining (but only them of course) */
113                         user->WriteFrom(user, "JOIN %s", channel->name);
114
115                         /* This metadata tells the module the user is delayed join on this specific channel */
116                         user->Extend(std::string("delayjoin_")+channel->name);
117
118                         /* This metadata tells the module the user is delayed join on at least one (or more) channels.
119                          * It is only cleared when the user is no longer on ANY +D channels.
120                          */
121                         if (!user->GetExt("delayjoin"))
122                                 user->Extend("delayjoin");
123                 }
124         }
125
126         void OnUserPart(User* user, Channel* channel, const std::string &partmessage, bool &silent)
127         {
128                 if (channel->IsModeSet('D'))
129                 {
130                         if (user->GetExt(std::string("delayjoin_")+channel->name))
131                         {
132                                 silent = true;
133                                 /* Because we silenced the event, make sure it reaches the user whos leaving (but only them of course) */
134                                 user->WriteFrom(user, "PART %s%s%s", channel->name, partmessage.empty() ? "" : " :", partmessage.empty() ? "" : partmessage.c_str());
135                         }
136                 }
137         }
138
139         void OnUserKick(User* source, User* user, Channel* chan, const std::string &reason, bool &silent)
140         {
141                 if (chan->IsModeSet('D'))
142                 {
143                         /* Send silenced event only to the user being kicked and the user doing the kick */
144                         if (user->GetExt(std::string("delayjoin_")+chan->name))
145                         {
146                                 silent = true;
147                                 user->WriteFrom(source, "KICK %s %s %s", chan->name, user->nick, reason.c_str());
148                         }
149                 }
150         }
151
152         void OnUserQuit(User* user, const std::string &reason, const std::string &oper_message)
153         {
154                 Command* parthandler = ServerInstance->Parser->GetHandler("PART");
155                 const char* parameters[2];
156                 if (parthandler && user->GetExt("delayjoin"))
157                 {
158                         for (UCListIter f = user->chans.begin(); f != user->chans.end(); f++)
159                         {
160                                 parameters[0] = f->first->name;
161                                 /* This triggers our OnUserPart, above, making the PART silent */
162                                 parthandler->Handle(parameters, 1, user);
163                         }
164                 }
165         }
166
167         int OnUserPreMessage(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)
168         {
169                 if (target_type != TYPE_CHANNEL)
170                         return 0;
171
172                 Channel* channel = (Channel*) dest;
173
174                 if (!user->GetExt(std::string("delayjoin_")+channel->name))
175                         return 0;
176
177                 /* Display the join to everyone else (the user who joined got it earlier) */
178                 channel->WriteAllExcept(user, false, 0, exempt_list, "JOIN %s", channel->name);
179
180                 /* Shrink off the neccessary metadata for a specific channel */
181                 user->Shrink(std::string("delayjoin_")+channel->name);
182
183                 /* Check if the user is left on any other +D channels, if so don't take away the
184                  * metadata that says theyre on one or more channels 
185                  */
186                 for (UCListIter f = user->chans.begin(); f != user->chans.end(); f++)
187                         if (f->first->IsModeSet('D'))
188                                 return 0;
189
190                 user->Shrink("delayjoin");
191
192                 return 0;
193         }
194
195         int OnUserPreNotice(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)
196         {
197                 return OnUserPreMessage(user, dest, target_type, text, status, exempt_list);
198         }
199 };
200
201 MODULE_INIT(ModuleDelayJoin)
202