]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/channels.cpp
Allow static build of inspircd without module support
[user/henk/code/inspircd.git] / src / channels.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 /* $Core */
15
16 #include "inspircd.h"
17 #include <cstdarg>
18 #include "mode.h"
19
20 Channel::Channel(const std::string &cname, time_t ts)
21 {
22         chan_hash::iterator findchan = ServerInstance->chanlist->find(cname);
23         if (findchan != ServerInstance->chanlist->end())
24                 throw CoreException("Cannot create duplicate channel " + cname);
25
26         (*(ServerInstance->chanlist))[cname.c_str()] = this;
27         this->name.assign(cname, 0, ServerInstance->Config->Limits.ChanMax);
28         this->age = ts ? ts : ServerInstance->Time();
29
30         maxbans = topicset = 0;
31         modes.reset();
32 }
33
34 void Channel::SetMode(char mode,bool mode_on)
35 {
36         modes[mode-65] = mode_on;
37 }
38
39 void Channel::SetModeParam(char mode, std::string parameter)
40 {
41         CustomModeList::iterator n = custom_mode_params.find(mode);
42         // always erase, even if changing, so that the map gets the new value
43         if (n != custom_mode_params.end())
44                 custom_mode_params.erase(n);
45         if (parameter.empty())
46         {
47                 modes[mode-65] = false;
48         }
49         else
50         {
51                 custom_mode_params[mode] = parameter;
52                 modes[mode-65] = true;
53         }
54 }
55
56 std::string Channel::GetModeParameter(char mode)
57 {
58         CustomModeList::iterator n = custom_mode_params.find(mode);
59         if (n != custom_mode_params.end())
60                 return n->second;
61         return "";
62 }
63
64 int Channel::SetTopic(User *u, std::string &ntopic, bool forceset)
65 {
66         if (u)
67         {
68                 if(!forceset)
69                 {
70                         ModResult res;
71                         /* 0: check status, 1: don't, -1: disallow change silently */
72
73                         FIRST_MOD_RESULT(OnPreTopicChange, res, (u,this,ntopic));
74
75                         if (res == MOD_RES_DENY)
76                                 return CMD_FAILURE;
77                         if (res != MOD_RES_ALLOW)
78                         {
79                                 if (!this->HasUser(u))
80                                 {
81                                         u->WriteNumeric(442, "%s %s :You're not on that channel!",u->nick.c_str(), this->name.c_str());
82                                         return CMD_FAILURE;
83                                 }
84                                 if ((this->IsModeSet('t')) && (this->GetPrefixValue(u) < HALFOP_VALUE))
85                                 {
86                                         u->WriteNumeric(482, "%s %s :You must be at least a half-operator to change the topic on this channel", u->nick.c_str(), this->name.c_str());
87                                         return CMD_FAILURE;
88                                 }
89                         }
90                 }
91         }
92
93         this->topic.assign(ntopic, 0, ServerInstance->Config->Limits.MaxTopic);
94         if (u)
95         {
96                 this->setby.assign(ServerInstance->Config->FullHostInTopic ? u->GetFullHost() : u->nick, 0, 128);
97                 this->WriteChannel(u, "TOPIC %s :%s", this->name.c_str(), this->topic.c_str());
98         }
99         else
100         {
101                 this->setby.assign(ServerInstance->Config->ServerName);
102                 this->WriteChannelWithServ(ServerInstance->Config->ServerName, "TOPIC %s :%s", this->name.c_str(), this->topic.c_str());
103         }
104
105         this->topicset = ServerInstance->Time();
106
107         // XXX: this check for 'u' is probably pre-fake-user, and it fucking sucks anyway. we need to change this.
108         if (u)
109         {
110                 FOREACH_MOD(I_OnPostTopicChange,OnPostTopicChange(u, this, this->topic));
111         }
112
113         return CMD_SUCCESS;
114 }
115
116 long Channel::GetUserCounter()
117 {
118         return userlist.size();
119 }
120
121 Membership* Channel::AddUser(User* user)
122 {
123         Membership* memb = new Membership(user, this);
124         userlist[user] = memb;
125         return memb;
126 }
127
128 void Channel::DelUser(User* user)
129 {
130         UserMembIter a = userlist.find(user);
131
132         if (a != userlist.end())
133         {
134                 a->second->cull();
135                 delete a->second;
136                 userlist.erase(a);
137         }
138
139         if (userlist.empty())
140         {
141                 ModResult res;
142                 FIRST_MOD_RESULT(OnChannelPreDelete, res, (this));
143                 if (res == MOD_RES_DENY)
144                         return;
145                 chan_hash::iterator iter = ServerInstance->chanlist->find(this->name);
146                 /* kill the record */
147                 if (iter != ServerInstance->chanlist->end())
148                 {
149                         FOREACH_MOD(I_OnChannelDelete, OnChannelDelete(this));
150                         ServerInstance->chanlist->erase(iter);
151                 }
152                 ServerInstance->GlobalCulls.AddItem(this);
153         }
154 }
155
156 bool Channel::HasUser(User* user)
157 {
158         return (userlist.find(user) != userlist.end());
159 }
160
161 Membership* Channel::GetUser(User* user)
162 {
163         UserMembIter i = userlist.find(user);
164         if (i == userlist.end())
165                 return NULL;
166         return i->second;
167 }
168
169 const UserMembList* Channel::GetUsers()
170 {
171         return &userlist;
172 }
173
174 void Channel::SetDefaultModes()
175 {
176         ServerInstance->Logs->Log("CHANNELS", DEBUG, "SetDefaultModes %s",
177                 ServerInstance->Config->DefaultModes.c_str());
178         irc::spacesepstream list(ServerInstance->Config->DefaultModes);
179         std::string modeseq;
180         std::string parameter;
181
182         list.GetToken(modeseq);
183
184         for (std::string::iterator n = modeseq.begin(); n != modeseq.end(); ++n)
185         {
186                 ModeHandler* mode = ServerInstance->Modes->FindMode(*n, MODETYPE_CHANNEL);
187                 if (mode)
188                 {
189                         if (mode->GetNumParams(true))
190                                 list.GetToken(parameter);
191                         else
192                                 parameter.clear();
193
194                         mode->OnModeChange(ServerInstance->FakeClient, ServerInstance->FakeClient, this, parameter, true);
195                 }
196         }
197 }
198
199 /*
200  * add a channel to a user, creating the record for it if needed and linking
201  * it to the user record
202  */
203 Channel* Channel::JoinUser(User *user, const char* cn, bool override, const char* key, bool bursting, time_t TS)
204 {
205         // Fix: unregistered users could be joined using /SAJOIN
206         if (!user || !cn || user->registered != REG_ALL)
207                 return NULL;
208
209         char cname[MAXBUF];
210         std::string privs;
211         Channel *Ptr;
212
213         /*
214          * We don't restrict the number of channels that remote users or users that are override-joining may be in.
215          * We restrict local users to MaxChans channels.
216          * We restrict local operators to OperMaxChans channels.
217          * This is a lot more logical than how it was formerly. -- w00t
218          */
219         if (IS_LOCAL(user) && !override)
220         {
221                 if (user->HasPrivPermission("channels/high-join-limit"))
222                 {
223                         if (user->chans.size() >= ServerInstance->Config->OperMaxChans)
224                         {
225                                 user->WriteNumeric(ERR_TOOMANYCHANNELS, "%s %s :You are on too many channels",user->nick.c_str(), cn);
226                                 return NULL;
227                         }
228                 }
229                 else
230                 {
231                         unsigned int maxchans = user->GetClass()->maxchans;
232                         if (!maxchans)
233                                 maxchans = ServerInstance->Config->MaxChans;
234                         if (user->chans.size() >= maxchans)
235                         {
236                                 user->WriteNumeric(ERR_TOOMANYCHANNELS, "%s %s :You are on too many channels",user->nick.c_str(), cn);
237                                 return NULL;
238                         }
239                 }
240         }
241
242         strlcpy(cname, cn, ServerInstance->Config->Limits.ChanMax);
243         Ptr = ServerInstance->FindChan(cname);
244         bool created_by_local = false;
245
246         if (!Ptr)
247         {
248                 /*
249                  * Fix: desync bug was here, don't set @ on remote users - spanningtree handles their permissions. bug #358. -- w00t
250                  */
251                 if (!IS_LOCAL(user))
252                 {
253                         if (!TS)
254                                 ServerInstance->Logs->Log("CHANNEL",DEBUG,"*** BUG *** Channel::JoinUser called for REMOTE user '%s' on channel '%s' but no TS given!", user->nick.c_str(), cn);
255                 }
256                 else
257                 {
258                         privs = "o";
259                         created_by_local = true;
260                 }
261
262                 if (IS_LOCAL(user) && override == false)
263                 {
264                         ModResult MOD_RESULT;
265                         FIRST_MOD_RESULT(OnUserPreJoin, MOD_RESULT, (user, NULL, cname, privs, key ? key : ""));
266                         if (MOD_RESULT == MOD_RES_DENY)
267                                 return NULL;
268                 }
269
270                 Ptr = new Channel(cname, TS);
271         }
272         else
273         {
274                 /* Already on the channel */
275                 if (Ptr->HasUser(user))
276                         return NULL;
277
278                 /*
279                  * remote users are allowed us to bypass channel modes
280                  * and bans (used by servers)
281                  */
282                 if (IS_LOCAL(user) && override == false)
283                 {
284                         ModResult MOD_RESULT;
285                         FIRST_MOD_RESULT(OnUserPreJoin, MOD_RESULT, (user, Ptr, cname, privs, key ? key : ""));
286                         if (MOD_RESULT == MOD_RES_DENY)
287                         {
288                                 return NULL;
289                         }
290                         else if (MOD_RESULT == MOD_RES_PASSTHRU)
291                         {
292                                 std::string ckey = Ptr->GetModeParameter('k');
293                                 bool invited = IS_LOCAL(user)->IsInvited(Ptr->name.c_str());
294                                 bool can_bypass = ServerInstance->Config->InvBypassModes && invited;
295
296                                 if (!ckey.empty())
297                                 {
298                                         FIRST_MOD_RESULT(OnCheckKey, MOD_RESULT, (user, Ptr, key ? key : ""));
299                                         if (!MOD_RESULT.check((key && ckey == key) || can_bypass))
300                                         {
301                                                 // If no key provided, or key is not the right one, and can't bypass +k (not invited or option not enabled)
302                                                 user->WriteNumeric(ERR_BADCHANNELKEY, "%s %s :Cannot join channel (Incorrect channel key)",user->nick.c_str(), Ptr->name.c_str());
303                                                 return NULL;
304                                         }
305                                 }
306
307                                 if (Ptr->IsModeSet('i'))
308                                 {
309                                         FIRST_MOD_RESULT(OnCheckInvite, MOD_RESULT, (user, Ptr));
310                                         if (!MOD_RESULT.check(invited))
311                                         {
312                                                 user->WriteNumeric(ERR_INVITEONLYCHAN, "%s %s :Cannot join channel (Invite only)",user->nick.c_str(), Ptr->name.c_str());
313                                                 return NULL;
314                                         }
315                                 }
316
317                                 std::string limit = Ptr->GetModeParameter('l');
318                                 if (!limit.empty())
319                                 {
320                                         FIRST_MOD_RESULT(OnCheckLimit, MOD_RESULT, (user, Ptr));
321                                         if (!MOD_RESULT.check((Ptr->GetUserCounter() < atol(limit.c_str()) || can_bypass)))
322                                         {
323                                                 user->WriteNumeric(ERR_CHANNELISFULL, "%s %s :Cannot join channel (Channel is full)",user->nick.c_str(), Ptr->name.c_str());
324                                                 return NULL;
325                                         }
326                                 }
327
328                                 if (Ptr->IsBanned(user) && !can_bypass)
329                                 {
330                                         user->WriteNumeric(ERR_BANNEDFROMCHAN, "%s %s :Cannot join channel (You're banned)",user->nick.c_str(), Ptr->name.c_str());
331                                         return NULL;
332                                 }
333
334                                 /*
335                                  * If the user has invites for this channel, remove them now
336                                  * after a successful join so they don't build up.
337                                  */
338                                 if (invited)
339                                 {
340                                         IS_LOCAL(user)->RemoveInvite(Ptr->name.c_str());
341                                 }
342                         }
343                 }
344         }
345
346         if (created_by_local)
347         {
348                 /* As spotted by jilles, dont bother to set this on remote users */
349                 Ptr->SetDefaultModes();
350         }
351
352         return Channel::ForceChan(Ptr, user, privs, bursting, created_by_local);
353 }
354
355 Channel* Channel::ForceChan(Channel* Ptr, User* user, const std::string &privs, bool bursting, bool created)
356 {
357         std::string nick = user->nick;
358
359         Membership* memb = Ptr->AddUser(user);
360         user->chans.insert(Ptr);
361
362         for (std::string::const_iterator x = privs.begin(); x != privs.end(); x++)
363         {
364                 const char status = *x;
365                 ModeHandler* mh = ServerInstance->Modes->FindMode(status, MODETYPE_CHANNEL);
366                 if (mh)
367                 {
368                         /* Set, and make sure that the mode handler knows this mode was now set */
369                         Ptr->SetPrefix(user, mh->GetModeChar(), true);
370                         mh->OnModeChange(ServerInstance->FakeClient, ServerInstance->FakeClient, Ptr, nick, true);
371                 }
372         }
373
374         CUList except_list;
375         FOREACH_MOD(I_OnUserJoin,OnUserJoin(memb, bursting, created, except_list));
376
377         Ptr->WriteAllExcept(user, false, 0, except_list, "JOIN :%s", Ptr->name.c_str());
378
379         /* Theyre not the first ones in here, make sure everyone else sees the modes we gave the user */
380         std::string ms = memb->modes;
381         for(unsigned int i=0; i < memb->modes.length(); i++)
382                 ms.append(" ").append(user->nick);
383         if ((Ptr->GetUserCounter() > 1) && (ms.length()))
384                 Ptr->WriteAllExceptSender(user, true, 0, "MODE %s +%s", Ptr->name.c_str(), ms.c_str());
385
386         /* Major improvement by Brain - we dont need to be calculating all this pointlessly for remote users */
387         if (IS_LOCAL(user))
388         {
389                 if (Ptr->topicset)
390                 {
391                         user->WriteNumeric(RPL_TOPIC, "%s %s :%s", user->nick.c_str(), Ptr->name.c_str(), Ptr->topic.c_str());
392                         user->WriteNumeric(RPL_TOPICTIME, "%s %s %s %lu", user->nick.c_str(), Ptr->name.c_str(), Ptr->setby.c_str(), (unsigned long)Ptr->topicset);
393                 }
394                 Ptr->UserList(user);
395         }
396         FOREACH_MOD(I_OnPostJoin,OnPostJoin(memb));
397         return Ptr;
398 }
399
400 bool Channel::IsBanned(User* user)
401 {
402         ModResult result;
403         FIRST_MOD_RESULT(OnCheckChannelBan, result, (user, this));
404
405         if (result != MOD_RES_PASSTHRU)
406                 return (result == MOD_RES_DENY);
407
408         for (BanList::iterator i = this->bans.begin(); i != this->bans.end(); i++)
409         {
410                 if (CheckBan(user, i->data))
411                         return true;
412         }
413         return false;
414 }
415
416 bool Channel::CheckBan(User* user, const std::string& mask)
417 {
418         ModResult result;
419         FIRST_MOD_RESULT(OnCheckBan, result, (user, this, mask));
420         if (result != MOD_RES_PASSTHRU)
421                 return (result == MOD_RES_DENY);
422
423         // extbans were handled above, if this is one it obviously didn't match
424         if (mask[1] == ':')
425                 return false;
426
427         std::string::size_type at = mask.find('@');
428         if (at == std::string::npos)
429                 return false;
430
431         char tomatch[MAXBUF];
432         snprintf(tomatch, MAXBUF, "%s!%s", user->nick.c_str(), user->ident.c_str());
433         std::string prefix = mask.substr(0, at);
434         if (InspIRCd::Match(tomatch, prefix, NULL))
435         {
436                 std::string suffix = mask.substr(at + 1);
437                 if (InspIRCd::Match(user->host, suffix, NULL) ||
438                         InspIRCd::Match(user->dhost, suffix, NULL) ||
439                         InspIRCd::MatchCIDR(user->GetIPString(), suffix, NULL))
440                         return true;
441         }
442         return false;
443 }
444
445 ModResult Channel::GetExtBanStatus(User *user, char type)
446 {
447         ModResult rv;
448         FIRST_MOD_RESULT(OnExtBanCheck, rv, (user, this, type));
449         if (rv != MOD_RES_PASSTHRU)
450                 return rv;
451         for (BanList::iterator i = this->bans.begin(); i != this->bans.end(); i++)
452         {
453                 if (i->data[0] == type && i->data[1] == ':')
454                 {
455                         std::string val = i->data.substr(2);
456                         if (CheckBan(user, val))
457                                 return MOD_RES_DENY;
458                 }
459         }
460         return MOD_RES_PASSTHRU;
461 }
462
463 /* Channel::PartUser
464  * remove a channel from a users record, and return the number of users left.
465  * Therefore, if this function returns 0 the caller should delete the Channel.
466  */
467 void Channel::PartUser(User *user, std::string &reason)
468 {
469         if (!user)
470                 return;
471
472         Membership* memb = GetUser(user);
473
474         if (memb)
475         {
476                 CUList except_list;
477                 FOREACH_MOD(I_OnUserPart,OnUserPart(memb, reason, except_list));
478
479                 WriteAllExcept(user, false, 0, except_list, "PART %s%s%s", this->name.c_str(), reason.empty() ? "" : " :", reason.c_str());
480
481                 user->chans.erase(this);
482                 this->RemoveAllPrefixes(user);
483         }
484
485         this->DelUser(user);
486 }
487
488 void Channel::KickUser(User *src, User *user, const char* reason)
489 {
490         if (!src || !user || !reason)
491                 return;
492
493         Membership* memb = GetUser(user);
494         if (IS_LOCAL(src))
495         {
496                 if (!memb)
497                 {
498                         src->WriteNumeric(ERR_USERNOTINCHANNEL, "%s %s %s :They are not on that channel",src->nick.c_str(), user->nick.c_str(), this->name.c_str());
499                         return;
500                 }
501                 if ((ServerInstance->ULine(user->server)) && (!ServerInstance->ULine(src->server)))
502                 {
503                         src->WriteNumeric(ERR_CHANOPRIVSNEEDED, "%s %s :Only a u-line may kick a u-line from a channel.",src->nick.c_str(), this->name.c_str());
504                         return;
505                 }
506
507                 ModResult res;
508                 if (ServerInstance->ULine(src->server))
509                         res = MOD_RES_ALLOW;
510                 else
511                         FIRST_MOD_RESULT(OnUserPreKick, res, (src,memb,reason));
512
513                 if (res == MOD_RES_DENY)
514                         return;
515
516                 if (res == MOD_RES_PASSTHRU)
517                 {
518                         int them = this->GetPrefixValue(src);
519                         int us = this->GetPrefixValue(user);
520                         if ((them < HALFOP_VALUE) || (them < us))
521                         {
522                                 src->WriteNumeric(ERR_CHANOPRIVSNEEDED, "%s %s :You must be a channel %soperator",src->nick.c_str(), this->name.c_str(), them >= HALFOP_VALUE ? "" : "half-");
523                                 return;
524                         }
525                 }
526         }
527
528         if (memb)
529         {
530                 CUList except_list;
531                 FOREACH_MOD(I_OnUserKick,OnUserKick(src, memb, reason, except_list));
532
533                 WriteAllExcept(src, false, 0, except_list, "KICK %s %s :%s", name.c_str(), user->nick.c_str(), reason);
534
535                 user->chans.erase(this);
536                 this->RemoveAllPrefixes(user);
537         }
538
539         this->DelUser(user);
540 }
541
542 void Channel::WriteChannel(User* user, const char* text, ...)
543 {
544         char textbuffer[MAXBUF];
545         va_list argsPtr;
546
547         if (!user || !text)
548                 return;
549
550         va_start(argsPtr, text);
551         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
552         va_end(argsPtr);
553
554         this->WriteChannel(user, std::string(textbuffer));
555 }
556
557 void Channel::WriteChannel(User* user, const std::string &text)
558 {
559         char tb[MAXBUF];
560
561         if (!user)
562                 return;
563
564         snprintf(tb,MAXBUF,":%s %s", user->GetFullHost().c_str(), text.c_str());
565         std::string out = tb;
566
567         for (UserMembIter i = userlist.begin(); i != userlist.end(); i++)
568         {
569                 if (IS_LOCAL(i->first))
570                         i->first->Write(out);
571         }
572 }
573
574 void Channel::WriteChannelWithServ(const std::string& ServName, const char* text, ...)
575 {
576         char textbuffer[MAXBUF];
577         va_list argsPtr;
578
579         if (!text)
580                 return;
581
582         va_start(argsPtr, text);
583         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
584         va_end(argsPtr);
585
586         this->WriteChannelWithServ(ServName, std::string(textbuffer));
587 }
588
589 void Channel::WriteChannelWithServ(const std::string& ServName, const std::string &text)
590 {
591         char tb[MAXBUF];
592
593         snprintf(tb,MAXBUF,":%s %s", ServName.empty() ? ServerInstance->Config->ServerName.c_str() : ServName.c_str(), text.c_str());
594         std::string out = tb;
595
596         for (UserMembIter i = userlist.begin(); i != userlist.end(); i++)
597         {
598                 if (IS_LOCAL(i->first))
599                         i->first->Write(out);
600         }
601 }
602
603 /* write formatted text from a source user to all users on a channel except
604  * for the sender (for privmsg etc) */
605 void Channel::WriteAllExceptSender(User* user, bool serversource, char status, const char* text, ...)
606 {
607         char textbuffer[MAXBUF];
608         va_list argsPtr;
609
610         if (!text)
611                 return;
612
613         va_start(argsPtr, text);
614         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
615         va_end(argsPtr);
616
617         this->WriteAllExceptSender(user, serversource, status, std::string(textbuffer));
618 }
619
620 void Channel::WriteAllExcept(User* user, bool serversource, char status, CUList &except_list, const char* text, ...)
621 {
622         char textbuffer[MAXBUF];
623         va_list argsPtr;
624
625         if (!text)
626                 return;
627
628         int offset = snprintf(textbuffer,MAXBUF,":%s ", user->GetFullHost().c_str());
629
630         va_start(argsPtr, text);
631         vsnprintf(textbuffer + offset, MAXBUF - offset, text, argsPtr);
632         va_end(argsPtr);
633
634         this->RawWriteAllExcept(user, serversource, status, except_list, std::string(textbuffer));
635 }
636
637 void Channel::WriteAllExcept(User* user, bool serversource, char status, CUList &except_list, const std::string &text)
638 {
639         char tb[MAXBUF];
640
641         snprintf(tb,MAXBUF,":%s %s", serversource ? ServerInstance->Config->ServerName.c_str() : user->GetFullHost().c_str(), text.c_str());
642         std::string out = tb;
643
644         this->RawWriteAllExcept(user, serversource, status, except_list, std::string(tb));
645 }
646
647 void Channel::RawWriteAllExcept(User* user, bool serversource, char status, CUList &except_list, const std::string &out)
648 {
649         unsigned int minrank = 0;
650         if (status)
651         {
652                 ModeHandler* mh = ServerInstance->Modes->FindPrefix(status);
653                 if (mh)
654                         minrank = mh->GetPrefixRank();
655         }
656         for (UserMembIter i = userlist.begin(); i != userlist.end(); i++)
657         {
658                 if (IS_LOCAL(i->first) && (except_list.find(i->first) == except_list.end()))
659                 {
660                         /* User doesn't have the status we're after */
661                         if (minrank && i->second->getRank() < minrank)
662                                 continue;
663
664                         i->first->Write(out);
665                 }
666         }
667 }
668
669 void Channel::WriteAllExceptSender(User* user, bool serversource, char status, const std::string& text)
670 {
671         CUList except_list;
672         except_list.insert(user);
673         this->WriteAllExcept(user, serversource, status, except_list, std::string(text));
674 }
675
676 /*
677  * return a count of the users on a specific channel accounting for
678  * invisible users who won't increase the count. e.g. for /LIST
679  */
680 int Channel::CountInvisible()
681 {
682         int count = 0;
683         for (UserMembIter i = userlist.begin(); i != userlist.end(); i++)
684         {
685                 if (!(i->first->IsModeSet('i')))
686                         count++;
687         }
688
689         return count;
690 }
691
692 char* Channel::ChanModes(bool showkey)
693 {
694         static char scratch[MAXBUF];
695         static char sparam[MAXBUF];
696         char* offset = scratch;
697         std::string extparam;
698
699         *scratch = '\0';
700         *sparam = '\0';
701
702         /* This was still iterating up to 190, Channel::modes is only 64 elements -- Om */
703         for(int n = 0; n < 64; n++)
704         {
705                 if(this->modes[n])
706                 {
707                         *offset++ = n + 65;
708                         extparam.clear();
709                         switch (n)
710                         {
711                                 case CM_KEY:
712                                         // Unfortunately this must be special-cased, as we definitely don't want to always display key.
713                                         if (showkey)
714                                         {
715                                                 extparam = this->GetModeParameter('k');
716                                         }
717                                         else
718                                         {
719                                                 extparam = "<key>";
720                                         }
721                                         break;
722                                 case CM_NOEXTERNAL:
723                                 case CM_TOPICLOCK:
724                                 case CM_INVITEONLY:
725                                 case CM_MODERATED:
726                                 case CM_SECRET:
727                                 case CM_PRIVATE:
728                                         /* We know these have no parameters */
729                                 break;
730                                 default:
731                                         extparam = this->GetModeParameter(n + 65);
732                                 break;
733                         }
734                         if (!extparam.empty())
735                         {
736                                 charlcat(sparam,' ',MAXBUF);
737                                 strlcat(sparam,extparam.c_str(),MAXBUF);
738                         }
739                 }
740         }
741
742         /* Null terminate scratch */
743         *offset = '\0';
744         strlcat(scratch,sparam,MAXBUF);
745         return scratch;
746 }
747
748 /* compile a userlist of a channel into a string, each nick seperated by
749  * spaces and op, voice etc status shown as @ and +, and send it to 'user'
750  */
751 void Channel::UserList(User *user)
752 {
753         char list[MAXBUF];
754         size_t dlen, curlen;
755         ModResult call_modules;
756
757         if (!IS_LOCAL(user))
758                 return;
759
760         FIRST_MOD_RESULT(OnUserList, call_modules, (user, this));
761
762         if (call_modules != MOD_RES_ALLOW)
763         {
764                 if ((this->IsModeSet('s')) && (!this->HasUser(user)))
765                 {
766                         user->WriteNumeric(ERR_NOSUCHNICK, "%s %s :No such nick/channel",user->nick.c_str(), this->name.c_str());
767                         return;
768                 }
769         }
770
771         dlen = curlen = snprintf(list,MAXBUF,"%s %c %s :", user->nick.c_str(), this->IsModeSet('s') ? '@' : this->IsModeSet('p') ? '*' : '=',  this->name.c_str());
772
773         int numusers = 0;
774         char* ptr = list + dlen;
775
776         /* Improvement by Brain - this doesnt change in value, so why was it inside
777          * the loop?
778          */
779         bool has_user = this->HasUser(user);
780
781         for (UserMembIter i = userlist.begin(); i != userlist.end(); i++)
782         {
783                 if ((!has_user) && (i->first->IsModeSet('i')))
784                 {
785                         /*
786                          * user is +i, and source not on the channel, does not show
787                          * nick in NAMES list
788                          */
789                         continue;
790                 }
791
792                 std::string prefixlist = this->GetPrefixChar(i->first);
793                 std::string nick = i->first->nick;
794
795                 if (call_modules != MOD_RES_DENY)
796                 {
797                         FOREACH_MOD(I_OnNamesListItem, OnNamesListItem(user, i->second, prefixlist, nick));
798
799                         /* Nick was nuked, a module wants us to skip it */
800                         if (nick.empty())
801                                 continue;
802                 }
803
804                 size_t ptrlen = 0;
805
806                 if (curlen + prefixlist.length() + nick.length() + 1 > 480)
807                 {
808                         /* list overflowed into multiple numerics */
809                         user->WriteNumeric(RPL_NAMREPLY, std::string(list));
810
811                         /* reset our lengths */
812                         dlen = curlen = snprintf(list,MAXBUF,"%s %c %s :", user->nick.c_str(), this->IsModeSet('s') ? '@' : this->IsModeSet('p') ? '*' : '=', this->name.c_str());
813                         ptr = list + dlen;
814
815                         ptrlen = 0;
816                         numusers = 0;
817                 }
818
819                 ptrlen = snprintf(ptr, MAXBUF, "%s%s ", prefixlist.c_str(), nick.c_str());
820
821                 curlen += ptrlen;
822                 ptr += ptrlen;
823
824                 numusers++;
825         }
826
827         /* if whats left in the list isnt empty, send it */
828         if (numusers)
829         {
830                 user->WriteNumeric(RPL_NAMREPLY, std::string(list));
831         }
832
833         user->WriteNumeric(RPL_ENDOFNAMES, "%s %s :End of /NAMES list.", user->nick.c_str(), this->name.c_str());
834 }
835
836 long Channel::GetMaxBans()
837 {
838         /* Return the cached value if there is one */
839         if (this->maxbans)
840                 return this->maxbans;
841
842         /* If there isnt one, we have to do some O(n) hax to find it the first time. (ick) */
843         for (std::map<std::string,int>::iterator n = ServerInstance->Config->maxbans.begin(); n != ServerInstance->Config->maxbans.end(); n++)
844         {
845                 if (InspIRCd::Match(this->name, n->first, NULL))
846                 {
847                         this->maxbans = n->second;
848                         return n->second;
849                 }
850         }
851
852         /* Screw it, just return the default of 64 */
853         this->maxbans = 64;
854         return this->maxbans;
855 }
856
857 void Channel::ResetMaxBans()
858 {
859         this->maxbans = 0;
860 }
861
862 /* returns the status character for a given user on a channel, e.g. @ for op,
863  * % for halfop etc. If the user has several modes set, the highest mode
864  * the user has must be returned.
865  */
866 const char* Channel::GetPrefixChar(User *user)
867 {
868         static char pf[2] = {0, 0};
869         *pf = 0;
870         unsigned int bestrank = 0;
871
872         UserMembIter m = userlist.find(user);
873         if (m != userlist.end())
874         {
875                 for(unsigned int i=0; i < m->second->modes.length(); i++)
876                 {
877                         char mchar = m->second->modes[i];
878                         ModeHandler* mh = ServerInstance->Modes->FindMode(mchar, MODETYPE_CHANNEL);
879                         if (mh && mh->GetPrefixRank() > bestrank && mh->GetPrefix())
880                         {
881                                 bestrank = mh->GetPrefixRank();
882                                 pf[0] = mh->GetPrefix();
883                         }
884                 }
885         }
886         return pf;
887 }
888
889 unsigned int Membership::getRank()
890 {
891         char mchar = modes.c_str()[0];
892         unsigned int rv = 0;
893         if (mchar)
894         {
895                 ModeHandler* mh = ServerInstance->Modes->FindMode(mchar, MODETYPE_CHANNEL);
896                 if (mh)
897                         rv = mh->GetPrefixRank();
898         }
899         return rv;
900 }
901
902 const char* Channel::GetAllPrefixChars(User* user)
903 {
904         static char prefix[64];
905         int ctr = 0;
906
907         UserMembIter m = userlist.find(user);
908         if (m != userlist.end())
909         {
910                 for(unsigned int i=0; i < m->second->modes.length(); i++)
911                 {
912                         char mchar = m->second->modes[i];
913                         ModeHandler* mh = ServerInstance->Modes->FindMode(mchar, MODETYPE_CHANNEL);
914                         if (mh && mh->GetPrefix())
915                                 prefix[ctr++] = mh->GetPrefix();
916                 }
917         }
918         prefix[ctr] = 0;
919
920         return prefix;
921 }
922
923 unsigned int Channel::GetPrefixValue(User* user)
924 {
925         UserMembIter m = userlist.find(user);
926         if (m == userlist.end())
927                 return 0;
928         return m->second->getRank();
929 }
930
931 void Channel::SetPrefix(User* user, char prefix, bool adding)
932 {
933         ModeHandler* delta_mh = ServerInstance->Modes->FindMode(prefix, MODETYPE_CHANNEL);
934         if (!delta_mh)
935                 return;
936         UserMembIter m = userlist.find(user);
937         if (m == userlist.end())
938                 return;
939         for(unsigned int i=0; i < m->second->modes.length(); i++)
940         {
941                 char mchar = m->second->modes[i];
942                 ModeHandler* mh = ServerInstance->Modes->FindMode(mchar, MODETYPE_CHANNEL);
943                 if (mh && mh->GetPrefixRank() <= delta_mh->GetPrefixRank())
944                 {
945                         m->second->modes =
946                                 m->second->modes.substr(0,i) +
947                                 (adding ? std::string(1, prefix) : "") +
948                                 m->second->modes.substr(mchar == prefix ? i+1 : i);
949                         return;
950                 }
951         }
952         if (adding)
953                 m->second->modes += std::string(1, prefix);
954 }
955
956 void Channel::RemoveAllPrefixes(User* user)
957 {
958         UserMembIter m = userlist.find(user);
959         if (m != userlist.end())
960         {
961                 m->second->modes.clear();
962         }
963 }