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