]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_safelist.cpp
127990051ca0e5026fd3523adddc7b024ef55d87
[user/henk/code/inspircd.git] / src / modules / m_safelist.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
6  *                     E-mail:
7  *              <brain@chatspike.net>
8  *                <Craig@chatspike.net>
9  *     
10  * Written by Craig Edwards, Craig McLure, and others.
11  * This program is free but copyrighted software; see
12  *          the file COPYING for details.
13  *
14  * ---------------------------------------------------
15  */
16
17 using namespace std;
18  
19 #include "users.h"
20 #include "channels.h"
21 #include "modules.h"
22 #include "helperfuncs.h"
23 #include "message.h"
24 #include <vector>
25  
26 extern time_t TIME;
27
28 class ListData
29 {
30  public:
31         long list_start;
32         long list_position;
33         bool list_ended;
34
35         ListData() : list_start(0), list_position(0), list_ended(false) {};
36         ListData(long pos, time_t t) : list_start(t), list_position(pos), list_ended(false) {};
37 };
38
39 /* $ModDesc: A module overriding /list, and making it safe - stop those sendq problems. */
40  
41 typedef std::vector<userrec *> UserList;
42 UserList listusers;    /* vector of people doing a /list */
43
44 /*
45  * To create a timer which recurs every second, we inherit from InspTimer.
46  * InspTimer is only one-shot however, so at the end of each Tick() we simply
47  * insert another of ourselves into the pending queue :)
48  */
49 class ListTimer : public InspTimer
50 {
51  private:
52
53         Server* Srv;
54         char buffer[MAXBUF];
55         chanrec *chan;
56
57  public:
58
59         ListTimer(long interval, Server* Me) : InspTimer(interval,TIME), Srv(Me)
60         {
61         }
62
63         virtual void Tick(time_t TIME)
64         {
65                 bool go_again = true;
66
67                 while (go_again)
68                 {
69                         go_again = false;
70                         for (UserList::iterator iter = listusers.begin(); iter != listusers.end(); iter++)
71                         {
72                                 /*
73                                  * What we do here:
74                                  *  - Get where they are up to
75                                  *  - If it's > GetChannelCount, erase them from the iterator, set go_again to true
76                                  *  - If not, spool the next 20 channels
77                                  */
78                                 userrec* u = (userrec*)(*iter);
79                                 ListData* ld = (ListData*)u->GetExt("safelist_cache");
80                                 if (ld->list_position > Srv->GetChannelCount())
81                                 {
82                                         u->Shrink("safelist_cache");
83                                         delete ld;
84                                         listusers.erase(iter);
85                                         go_again = true;
86                                         break;
87                                 }
88
89                                 log(DEBUG, "m_safelist.so: resuming spool of list to client %s at channel %ld", u->nick, ld->list_position);
90                                 chan = NULL;
91                                 /* Attempt to fill up to half the user's sendq with /LIST output */
92                                 long amount_sent = 0;
93                                 do
94                                 {
95                                         log(DEBUG,"Channel %ld",ld->list_position);
96                                         if (!ld->list_position)
97                                                 WriteServ(u->fd,"321 %s Channel :Users Name",u->nick);
98                                         chan = Srv->GetChannelIndex(ld->list_position);
99                                         /* spool details */
100                                         if (chan)
101                                         {
102                                                 /* Increment total plus linefeed */
103                                                 int counter = snprintf(buffer,MAXBUF,"322 %s %s %d :[+%s] %s",u->nick,chan->name,usercount_i(chan),chanmodes(chan,has_channel(u,chan)),chan->topic);
104                                                 amount_sent += counter + 4 + Srv->GetServerName().length();
105                                                 log(DEBUG,"m_safelist.so: Sent %ld of safe %ld / 2",amount_sent,u->sendqmax);
106                                                 WriteServ_NoFormat(u->fd,buffer);
107                                         }
108                                         else
109                                         {
110                                                 if (!ld->list_ended)
111                                                 {
112                                                         ld->list_ended = true;
113                                                         WriteServ(u->fd,"323 %s :End of channel list.",u->nick);
114                                                 }
115                                         }
116
117                                         ld->list_position++;
118                                 }
119                                 while ((chan != NULL) && (amount_sent < (u->sendqmax / 2)));
120                         }
121                 }
122
123                 ListTimer* MyTimer = new ListTimer(1,Srv);
124                 Srv->AddTimer(MyTimer);
125         }
126 };
127
128 class ModuleSafeList : public Module
129 {
130  private:
131          Server *Srv;
132          ListTimer* MyTimer;
133  public:
134         ModuleSafeList(Server* Me) : Module::Module(Me)
135         {
136                 Srv = Me;
137
138                 MyTimer = new ListTimer(1,Srv);
139                 Srv->AddTimer(MyTimer);
140         }
141  
142         virtual ~ModuleSafeList()
143         {
144         }
145  
146         virtual Version GetVersion()
147         {
148                 return Version(1,0,0,0,VF_VENDOR);
149         }
150  
151         void Implements(char* List)
152         {
153                 List[I_OnPreCommand] = List[I_OnCleanup] = List[I_OnUserQuit] = List[I_On005Numeric] = 1;
154         }
155
156         /*
157          * OnPreCommand()
158          *   Intercept the LIST command.
159          */ 
160         virtual int OnPreCommand(std::string command, char **parameters, int pcnt, userrec *user, bool validated)
161         {
162                 /* If the command doesnt appear to be valid, we dont want to mess with it. */
163                 if (!validated)
164                         return 0;
165  
166                 if (command == "LIST")
167                 {
168                         return this->HandleList(parameters, pcnt, user);
169                 }
170                 return 0;
171         }
172         
173         /*
174          * HandleList()
175          *   Handle (override) the LIST command.
176          */
177         int HandleList(char** parameters, int pcnt, userrec* user)
178         {
179                 /* First, let's check if the user is currently /list'ing */
180                 ListData *ld = (ListData*)user->GetExt("safelist_cache");
181  
182                 if (ld)
183                 {
184                         /* user is already /list'ing, we don't want to do shit. */
185                         return 1;
186                 }
187
188                 time_t* last_list_time = (time_t*)user->GetExt("safelist_last");
189                 if (last_list_time)
190                 {
191                         if (TIME < (*last_list_time)+60)
192                         {
193                                 WriteServ(user->fd,"NOTICE %s :*** Woah there, slow down a little, you can't /LIST so often!",user->nick);
194                                 return 1;
195                         }
196
197                         delete last_list_time;
198                         user->Shrink("safelist_last");
199                 }
200  
201                 /*
202                  * start at channel 0! ;)
203                  */
204                 ld = new ListData(0,TIME);
205                 user->Extend("safelist_cache", (char*)ld);
206                 listusers.push_back(user);
207
208                 time_t* llt = new time_t;
209                 *llt = TIME;
210                 user->Extend("safelist_last",(char*)llt);
211         
212                 return 1;
213         }
214
215         virtual void OnCleanup(int target_type, void* item)
216         {
217                 if(target_type == TYPE_USER)
218                 {
219                         userrec* u = (userrec*)item;
220                         ListData* ld = (ListData*)u->GetExt("safelist_cache");
221                         if (ld)
222                         {
223                                 u->Shrink("safelist_cache");
224                                 delete ld;
225                         }
226                         for (UserList::iterator iter = listusers.begin(); iter != listusers.end(); iter++)
227                         {
228                                 userrec* u2 = (userrec*)(*iter);
229                                 if (u2 == u)
230                                 {
231                                         listusers.erase(iter);
232                                         break;
233                                 }
234                         }
235                         time_t* last_list_time = (time_t*)u->GetExt("safelist_last");
236                         if (last_list_time)
237                         {
238                                 delete last_list_time;
239                                 u->Shrink("safelist_last");
240                         }
241                 }
242         }
243
244         virtual void On005Numeric(std::string &output)
245         {
246                 output.append(" SAFELIST");
247         }
248
249         virtual void OnUserQuit(userrec* user, std::string message)
250         {
251                 this->OnCleanup(TYPE_USER,user);
252         }
253
254 };
255  
256  
257  
258 /******************************************************************************************************/
259  
260 class ModuleSafeListFactory : public ModuleFactory
261 {
262  public:
263         ModuleSafeListFactory()
264         {
265         }
266  
267         ~ModuleSafeListFactory()
268         {
269         }
270  
271         virtual Module * CreateModule(Server* Me)
272         {
273                 return new ModuleSafeList(Me);
274         }
275  
276 };
277  
278 extern "C" void * init_module( void )
279 {
280         return new ModuleSafeListFactory;
281 }