]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/channels.cpp
cab4fb73964b9188b92b0c6c52a92faf87ce6f73
[user/henk/code/inspircd.git] / src / channels.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2006-2008 Robin Burchell <robin+git@viroteck.net>
6  *   Copyright (C) 2006, 2008 Oliver Lupton <oliverlupton@gmail.com>
7  *   Copyright (C) 2008 Pippijn van Steenhoven <pip88nl@gmail.com>
8  *   Copyright (C) 2003-2008 Craig Edwards <craigedwards@brainbox.cc>
9  *   Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
10  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
11  *
12  * This file is part of InspIRCd.  InspIRCd is free software: you can
13  * redistribute it and/or modify it under the terms of the GNU General Public
14  * License as published by the Free Software Foundation, version 2.
15  *
16  * This program is distributed in the hope that it will be useful, but WITHOUT
17  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
18  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
19  * details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
23  */
24
25
26 #include "inspircd.h"
27 #include "listmode.h"
28 #include <cstdarg>
29 #include "mode.h"
30
31 namespace
32 {
33         ChanModeReference ban(NULL, "ban");
34         ChanModeReference inviteonlymode(NULL, "inviteonly");
35         ChanModeReference keymode(NULL, "key");
36         ChanModeReference limitmode(NULL, "limit");
37         ChanModeReference secretmode(NULL, "secret");
38         ChanModeReference privatemode(NULL, "private");
39         UserModeReference invisiblemode(NULL, "invisible");
40 }
41
42 Channel::Channel(const std::string &cname, time_t ts)
43         : name(cname), age(ts), topicset(0)
44 {
45         if (!ServerInstance->chanlist->insert(std::make_pair(cname, this)).second)
46                 throw CoreException("Cannot create duplicate channel " + cname);
47 }
48
49 void Channel::SetMode(ModeHandler* mh, bool on)
50 {
51         modes[mh->GetModeChar() - 65] = on;
52 }
53
54 void Channel::SetModeParam(ModeHandler* mh, const std::string& parameter)
55 {
56         char mode = mh->GetModeChar();
57         if (parameter.empty())
58         {
59                 custom_mode_params.erase(mode);
60                 modes[mode-65] = false;
61         }
62         else
63         {
64                 custom_mode_params[mode] = parameter;
65                 modes[mode-65] = true;
66         }
67 }
68
69 std::string Channel::GetModeParameter(ModeHandler* mode)
70 {
71         CustomModeList::iterator n = custom_mode_params.find(mode->GetModeChar());
72         if (n != custom_mode_params.end())
73                 return n->second;
74         return "";
75 }
76
77 void Channel::SetTopic(User* u, const std::string& ntopic)
78 {
79         this->topic.assign(ntopic, 0, ServerInstance->Config->Limits.MaxTopic);
80         this->setby.assign(ServerInstance->Config->FullHostInTopic ? u->GetFullHost() : u->nick, 0, 128);
81         this->WriteChannel(u, "TOPIC %s :%s", this->name.c_str(), this->topic.c_str());
82         this->topicset = ServerInstance->Time();
83
84         FOREACH_MOD(OnPostTopicChange, (u, this, this->topic));
85 }
86
87 Membership* Channel::AddUser(User* user)
88 {
89         Membership*& memb = userlist[user];
90         if (memb)
91                 return NULL;
92
93         memb = new Membership(user, this);
94         return memb;
95 }
96
97 void Channel::DelUser(User* user)
98 {
99         UserMembIter it = userlist.find(user);
100         if (it != userlist.end())
101                 DelUser(it);
102 }
103
104 void Channel::CheckDestroy()
105 {
106         if (!userlist.empty())
107                 return;
108
109         ModResult res;
110         FIRST_MOD_RESULT(OnChannelPreDelete, res, (this));
111         if (res == MOD_RES_DENY)
112                 return;
113
114         chan_hash::iterator iter = ServerInstance->chanlist->find(this->name);
115         /* kill the record */
116         if (iter != ServerInstance->chanlist->end())
117         {
118                 FOREACH_MOD(OnChannelDelete, (this));
119                 ServerInstance->chanlist->erase(iter);
120         }
121
122         ClearInvites();
123         ServerInstance->GlobalCulls.AddItem(this);
124 }
125
126 void Channel::DelUser(const UserMembIter& membiter)
127 {
128         Membership* memb = membiter->second;
129         memb->cull();
130         delete memb;
131         userlist.erase(membiter);
132
133         // If this channel became empty then it should be removed
134         CheckDestroy();
135 }
136
137 Membership* Channel::GetUser(User* user)
138 {
139         UserMembIter i = userlist.find(user);
140         if (i == userlist.end())
141                 return NULL;
142         return i->second;
143 }
144
145 void Channel::SetDefaultModes()
146 {
147         ServerInstance->Logs->Log("CHANNELS", LOG_DEBUG, "SetDefaultModes %s",
148                 ServerInstance->Config->DefaultModes.c_str());
149         irc::spacesepstream list(ServerInstance->Config->DefaultModes);
150         std::string modeseq;
151         std::string parameter;
152
153         list.GetToken(modeseq);
154
155         for (std::string::iterator n = modeseq.begin(); n != modeseq.end(); ++n)
156         {
157                 ModeHandler* mode = ServerInstance->Modes->FindMode(*n, MODETYPE_CHANNEL);
158                 if (mode)
159                 {
160                         if (mode->GetPrefixRank())
161                                 continue;
162
163                         if (mode->GetNumParams(true))
164                                 list.GetToken(parameter);
165                         else
166                                 parameter.clear();
167
168                         mode->OnModeChange(ServerInstance->FakeClient, ServerInstance->FakeClient, this, parameter, true);
169                 }
170         }
171 }
172
173 /*
174  * add a channel to a user, creating the record for it if needed and linking
175  * it to the user record
176  */
177 Channel* Channel::JoinUser(LocalUser* user, std::string cname, bool override, const std::string& key)
178 {
179         if (user->registered != REG_ALL)
180         {
181                 ServerInstance->Logs->Log("CHANNELS", LOG_DEBUG, "Attempted to join unregistered user " + user->uuid + " to channel " + cname);
182                 return NULL;
183         }
184
185         /*
186          * We don't restrict the number of channels that remote users or users that are override-joining may be in.
187          * We restrict local users to MaxChans channels.
188          * We restrict local operators to OperMaxChans channels.
189          * This is a lot more logical than how it was formerly. -- w00t
190          */
191         if (!override)
192         {
193                 if (user->HasPrivPermission("channels/high-join-limit"))
194                 {
195                         if (user->chans.size() >= ServerInstance->Config->OperMaxChans)
196                         {
197                                 user->WriteNumeric(ERR_TOOMANYCHANNELS, "%s %s :You are on too many channels",user->nick.c_str(), cname.c_str());
198                                 return NULL;
199                         }
200                 }
201                 else
202                 {
203                         unsigned int maxchans = user->GetClass()->maxchans;
204                         if (!maxchans)
205                                 maxchans = ServerInstance->Config->MaxChans;
206                         if (user->chans.size() >= maxchans)
207                         {
208                                 user->WriteNumeric(ERR_TOOMANYCHANNELS, "%s %s :You are on too many channels",user->nick.c_str(), cname.c_str());
209                                 return NULL;
210                         }
211                 }
212         }
213
214         // Crop channel name if it's too long
215         if (cname.length() > ServerInstance->Config->Limits.ChanMax)
216                 cname.resize(ServerInstance->Config->Limits.ChanMax);
217
218         Channel* chan = ServerInstance->FindChan(cname);
219         bool created_by_local = (chan == NULL); // Flag that will be passed to modules in the OnUserJoin() hook later
220         std::string privs; // Prefix mode(letter)s to give to the joining user
221
222         if (!chan)
223         {
224                 privs = ServerInstance->Config->DefaultModes.substr(0, ServerInstance->Config->DefaultModes.find(' '));
225
226                 if (override == false)
227                 {
228                         // Ask the modules whether they're ok with the join, pass NULL as Channel* as the channel is yet to be created
229                         ModResult MOD_RESULT;
230                         FIRST_MOD_RESULT(OnUserPreJoin, MOD_RESULT, (user, NULL, cname, privs, key));
231                         if (MOD_RESULT == MOD_RES_DENY)
232                                 return NULL; // A module wasn't happy with the join, abort
233                 }
234
235                 chan = new Channel(cname, ServerInstance->Time());
236                 // Set the default modes on the channel (<options:defaultmodes>)
237                 chan->SetDefaultModes();
238         }
239         else
240         {
241                 /* Already on the channel */
242                 if (chan->HasUser(user))
243                         return NULL;
244
245                 if (override == false)
246                 {
247                         ModResult MOD_RESULT;
248                         FIRST_MOD_RESULT(OnUserPreJoin, MOD_RESULT, (user, chan, cname, privs, key));
249
250                         // A module explicitly denied the join and (hopefully) generated a message
251                         // describing the situation, so we may stop here without sending anything
252                         if (MOD_RESULT == MOD_RES_DENY)
253                                 return NULL;
254
255                         // If no module returned MOD_RES_DENY or MOD_RES_ALLOW (which is the case
256                         // most of the time) then proceed to check channel modes +k, +i, +l and bans,
257                         // in this order.
258                         // If a module explicitly allowed the join (by returning MOD_RES_ALLOW),
259                         // then this entire section is skipped
260                         if (MOD_RESULT == MOD_RES_PASSTHRU)
261                         {
262                                 std::string ckey = chan->GetModeParameter(keymode);
263                                 bool invited = user->IsInvited(chan);
264                                 bool can_bypass = ServerInstance->Config->InvBypassModes && invited;
265
266                                 if (!ckey.empty())
267                                 {
268                                         FIRST_MOD_RESULT(OnCheckKey, MOD_RESULT, (user, chan, key));
269                                         if (!MOD_RESULT.check((ckey == key) || can_bypass))
270                                         {
271                                                 // If no key provided, or key is not the right one, and can't bypass +k (not invited or option not enabled)
272                                                 user->WriteNumeric(ERR_BADCHANNELKEY, "%s %s :Cannot join channel (Incorrect channel key)",user->nick.c_str(), chan->name.c_str());
273                                                 return NULL;
274                                         }
275                                 }
276
277                                 if (chan->IsModeSet(inviteonlymode))
278                                 {
279                                         FIRST_MOD_RESULT(OnCheckInvite, MOD_RESULT, (user, chan));
280                                         if (!MOD_RESULT.check(invited))
281                                         {
282                                                 user->WriteNumeric(ERR_INVITEONLYCHAN, "%s %s :Cannot join channel (Invite only)",user->nick.c_str(), chan->name.c_str());
283                                                 return NULL;
284                                         }
285                                 }
286
287                                 std::string limit = chan->GetModeParameter(limitmode);
288                                 if (!limit.empty())
289                                 {
290                                         FIRST_MOD_RESULT(OnCheckLimit, MOD_RESULT, (user, chan));
291                                         if (!MOD_RESULT.check((chan->GetUserCounter() < atol(limit.c_str()) || can_bypass)))
292                                         {
293                                                 user->WriteNumeric(ERR_CHANNELISFULL, "%s %s :Cannot join channel (Channel is full)",user->nick.c_str(), chan->name.c_str());
294                                                 return NULL;
295                                         }
296                                 }
297
298                                 if (chan->IsBanned(user) && !can_bypass)
299                                 {
300                                         user->WriteNumeric(ERR_BANNEDFROMCHAN, "%s %s :Cannot join channel (You're banned)",user->nick.c_str(), chan->name.c_str());
301                                         return NULL;
302                                 }
303
304                                 /*
305                                  * If the user has invites for this channel, remove them now
306                                  * after a successful join so they don't build up.
307                                  */
308                                 if (invited)
309                                 {
310                                         user->RemoveInvite(chan);
311                                 }
312                         }
313                 }
314         }
315
316         // We figured that this join is allowed and also created the
317         // channel if it didn't exist before, now do the actual join
318         chan->ForceJoin(user, &privs, false, created_by_local);
319         return chan;
320 }
321
322 void Channel::ForceJoin(User* user, const std::string* privs, bool bursting, bool created_by_local)
323 {
324         if (IS_SERVER(user))
325         {
326                 ServerInstance->Logs->Log("CHANNELS", LOG_DEBUG, "Attempted to join server user " + user->uuid + " to channel " + this->name);
327                 return;
328         }
329
330         Membership* memb = this->AddUser(user);
331         if (!memb)
332                 return; // Already on the channel
333
334         user->chans.insert(this);
335
336         if (privs)
337         {
338                 // If the user was granted prefix modes (in the OnUserPreJoin hook, or he's a
339                 // remote user and his own server set the modes), then set them internally now
340                 memb->modes = *privs;
341                 for (std::string::const_iterator i = privs->begin(); i != privs->end(); ++i)
342                 {
343                         ModeHandler* mh = ServerInstance->Modes->FindMode(*i, MODETYPE_CHANNEL);
344                         if (mh && mh->GetPrefixRank())
345                         {
346                                 std::string nick = user->nick;
347                                 /* Set, and make sure that the mode handler knows this mode was now set */
348                                 this->SetPrefix(user, mh->GetModeChar(), true);
349                                 mh->OnModeChange(ServerInstance->FakeClient, ServerInstance->FakeClient, this, nick, true);
350                         }
351                 }
352         }
353
354         // Tell modules about this join, they have the chance now to populate except_list with users we won't send the JOIN (and possibly MODE) to
355         CUList except_list;
356         FOREACH_MOD(OnUserJoin, (memb, bursting, created_by_local, except_list));
357
358         this->WriteAllExcept(user, false, 0, except_list, "JOIN :%s", this->name.c_str());
359
360         /* Theyre not the first ones in here, make sure everyone else sees the modes we gave the user */
361         if ((GetUserCounter() > 1) && (!memb->modes.empty()))
362         {
363                 std::string ms = memb->modes;
364                 for(unsigned int i=0; i < memb->modes.length(); i++)
365                         ms.append(" ").append(user->nick);
366
367                 except_list.insert(user);
368                 this->WriteAllExcept(user, !ServerInstance->Config->CycleHostsFromUser, 0, except_list, "MODE %s +%s", this->name.c_str(), ms.c_str());
369         }
370
371         if (IS_LOCAL(user))
372         {
373                 if (this->topicset)
374                 {
375                         user->WriteNumeric(RPL_TOPIC, "%s %s :%s", user->nick.c_str(), this->name.c_str(), this->topic.c_str());
376                         user->WriteNumeric(RPL_TOPICTIME, "%s %s %s %lu", user->nick.c_str(), this->name.c_str(), this->setby.c_str(), (unsigned long)this->topicset);
377                 }
378                 this->UserList(user);
379         }
380
381         FOREACH_MOD(OnPostJoin, (memb));
382 }
383
384 bool Channel::IsBanned(User* user)
385 {
386         ModResult result;
387         FIRST_MOD_RESULT(OnCheckChannelBan, result, (user, this));
388
389         if (result != MOD_RES_PASSTHRU)
390                 return (result == MOD_RES_DENY);
391
392         ListModeBase* banlm = static_cast<ListModeBase*>(*ban);
393         const ListModeBase::ModeList* bans = banlm->GetList(this);
394         if (bans)
395         {
396                 for (ListModeBase::ModeList::const_iterator it = bans->begin(); it != bans->end(); it++)
397                 {
398                         if (CheckBan(user, it->mask))
399                                 return true;
400                 }
401         }
402         return false;
403 }
404
405 bool Channel::CheckBan(User* user, const std::string& mask)
406 {
407         ModResult result;
408         FIRST_MOD_RESULT(OnCheckBan, result, (user, this, mask));
409         if (result != MOD_RES_PASSTHRU)
410                 return (result == MOD_RES_DENY);
411
412         // extbans were handled above, if this is one it obviously didn't match
413         if ((mask.length() <= 2) || (mask[1] == ':'))
414                 return false;
415
416         std::string::size_type at = mask.find('@');
417         if (at == std::string::npos)
418                 return false;
419
420         const std::string nickIdent = user->nick + "!" + user->ident;
421         std::string prefix = mask.substr(0, at);
422         if (InspIRCd::Match(nickIdent, prefix, NULL))
423         {
424                 std::string suffix = mask.substr(at + 1);
425                 if (InspIRCd::Match(user->host, suffix, NULL) ||
426                         InspIRCd::Match(user->dhost, suffix, NULL) ||
427                         InspIRCd::MatchCIDR(user->GetIPString(), suffix, NULL))
428                         return true;
429         }
430         return false;
431 }
432
433 ModResult Channel::GetExtBanStatus(User *user, char type)
434 {
435         ModResult rv;
436         FIRST_MOD_RESULT(OnExtBanCheck, rv, (user, this, type));
437         if (rv != MOD_RES_PASSTHRU)
438                 return rv;
439
440         ListModeBase* banlm = static_cast<ListModeBase*>(*ban);
441         const ListModeBase::ModeList* bans = banlm->GetList(this);
442         if (bans)
443
444         {
445                 for (ListModeBase::ModeList::const_iterator it = bans->begin(); it != bans->end(); ++it)
446                 {
447                         if (CheckBan(user, it->mask))
448                                 return MOD_RES_DENY;
449                 }
450         }
451         return MOD_RES_PASSTHRU;
452 }
453
454 /* Channel::PartUser
455  * Remove a channel from a users record, remove the reference to the Membership object
456  * from the channel and destroy it.
457  */
458 void Channel::PartUser(User *user, std::string &reason)
459 {
460         UserMembIter membiter = userlist.find(user);
461
462         if (membiter != userlist.end())
463         {
464                 Membership* memb = membiter->second;
465                 CUList except_list;
466                 FOREACH_MOD(OnUserPart, (memb, reason, except_list));
467
468                 WriteAllExcept(user, false, 0, except_list, "PART %s%s%s", this->name.c_str(), reason.empty() ? "" : " :", reason.c_str());
469
470                 // Remove this channel from the user's chanlist
471                 user->chans.erase(this);
472                 // Remove the Membership from this channel's userlist and destroy it
473                 this->DelUser(membiter);
474         }
475 }
476
477 void Channel::KickUser(User* src, User* victim, const std::string& reason, Membership* srcmemb)
478 {
479         UserMembIter victimiter = userlist.find(victim);
480         Membership* memb = ((victimiter != userlist.end()) ? victimiter->second : NULL);
481
482         if (!memb)
483         {
484                 src->WriteNumeric(ERR_USERNOTINCHANNEL, "%s %s %s :They are not on that channel",src->nick.c_str(), victim->nick.c_str(), this->name.c_str());
485                 return;
486         }
487
488         // Do the following checks only if the KICK is done by a local user;
489         // each server enforces its own rules.
490         if (IS_LOCAL(src))
491         {
492                 // Modules are allowed to explicitly allow or deny kicks done by local users
493                 ModResult res;
494                 FIRST_MOD_RESULT(OnUserPreKick, res, (src,memb,reason));
495                 if (res == MOD_RES_DENY)
496                         return;
497
498                 if (res == MOD_RES_PASSTHRU)
499                 {
500                         if (!srcmemb)
501                                 srcmemb = GetUser(src);
502                         unsigned int them = srcmemb ? srcmemb->getRank() : 0;
503                         unsigned int req = HALFOP_VALUE;
504                         for (std::string::size_type i = 0; i < memb->modes.length(); i++)
505                         {
506                                 ModeHandler* mh = ServerInstance->Modes->FindMode(memb->modes[i], MODETYPE_CHANNEL);
507                                 if (mh && mh->GetLevelRequired() > req)
508                                         req = mh->GetLevelRequired();
509                         }
510
511                         if (them < req)
512                         {
513                                 src->WriteNumeric(ERR_CHANOPRIVSNEEDED, "%s %s :You must be a channel %soperator",
514                                         src->nick.c_str(), this->name.c_str(), req > HALFOP_VALUE ? "" : "half-");
515                                 return;
516                         }
517                 }
518         }
519
520         CUList except_list;
521         FOREACH_MOD(OnUserKick, (src, memb, reason, except_list));
522
523         WriteAllExcept(src, false, 0, except_list, "KICK %s %s :%s", name.c_str(), victim->nick.c_str(), reason.c_str());
524
525         victim->chans.erase(this);
526         this->DelUser(victimiter);
527 }
528
529 void Channel::WriteChannel(User* user, const char* text, ...)
530 {
531         std::string textbuffer;
532         VAFORMAT(textbuffer, text, text);
533         this->WriteChannel(user, textbuffer);
534 }
535
536 void Channel::WriteChannel(User* user, const std::string &text)
537 {
538         const std::string message = ":" + user->GetFullHost() + " " + text;
539
540         for (UserMembIter i = userlist.begin(); i != userlist.end(); i++)
541         {
542                 if (IS_LOCAL(i->first))
543                         i->first->Write(message);
544         }
545 }
546
547 void Channel::WriteChannelWithServ(const std::string& ServName, const char* text, ...)
548 {
549         std::string textbuffer;
550         VAFORMAT(textbuffer, text, text);
551         this->WriteChannelWithServ(ServName, textbuffer);
552 }
553
554 void Channel::WriteChannelWithServ(const std::string& ServName, const std::string &text)
555 {
556         const std::string message = ":" + (ServName.empty() ? ServerInstance->Config->ServerName : ServName) + " " + text;
557
558         for (UserMembIter i = userlist.begin(); i != userlist.end(); i++)
559         {
560                 if (IS_LOCAL(i->first))
561                         i->first->Write(message);
562         }
563 }
564
565 /* write formatted text from a source user to all users on a channel except
566  * for the sender (for privmsg etc) */
567 void Channel::WriteAllExceptSender(User* user, bool serversource, char status, const char* text, ...)
568 {
569         std::string textbuffer;
570         VAFORMAT(textbuffer, text, text);
571         this->WriteAllExceptSender(user, serversource, status, textbuffer);
572 }
573
574 void Channel::WriteAllExcept(User* user, bool serversource, char status, CUList &except_list, const char* text, ...)
575 {
576         std::string textbuffer;
577         VAFORMAT(textbuffer, text, text);
578         textbuffer = ":" + (serversource ? ServerInstance->Config->ServerName : user->GetFullHost()) + " " + textbuffer;
579         this->RawWriteAllExcept(user, serversource, status, except_list, textbuffer);
580 }
581
582 void Channel::WriteAllExcept(User* user, bool serversource, char status, CUList &except_list, const std::string &text)
583 {
584         const std::string message = ":" + (serversource ? ServerInstance->Config->ServerName : user->GetFullHost()) + " " + text;
585         this->RawWriteAllExcept(user, serversource, status, except_list, message);
586 }
587
588 void Channel::RawWriteAllExcept(User* user, bool serversource, char status, CUList &except_list, const std::string &out)
589 {
590         unsigned int minrank = 0;
591         if (status)
592         {
593                 ModeHandler* mh = ServerInstance->Modes->FindPrefix(status);
594                 if (mh)
595                         minrank = mh->GetPrefixRank();
596         }
597         for (UserMembIter i = userlist.begin(); i != userlist.end(); i++)
598         {
599                 if (IS_LOCAL(i->first) && (except_list.find(i->first) == except_list.end()))
600                 {
601                         /* User doesn't have the status we're after */
602                         if (minrank && i->second->getRank() < minrank)
603                                 continue;
604
605                         i->first->Write(out);
606                 }
607         }
608 }
609
610 void Channel::WriteAllExceptSender(User* user, bool serversource, char status, const std::string& text)
611 {
612         CUList except_list;
613         except_list.insert(user);
614         this->WriteAllExcept(user, serversource, status, except_list, std::string(text));
615 }
616
617 const char* Channel::ChanModes(bool showkey)
618 {
619         static std::string scratch;
620         std::string sparam;
621
622         scratch.clear();
623
624         /* This was still iterating up to 190, Channel::modes is only 64 elements -- Om */
625         for(int n = 0; n < 64; n++)
626         {
627                 if(this->modes[n])
628                 {
629                         scratch.push_back(n + 65);
630                         ModeHandler* mh = ServerInstance->Modes->FindMode(n+'A', MODETYPE_CHANNEL);
631                         if (!mh)
632                                 continue;
633
634                         if (n == 'k' - 65 && !showkey)
635                         {
636                                 sparam += " <key>";
637                         }
638                         else
639                         {
640                                 const std::string param = this->GetModeParameter(mh);
641                                 if (!param.empty())
642                                 {
643                                         sparam += ' ';
644                                         sparam += param;
645                                 }
646                         }
647                 }
648         }
649
650         scratch += sparam;
651         return scratch.c_str();
652 }
653
654 /* compile a userlist of a channel into a string, each nick seperated by
655  * spaces and op, voice etc status shown as @ and +, and send it to 'user'
656  */
657 void Channel::UserList(User *user)
658 {
659         if (this->IsModeSet(secretmode) && !this->HasUser(user) && !user->HasPrivPermission("channels/auspex"))
660         {
661                 user->WriteNumeric(ERR_NOSUCHNICK, "%s %s :No such nick/channel",user->nick.c_str(), this->name.c_str());
662                 return;
663         }
664
665         std::string list = user->nick;
666         list.push_back(' ');
667         list.push_back(this->IsModeSet(secretmode) ? '@' : this->IsModeSet(privatemode) ? '*' : '=');
668         list.push_back(' ');
669         list.append(this->name).append(" :");
670         std::string::size_type pos = list.size();
671
672         bool has_one = false;
673
674         /* Improvement by Brain - this doesnt change in value, so why was it inside
675          * the loop?
676          */
677         bool has_user = this->HasUser(user);
678
679         std::string prefixlist;
680         std::string nick;
681         for (UserMembIter i = userlist.begin(); i != userlist.end(); ++i)
682         {
683                 if (i->first->quitting)
684                         continue;
685                 if ((!has_user) && (i->first->IsModeSet(invisiblemode)))
686                 {
687                         /*
688                          * user is +i, and source not on the channel, does not show
689                          * nick in NAMES list
690                          */
691                         continue;
692                 }
693
694                 prefixlist = this->GetPrefixChar(i->first);
695                 nick = i->first->nick;
696
697                 FOREACH_MOD(OnNamesListItem, (user, i->second, prefixlist, nick));
698
699                 /* Nick was nuked, a module wants us to skip it */
700                 if (nick.empty())
701                         continue;
702
703                 if (list.size() + prefixlist.length() + nick.length() + 1 > 480)
704                 {
705                         /* list overflowed into multiple numerics */
706                         user->WriteNumeric(RPL_NAMREPLY, list);
707
708                         // Erase all nicks, keep the constant part
709                         list.erase(pos);
710                         has_one = false;
711                 }
712
713                 list.append(prefixlist).append(nick).push_back(' ');
714
715                 has_one = true;
716         }
717
718         /* if whats left in the list isnt empty, send it */
719         if (has_one)
720         {
721                 user->WriteNumeric(RPL_NAMREPLY, list);
722         }
723
724         user->WriteNumeric(RPL_ENDOFNAMES, "%s %s :End of /NAMES list.", user->nick.c_str(), this->name.c_str());
725 }
726
727 /* returns the status character for a given user on a channel, e.g. @ for op,
728  * % for halfop etc. If the user has several modes set, the highest mode
729  * the user has must be returned.
730  */
731 const char* Channel::GetPrefixChar(User *user)
732 {
733         static char pf[2] = {0, 0};
734         *pf = 0;
735         unsigned int bestrank = 0;
736
737         UserMembIter m = userlist.find(user);
738         if (m != userlist.end())
739         {
740                 for(unsigned int i=0; i < m->second->modes.length(); i++)
741                 {
742                         char mchar = m->second->modes[i];
743                         ModeHandler* mh = ServerInstance->Modes->FindMode(mchar, MODETYPE_CHANNEL);
744                         if (mh && mh->GetPrefixRank() > bestrank && mh->GetPrefix())
745                         {
746                                 bestrank = mh->GetPrefixRank();
747                                 pf[0] = mh->GetPrefix();
748                         }
749                 }
750         }
751         return pf;
752 }
753
754 unsigned int Membership::getRank()
755 {
756         char mchar = modes.c_str()[0];
757         unsigned int rv = 0;
758         if (mchar)
759         {
760                 ModeHandler* mh = ServerInstance->Modes->FindMode(mchar, MODETYPE_CHANNEL);
761                 if (mh)
762                         rv = mh->GetPrefixRank();
763         }
764         return rv;
765 }
766
767 const char* Channel::GetAllPrefixChars(User* user)
768 {
769         static char prefix[64];
770         int ctr = 0;
771
772         UserMembIter m = userlist.find(user);
773         if (m != userlist.end())
774         {
775                 for(unsigned int i=0; i < m->second->modes.length(); i++)
776                 {
777                         char mchar = m->second->modes[i];
778                         ModeHandler* mh = ServerInstance->Modes->FindMode(mchar, MODETYPE_CHANNEL);
779                         if (mh && mh->GetPrefix())
780                                 prefix[ctr++] = mh->GetPrefix();
781                 }
782         }
783         prefix[ctr] = 0;
784
785         return prefix;
786 }
787
788 unsigned int Channel::GetPrefixValue(User* user)
789 {
790         UserMembIter m = userlist.find(user);
791         if (m == userlist.end())
792                 return 0;
793         return m->second->getRank();
794 }
795
796 bool Channel::SetPrefix(User* user, char prefix, bool adding)
797 {
798         ModeHandler* delta_mh = ServerInstance->Modes->FindMode(prefix, MODETYPE_CHANNEL);
799         if (!delta_mh)
800                 return false;
801         UserMembIter m = userlist.find(user);
802         if (m == userlist.end())
803                 return false;
804         for(unsigned int i=0; i < m->second->modes.length(); i++)
805         {
806                 char mchar = m->second->modes[i];
807                 ModeHandler* mh = ServerInstance->Modes->FindMode(mchar, MODETYPE_CHANNEL);
808                 if (mh && mh->GetPrefixRank() <= delta_mh->GetPrefixRank())
809                 {
810                         m->second->modes =
811                                 m->second->modes.substr(0,i) +
812                                 (adding ? std::string(1, prefix) : "") +
813                                 m->second->modes.substr(mchar == prefix ? i+1 : i);
814                         return adding != (mchar == prefix);
815                 }
816         }
817         if (adding)
818                 m->second->modes += std::string(1, prefix);
819         return adding;
820 }
821
822 void Invitation::Create(Channel* c, LocalUser* u, time_t timeout)
823 {
824         if ((timeout != 0) && (ServerInstance->Time() >= timeout))
825                 // Expired, don't bother
826                 return;
827
828         ServerInstance->Logs->Log("INVITATION", LOG_DEBUG, "Invitation::Create chan=%s user=%s", c->name.c_str(), u->uuid.c_str());
829
830         Invitation* inv = Invitation::Find(c, u, false);
831         if (inv)
832         {
833                  if ((inv->expiry == 0) || (inv->expiry > timeout))
834                         return;
835                 inv->expiry = timeout;
836                 ServerInstance->Logs->Log("INVITATION", LOG_DEBUG, "Invitation::Create changed expiry in existing invitation %p", (void*) inv);
837         }
838         else
839         {
840                 inv = new Invitation(c, u, timeout);
841                 c->invites.push_back(inv);
842                 u->invites.push_back(inv);
843                 ServerInstance->Logs->Log("INVITATION", LOG_DEBUG, "Invitation::Create created new invitation %p", (void*) inv);
844         }
845 }
846
847 Invitation* Invitation::Find(Channel* c, LocalUser* u, bool check_expired)
848 {
849         ServerInstance->Logs->Log("INVITATION", LOG_DEBUG, "Invitation::Find chan=%s user=%s check_expired=%d", c ? c->name.c_str() : "NULL", u ? u->uuid.c_str() : "NULL", check_expired);
850         if (!u || u->invites.empty())
851                 return NULL;
852
853         InviteList locallist;
854         locallist.swap(u->invites);
855
856         Invitation* result = NULL;
857         for (InviteList::iterator i = locallist.begin(); i != locallist.end(); )
858         {
859                 Invitation* inv = *i;
860                 if ((check_expired) && (inv->expiry != 0) && (inv->expiry <= ServerInstance->Time()))
861                 {
862                         /* Expired invite, remove it. */
863                         std::string expiration = ServerInstance->TimeString(inv->expiry);
864                         ServerInstance->Logs->Log("INVITATION", LOG_DEBUG, "Invitation::Find ecountered expired entry: %p expired %s", (void*) inv, expiration.c_str());
865                         i = locallist.erase(i);
866                         inv->cull();
867                         delete inv;
868                 }
869                 else
870                 {
871                         /* Is it what we're searching for? */
872                         if (inv->chan == c)
873                         {
874                                 result = inv;
875                                 break;
876                         }
877                         ++i;
878                 }
879         }
880
881         locallist.swap(u->invites);
882         ServerInstance->Logs->Log("INVITATION", LOG_DEBUG, "Invitation::Find result=%p", (void*) result);
883         return result;
884 }
885
886 Invitation::~Invitation()
887 {
888         // Remove this entry from both lists
889         InviteList::iterator it = std::find(chan->invites.begin(), chan->invites.end(), this);
890         if (it != chan->invites.end())
891                 chan->invites.erase(it);
892         it = std::find(user->invites.begin(), user->invites.end(), this);
893         if (it != user->invites.end())
894                 user->invites.erase(it);
895 }
896
897 void InviteBase::ClearInvites()
898 {
899         ServerInstance->Logs->Log("INVITEBASE", LOG_DEBUG, "InviteBase::ClearInvites %p", (void*) this);
900         InviteList locallist;
901         locallist.swap(invites);
902         for (InviteList::const_iterator i = locallist.begin(); i != locallist.end(); ++i)
903         {
904                 (*i)->cull();
905                 delete *i;
906         }
907 }