]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/channels.cpp
Destroy Memberships of a quitting user in QuitUser() instead of in cull()
[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->IsPrefixMode())
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 :You are on too many channels", 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 :You are on too many channels", 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 :Cannot join channel (Incorrect channel key)", 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 :Cannot join channel (Invite only)", 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 :Cannot join channel (Channel is full)", chan->name.c_str());
294                                                 return NULL;
295                                         }
296                                 }
297
298                                 if (chan->IsBanned(user) && !can_bypass)
299                                 {
300                                         user->WriteNumeric(ERR_BANNEDFROMCHAN, "%s :Cannot join channel (You're banned)", 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.push_front(memb);
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                 for (std::string::const_iterator i = privs->begin(); i != privs->end(); ++i)
341                 {
342                         PrefixMode* mh = ServerInstance->Modes->FindPrefixMode(*i);
343                         if (mh)
344                         {
345                                 std::string nick = user->nick;
346                                 // Set the mode on the user
347                                 mh->OnModeChange(ServerInstance->FakeClient, NULL, this, nick, true);
348                         }
349                 }
350         }
351
352         // 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
353         CUList except_list;
354         FOREACH_MOD(OnUserJoin, (memb, bursting, created_by_local, except_list));
355
356         this->WriteAllExcept(user, false, 0, except_list, "JOIN :%s", this->name.c_str());
357
358         /* Theyre not the first ones in here, make sure everyone else sees the modes we gave the user */
359         if ((GetUserCounter() > 1) && (!memb->modes.empty()))
360         {
361                 std::string ms = memb->modes;
362                 for(unsigned int i=0; i < memb->modes.length(); i++)
363                         ms.append(" ").append(user->nick);
364
365                 except_list.insert(user);
366                 this->WriteAllExcept(user, !ServerInstance->Config->CycleHostsFromUser, 0, except_list, "MODE %s +%s", this->name.c_str(), ms.c_str());
367         }
368
369         if (IS_LOCAL(user))
370         {
371                 if (this->topicset)
372                 {
373                         user->WriteNumeric(RPL_TOPIC, "%s :%s", this->name.c_str(), this->topic.c_str());
374                         user->WriteNumeric(RPL_TOPICTIME, "%s %s %lu", this->name.c_str(), this->setby.c_str(), (unsigned long)this->topicset);
375                 }
376                 this->UserList(user);
377         }
378
379         FOREACH_MOD(OnPostJoin, (memb));
380 }
381
382 bool Channel::IsBanned(User* user)
383 {
384         ModResult result;
385         FIRST_MOD_RESULT(OnCheckChannelBan, result, (user, this));
386
387         if (result != MOD_RES_PASSTHRU)
388                 return (result == MOD_RES_DENY);
389
390         ListModeBase* banlm = static_cast<ListModeBase*>(*ban);
391         const ListModeBase::ModeList* bans = banlm->GetList(this);
392         if (bans)
393         {
394                 for (ListModeBase::ModeList::const_iterator it = bans->begin(); it != bans->end(); it++)
395                 {
396                         if (CheckBan(user, it->mask))
397                                 return true;
398                 }
399         }
400         return false;
401 }
402
403 bool Channel::CheckBan(User* user, const std::string& mask)
404 {
405         ModResult result;
406         FIRST_MOD_RESULT(OnCheckBan, result, (user, this, mask));
407         if (result != MOD_RES_PASSTHRU)
408                 return (result == MOD_RES_DENY);
409
410         // extbans were handled above, if this is one it obviously didn't match
411         if ((mask.length() <= 2) || (mask[1] == ':'))
412                 return false;
413
414         std::string::size_type at = mask.find('@');
415         if (at == std::string::npos)
416                 return false;
417
418         const std::string nickIdent = user->nick + "!" + user->ident;
419         std::string prefix = mask.substr(0, at);
420         if (InspIRCd::Match(nickIdent, prefix, NULL))
421         {
422                 std::string suffix = mask.substr(at + 1);
423                 if (InspIRCd::Match(user->host, suffix, NULL) ||
424                         InspIRCd::Match(user->dhost, suffix, NULL) ||
425                         InspIRCd::MatchCIDR(user->GetIPString(), suffix, NULL))
426                         return true;
427         }
428         return false;
429 }
430
431 ModResult Channel::GetExtBanStatus(User *user, char type)
432 {
433         ModResult rv;
434         FIRST_MOD_RESULT(OnExtBanCheck, rv, (user, this, type));
435         if (rv != MOD_RES_PASSTHRU)
436                 return rv;
437
438         ListModeBase* banlm = static_cast<ListModeBase*>(*ban);
439         const ListModeBase::ModeList* bans = banlm->GetList(this);
440         if (bans)
441
442         {
443                 for (ListModeBase::ModeList::const_iterator it = bans->begin(); it != bans->end(); ++it)
444                 {
445                         if (CheckBan(user, it->mask))
446                                 return MOD_RES_DENY;
447                 }
448         }
449         return MOD_RES_PASSTHRU;
450 }
451
452 /* Channel::PartUser
453  * Remove a channel from a users record, remove the reference to the Membership object
454  * from the channel and destroy it.
455  */
456 void Channel::PartUser(User *user, std::string &reason)
457 {
458         UserMembIter membiter = userlist.find(user);
459
460         if (membiter != userlist.end())
461         {
462                 Membership* memb = membiter->second;
463                 CUList except_list;
464                 FOREACH_MOD(OnUserPart, (memb, reason, except_list));
465
466                 WriteAllExcept(user, false, 0, except_list, "PART %s%s%s", this->name.c_str(), reason.empty() ? "" : " :", reason.c_str());
467
468                 // Remove this channel from the user's chanlist
469                 user->chans.erase(memb);
470                 // Remove the Membership from this channel's userlist and destroy it
471                 this->DelUser(membiter);
472         }
473 }
474
475 void Channel::KickUser(User* src, User* victim, const std::string& reason, Membership* srcmemb)
476 {
477         UserMembIter victimiter = userlist.find(victim);
478         Membership* memb = ((victimiter != userlist.end()) ? victimiter->second : NULL);
479
480         if (!memb)
481         {
482                 src->WriteNumeric(ERR_USERNOTINCHANNEL, "%s %s :They are not on that channel", victim->nick.c_str(), this->name.c_str());
483                 return;
484         }
485
486         // Do the following checks only if the KICK is done by a local user;
487         // each server enforces its own rules.
488         if (IS_LOCAL(src))
489         {
490                 // Modules are allowed to explicitly allow or deny kicks done by local users
491                 ModResult res;
492                 FIRST_MOD_RESULT(OnUserPreKick, res, (src,memb,reason));
493                 if (res == MOD_RES_DENY)
494                         return;
495
496                 if (res == MOD_RES_PASSTHRU)
497                 {
498                         if (!srcmemb)
499                                 srcmemb = GetUser(src);
500                         unsigned int them = srcmemb ? srcmemb->getRank() : 0;
501                         unsigned int req = HALFOP_VALUE;
502                         for (std::string::size_type i = 0; i < memb->modes.length(); i++)
503                         {
504                                 ModeHandler* mh = ServerInstance->Modes->FindMode(memb->modes[i], MODETYPE_CHANNEL);
505                                 if (mh && mh->GetLevelRequired() > req)
506                                         req = mh->GetLevelRequired();
507                         }
508
509                         if (them < req)
510                         {
511                                 src->WriteNumeric(ERR_CHANOPRIVSNEEDED, "%s :You must be a channel %soperator",
512                                         this->name.c_str(), req > HALFOP_VALUE ? "" : "half-");
513                                 return;
514                         }
515                 }
516         }
517
518         CUList except_list;
519         FOREACH_MOD(OnUserKick, (src, memb, reason, except_list));
520
521         WriteAllExcept(src, false, 0, except_list, "KICK %s %s :%s", name.c_str(), victim->nick.c_str(), reason.c_str());
522
523         victim->chans.erase(memb);
524         this->DelUser(victimiter);
525 }
526
527 void Channel::WriteChannel(User* user, const char* text, ...)
528 {
529         std::string textbuffer;
530         VAFORMAT(textbuffer, text, text);
531         this->WriteChannel(user, textbuffer);
532 }
533
534 void Channel::WriteChannel(User* user, const std::string &text)
535 {
536         const std::string message = ":" + user->GetFullHost() + " " + text;
537
538         for (UserMembIter i = userlist.begin(); i != userlist.end(); i++)
539         {
540                 if (IS_LOCAL(i->first))
541                         i->first->Write(message);
542         }
543 }
544
545 void Channel::WriteChannelWithServ(const std::string& ServName, const char* text, ...)
546 {
547         std::string textbuffer;
548         VAFORMAT(textbuffer, text, text);
549         this->WriteChannelWithServ(ServName, textbuffer);
550 }
551
552 void Channel::WriteChannelWithServ(const std::string& ServName, const std::string &text)
553 {
554         const std::string message = ":" + (ServName.empty() ? ServerInstance->Config->ServerName : ServName) + " " + text;
555
556         for (UserMembIter i = userlist.begin(); i != userlist.end(); i++)
557         {
558                 if (IS_LOCAL(i->first))
559                         i->first->Write(message);
560         }
561 }
562
563 /* write formatted text from a source user to all users on a channel except
564  * for the sender (for privmsg etc) */
565 void Channel::WriteAllExceptSender(User* user, bool serversource, char status, const char* text, ...)
566 {
567         std::string textbuffer;
568         VAFORMAT(textbuffer, text, text);
569         this->WriteAllExceptSender(user, serversource, status, textbuffer);
570 }
571
572 void Channel::WriteAllExcept(User* user, bool serversource, char status, CUList &except_list, const char* text, ...)
573 {
574         std::string textbuffer;
575         VAFORMAT(textbuffer, text, text);
576         textbuffer = ":" + (serversource ? ServerInstance->Config->ServerName : user->GetFullHost()) + " " + textbuffer;
577         this->RawWriteAllExcept(user, serversource, status, except_list, textbuffer);
578 }
579
580 void Channel::WriteAllExcept(User* user, bool serversource, char status, CUList &except_list, const std::string &text)
581 {
582         const std::string message = ":" + (serversource ? ServerInstance->Config->ServerName : user->GetFullHost()) + " " + text;
583         this->RawWriteAllExcept(user, serversource, status, except_list, message);
584 }
585
586 void Channel::RawWriteAllExcept(User* user, bool serversource, char status, CUList &except_list, const std::string &out)
587 {
588         unsigned int minrank = 0;
589         if (status)
590         {
591                 PrefixMode* mh = ServerInstance->Modes->FindPrefix(status);
592                 if (mh)
593                         minrank = mh->GetPrefixRank();
594         }
595         for (UserMembIter i = userlist.begin(); i != userlist.end(); i++)
596         {
597                 if (IS_LOCAL(i->first) && (except_list.find(i->first) == except_list.end()))
598                 {
599                         /* User doesn't have the status we're after */
600                         if (minrank && i->second->getRank() < minrank)
601                                 continue;
602
603                         i->first->Write(out);
604                 }
605         }
606 }
607
608 void Channel::WriteAllExceptSender(User* user, bool serversource, char status, const std::string& text)
609 {
610         CUList except_list;
611         except_list.insert(user);
612         this->WriteAllExcept(user, serversource, status, except_list, std::string(text));
613 }
614
615 const char* Channel::ChanModes(bool showkey)
616 {
617         static std::string scratch;
618         std::string sparam;
619
620         scratch.clear();
621
622         /* This was still iterating up to 190, Channel::modes is only 64 elements -- Om */
623         for(int n = 0; n < 64; n++)
624         {
625                 if(this->modes[n])
626                 {
627                         scratch.push_back(n + 65);
628                         ModeHandler* mh = ServerInstance->Modes->FindMode(n+'A', MODETYPE_CHANNEL);
629                         if (!mh)
630                                 continue;
631
632                         if (n == 'k' - 65 && !showkey)
633                         {
634                                 sparam += " <key>";
635                         }
636                         else
637                         {
638                                 const std::string param = this->GetModeParameter(mh);
639                                 if (!param.empty())
640                                 {
641                                         sparam += ' ';
642                                         sparam += param;
643                                 }
644                         }
645                 }
646         }
647
648         scratch += sparam;
649         return scratch.c_str();
650 }
651
652 /* compile a userlist of a channel into a string, each nick seperated by
653  * spaces and op, voice etc status shown as @ and +, and send it to 'user'
654  */
655 void Channel::UserList(User *user)
656 {
657         bool has_privs = user->HasPrivPermission("channels/auspex");
658         if (this->IsModeSet(secretmode) && !this->HasUser(user) && !has_privs)
659         {
660                 user->WriteNumeric(ERR_NOSUCHNICK, "%s :No such nick/channel", this->name.c_str());
661                 return;
662         }
663
664         std::string list;
665         list.push_back(this->IsModeSet(secretmode) ? '@' : this->IsModeSet(privatemode) ? '*' : '=');
666         list.push_back(' ');
667         list.append(this->name).append(" :");
668         std::string::size_type pos = list.size();
669
670         bool has_one = false;
671
672         /* Improvement by Brain - this doesnt change in value, so why was it inside
673          * the loop?
674          */
675         bool has_user = this->HasUser(user);
676
677         std::string prefixlist;
678         std::string nick;
679         for (UserMembIter i = userlist.begin(); i != userlist.end(); ++i)
680         {
681                 if ((!has_user) && (i->first->IsModeSet(invisiblemode)) && (!has_privs))
682                 {
683                         /*
684                          * user is +i, and source not on the channel, does not show
685                          * nick in NAMES list
686                          */
687                         continue;
688                 }
689
690                 prefixlist = this->GetPrefixChar(i->first);
691                 nick = i->first->nick;
692
693                 FOREACH_MOD(OnNamesListItem, (user, i->second, prefixlist, nick));
694
695                 /* Nick was nuked, a module wants us to skip it */
696                 if (nick.empty())
697                         continue;
698
699                 if (list.size() + prefixlist.length() + nick.length() + 1 > 480)
700                 {
701                         /* list overflowed into multiple numerics */
702                         user->WriteNumeric(RPL_NAMREPLY, list);
703
704                         // Erase all nicks, keep the constant part
705                         list.erase(pos);
706                         has_one = false;
707                 }
708
709                 list.append(prefixlist).append(nick).push_back(' ');
710
711                 has_one = true;
712         }
713
714         /* if whats left in the list isnt empty, send it */
715         if (has_one)
716         {
717                 user->WriteNumeric(RPL_NAMREPLY, list);
718         }
719
720         user->WriteNumeric(RPL_ENDOFNAMES, "%s :End of /NAMES list.", this->name.c_str());
721 }
722
723 /* returns the status character for a given user on a channel, e.g. @ for op,
724  * % for halfop etc. If the user has several modes set, the highest mode
725  * the user has must be returned.
726  */
727 const char* Channel::GetPrefixChar(User *user)
728 {
729         static char pf[2] = {0, 0};
730         *pf = 0;
731         unsigned int bestrank = 0;
732
733         UserMembIter m = userlist.find(user);
734         if (m != userlist.end())
735         {
736                 for(unsigned int i=0; i < m->second->modes.length(); i++)
737                 {
738                         PrefixMode* mh = ServerInstance->Modes->FindPrefixMode(m->second->modes[i]);
739                         if (mh && mh->GetPrefixRank() > bestrank && mh->GetPrefix())
740                         {
741                                 bestrank = mh->GetPrefixRank();
742                                 pf[0] = mh->GetPrefix();
743                         }
744                 }
745         }
746         return pf;
747 }
748
749 unsigned int Membership::getRank()
750 {
751         char mchar = modes.c_str()[0];
752         unsigned int rv = 0;
753         if (mchar)
754         {
755                 PrefixMode* mh = ServerInstance->Modes->FindPrefixMode(mchar);
756                 if (mh)
757                         rv = mh->GetPrefixRank();
758         }
759         return rv;
760 }
761
762 const char* Channel::GetAllPrefixChars(User* user)
763 {
764         static char prefix[64];
765         int ctr = 0;
766
767         UserMembIter m = userlist.find(user);
768         if (m != userlist.end())
769         {
770                 for(unsigned int i=0; i < m->second->modes.length(); i++)
771                 {
772                         PrefixMode* mh = ServerInstance->Modes->FindPrefixMode(m->second->modes[i]);
773                         if (mh && mh->GetPrefix())
774                                 prefix[ctr++] = mh->GetPrefix();
775                 }
776         }
777         prefix[ctr] = 0;
778
779         return prefix;
780 }
781
782 unsigned int Channel::GetPrefixValue(User* user)
783 {
784         UserMembIter m = userlist.find(user);
785         if (m == userlist.end())
786                 return 0;
787         return m->second->getRank();
788 }
789
790 bool Membership::SetPrefix(PrefixMode* delta_mh, bool adding)
791 {
792         char prefix = delta_mh->GetModeChar();
793         for (unsigned int i = 0; i < modes.length(); i++)
794         {
795                 char mchar = modes[i];
796                 PrefixMode* mh = ServerInstance->Modes->FindPrefixMode(mchar);
797                 if (mh && mh->GetPrefixRank() <= delta_mh->GetPrefixRank())
798                 {
799                         modes = modes.substr(0,i) +
800                                 (adding ? std::string(1, prefix) : "") +
801                                 modes.substr(mchar == prefix ? i+1 : i);
802                         return adding != (mchar == prefix);
803                 }
804         }
805         if (adding)
806                 modes.push_back(prefix);
807         return adding;
808 }
809
810 void Invitation::Create(Channel* c, LocalUser* u, time_t timeout)
811 {
812         if ((timeout != 0) && (ServerInstance->Time() >= timeout))
813                 // Expired, don't bother
814                 return;
815
816         ServerInstance->Logs->Log("INVITATION", LOG_DEBUG, "Invitation::Create chan=%s user=%s", c->name.c_str(), u->uuid.c_str());
817
818         Invitation* inv = Invitation::Find(c, u, false);
819         if (inv)
820         {
821                  if ((inv->expiry == 0) || (inv->expiry > timeout))
822                         return;
823                 inv->expiry = timeout;
824                 ServerInstance->Logs->Log("INVITATION", LOG_DEBUG, "Invitation::Create changed expiry in existing invitation %p", (void*) inv);
825         }
826         else
827         {
828                 inv = new Invitation(c, u, timeout);
829                 c->invites.push_front(inv);
830                 u->invites.push_front(inv);
831                 ServerInstance->Logs->Log("INVITATION", LOG_DEBUG, "Invitation::Create created new invitation %p", (void*) inv);
832         }
833 }
834
835 Invitation* Invitation::Find(Channel* c, LocalUser* u, bool check_expired)
836 {
837         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);
838         if (!u || u->invites.empty())
839                 return NULL;
840
841         Invitation* result = NULL;
842         for (InviteList::iterator i = u->invites.begin(); i != u->invites.end(); )
843         {
844                 Invitation* inv = *i;
845                 ++i;
846
847                 if ((check_expired) && (inv->expiry != 0) && (inv->expiry <= ServerInstance->Time()))
848                 {
849                         /* Expired invite, remove it. */
850                         std::string expiration = InspIRCd::TimeString(inv->expiry);
851                         ServerInstance->Logs->Log("INVITATION", LOG_DEBUG, "Invitation::Find ecountered expired entry: %p expired %s", (void*) inv, expiration.c_str());
852                         delete inv;
853                 }
854                 else
855                 {
856                         /* Is it what we're searching for? */
857                         if (inv->chan == c)
858                         {
859                                 result = inv;
860                                 break;
861                         }
862                 }
863         }
864
865         ServerInstance->Logs->Log("INVITATION", LOG_DEBUG, "Invitation::Find result=%p", (void*) result);
866         return result;
867 }
868
869 Invitation::~Invitation()
870 {
871         // Remove this entry from both lists
872         chan->invites.erase(this);
873         user->invites.erase(this);
874         ServerInstance->Logs->Log("INVITEBASE", LOG_DEBUG, "Invitation::~ %p", (void*) this);
875 }