2012-04-19 20:58:29 +02:00
|
|
|
/*
|
|
|
|
* InspIRCd -- Internet Relay Chat Daemon
|
2007-07-16 17:30:04 +00:00
|
|
|
*
|
2012-04-19 20:58:29 +02:00
|
|
|
* Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
|
|
|
|
* Copyright (C) 2006-2008 Robin Burchell <robin+git@viroteck.net>
|
|
|
|
* Copyright (C) 2006, 2008 Oliver Lupton <oliverlupton@gmail.com>
|
|
|
|
* Copyright (C) 2008 Pippijn van Steenhoven <pip88nl@gmail.com>
|
|
|
|
* Copyright (C) 2003-2008 Craig Edwards <craigedwards@brainbox.cc>
|
|
|
|
* Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
|
|
|
|
* Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
|
2007-07-16 17:30:04 +00:00
|
|
|
*
|
2012-04-19 20:58:29 +02:00
|
|
|
* This file is part of InspIRCd. InspIRCd is free software: you can
|
|
|
|
* redistribute it and/or modify it under the terms of the GNU General Public
|
|
|
|
* License as published by the Free Software Foundation, version 2.
|
2007-07-16 17:30:04 +00:00
|
|
|
*
|
2012-04-19 20:58:29 +02:00
|
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
|
|
* details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2007-07-16 17:30:04 +00:00
|
|
|
*/
|
|
|
|
|
2012-04-19 20:58:29 +02:00
|
|
|
|
2007-07-16 17:30:04 +00:00
|
|
|
#include "inspircd.h"
|
2013-04-03 19:10:18 +02:00
|
|
|
#include "listmode.h"
|
2008-06-12 21:04:37 +00:00
|
|
|
#include <cstdarg>
|
2007-07-16 17:30:04 +00:00
|
|
|
#include "mode.h"
|
|
|
|
|
2013-06-18 18:30:10 +02:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
ChanModeReference ban(NULL, "ban");
|
|
|
|
ChanModeReference inviteonlymode(NULL, "inviteonly");
|
|
|
|
ChanModeReference keymode(NULL, "key");
|
|
|
|
ChanModeReference limitmode(NULL, "limit");
|
|
|
|
ChanModeReference secretmode(NULL, "secret");
|
|
|
|
ChanModeReference privatemode(NULL, "private");
|
2013-06-18 19:10:07 +02:00
|
|
|
UserModeReference invisiblemode(NULL, "invisible");
|
2013-06-18 18:30:10 +02:00
|
|
|
}
|
2013-04-03 19:10:18 +02:00
|
|
|
|
2009-09-26 14:13:13 +00:00
|
|
|
Channel::Channel(const std::string &cname, time_t ts)
|
2013-08-12 20:10:06 +02:00
|
|
|
: name(cname), age(ts), topicset(0)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2014-03-14 12:59:19 +01:00
|
|
|
if (!ServerInstance->chanlist.insert(std::make_pair(cname, this)).second)
|
2008-02-11 09:41:58 +00:00
|
|
|
throw CoreException("Cannot create duplicate channel " + cname);
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
|
2009-11-15 18:26:35 +00:00
|
|
|
void Channel::SetMode(ModeHandler* mh, bool on)
|
|
|
|
{
|
2014-02-21 15:11:24 +01:00
|
|
|
modes[mh->GetId()] = on;
|
2009-11-15 18:26:35 +00:00
|
|
|
}
|
|
|
|
|
2013-06-16 21:53:05 +02:00
|
|
|
void Channel::SetTopic(User* u, const std::string& ntopic)
|
2008-08-04 15:28:29 +00:00
|
|
|
{
|
2008-08-05 21:52:38 +00:00
|
|
|
this->topic.assign(ntopic, 0, ServerInstance->Config->Limits.MaxTopic);
|
2013-06-02 19:10:05 +02:00
|
|
|
this->setby.assign(ServerInstance->Config->FullHostInTopic ? u->GetFullHost() : u->nick, 0, 128);
|
|
|
|
this->WriteChannel(u, "TOPIC %s :%s", this->name.c_str(), this->topic.c_str());
|
2008-08-04 15:28:29 +00:00
|
|
|
this->topicset = ServerInstance->Time();
|
|
|
|
|
2013-06-26 17:01:33 -04:00
|
|
|
FOREACH_MOD(OnPostTopicChange, (u, this, this->topic));
|
2008-08-04 15:28:29 +00:00
|
|
|
}
|
|
|
|
|
2009-09-13 20:30:47 +00:00
|
|
|
Membership* Channel::AddUser(User* user)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2013-04-12 16:00:17 +02:00
|
|
|
Membership*& memb = userlist[user];
|
|
|
|
if (memb)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
memb = new Membership(user, this);
|
2009-09-13 20:30:47 +00:00
|
|
|
return memb;
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
|
2009-10-18 02:57:46 +00:00
|
|
|
void Channel::DelUser(User* user)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2013-06-02 19:55:07 +02:00
|
|
|
UserMembIter it = userlist.find(user);
|
|
|
|
if (it != userlist.end())
|
|
|
|
DelUser(it);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Channel::CheckDestroy()
|
|
|
|
{
|
|
|
|
if (!userlist.empty())
|
|
|
|
return;
|
|
|
|
|
|
|
|
ModResult res;
|
|
|
|
FIRST_MOD_RESULT(OnChannelPreDelete, res, (this));
|
|
|
|
if (res == MOD_RES_DENY)
|
|
|
|
return;
|
2008-06-12 21:04:37 +00:00
|
|
|
|
2014-03-14 12:59:19 +01:00
|
|
|
chan_hash::iterator iter = ServerInstance->chanlist.find(this->name);
|
2013-06-02 19:55:07 +02:00
|
|
|
/* kill the record */
|
2014-03-14 12:59:19 +01:00
|
|
|
if (iter != ServerInstance->chanlist.end())
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2013-06-26 17:01:33 -04:00
|
|
|
FOREACH_MOD(OnChannelDelete, (this));
|
2014-03-14 12:59:19 +01:00
|
|
|
ServerInstance->chanlist.erase(iter);
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
2009-10-20 04:40:50 +00:00
|
|
|
|
2013-06-02 19:55:07 +02:00
|
|
|
ClearInvites();
|
|
|
|
ServerInstance->GlobalCulls.AddItem(this);
|
|
|
|
}
|
2012-06-17 17:53:39 +02:00
|
|
|
|
2013-06-02 19:55:07 +02:00
|
|
|
void Channel::DelUser(const UserMembIter& membiter)
|
|
|
|
{
|
|
|
|
Membership* memb = membiter->second;
|
|
|
|
memb->cull();
|
|
|
|
delete memb;
|
|
|
|
userlist.erase(membiter);
|
|
|
|
|
|
|
|
// If this channel became empty then it should be removed
|
|
|
|
CheckDestroy();
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
|
2009-09-13 20:30:47 +00:00
|
|
|
Membership* Channel::GetUser(User* user)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2009-09-13 20:30:47 +00:00
|
|
|
UserMembIter i = userlist.find(user);
|
|
|
|
if (i == userlist.end())
|
|
|
|
return NULL;
|
|
|
|
return i->second;
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
|
2007-10-15 20:59:05 +00:00
|
|
|
void Channel::SetDefaultModes()
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2013-04-12 02:10:06 +01:00
|
|
|
ServerInstance->Logs->Log("CHANNELS", LOG_DEBUG, "SetDefaultModes %s",
|
2009-10-03 01:52:59 +00:00
|
|
|
ServerInstance->Config->DefaultModes.c_str());
|
2007-07-16 17:30:04 +00:00
|
|
|
irc::spacesepstream list(ServerInstance->Config->DefaultModes);
|
2007-08-23 18:06:26 +00:00
|
|
|
std::string modeseq;
|
2007-07-16 17:30:04 +00:00
|
|
|
std::string parameter;
|
2007-08-23 18:06:26 +00:00
|
|
|
|
|
|
|
list.GetToken(modeseq);
|
|
|
|
|
2007-07-16 17:30:04 +00:00
|
|
|
for (std::string::iterator n = modeseq.begin(); n != modeseq.end(); ++n)
|
|
|
|
{
|
|
|
|
ModeHandler* mode = ServerInstance->Modes->FindMode(*n, MODETYPE_CHANNEL);
|
|
|
|
if (mode)
|
|
|
|
{
|
2013-09-01 14:38:41 +02:00
|
|
|
if (mode->IsPrefixMode())
|
2013-07-10 15:23:46 +01:00
|
|
|
continue;
|
|
|
|
|
2007-07-16 17:30:04 +00:00
|
|
|
if (mode->GetNumParams(true))
|
2007-08-23 18:06:26 +00:00
|
|
|
list.GetToken(parameter);
|
2007-07-16 17:30:04 +00:00
|
|
|
else
|
|
|
|
parameter.clear();
|
|
|
|
|
2007-08-28 13:40:21 +00:00
|
|
|
mode->OnModeChange(ServerInstance->FakeClient, ServerInstance->FakeClient, this, parameter, true);
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-06-12 21:04:37 +00:00
|
|
|
/*
|
2007-07-16 17:30:04 +00:00
|
|
|
* add a channel to a user, creating the record for it if needed and linking
|
2008-06-12 21:04:37 +00:00
|
|
|
* it to the user record
|
2007-07-16 17:30:04 +00:00
|
|
|
*/
|
2013-04-12 16:00:17 +02:00
|
|
|
Channel* Channel::JoinUser(LocalUser* user, std::string cname, bool override, const std::string& key)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2013-04-12 16:00:17 +02:00
|
|
|
if (user->registered != REG_ALL)
|
|
|
|
{
|
|
|
|
ServerInstance->Logs->Log("CHANNELS", LOG_DEBUG, "Attempted to join unregistered user " + user->uuid + " to channel " + cname);
|
2007-07-16 17:30:04 +00:00
|
|
|
return NULL;
|
2013-04-12 16:00:17 +02:00
|
|
|
}
|
2007-07-16 17:30:04 +00:00
|
|
|
|
2007-08-05 19:51:57 +00:00
|
|
|
/*
|
|
|
|
* We don't restrict the number of channels that remote users or users that are override-joining may be in.
|
2014-03-19 20:52:56 +00:00
|
|
|
* We restrict local users to <connect:maxchans> channels.
|
|
|
|
* We restrict local operators to <oper:maxchans> channels.
|
2007-08-05 19:51:57 +00:00
|
|
|
* This is a lot more logical than how it was formerly. -- w00t
|
|
|
|
*/
|
2013-04-12 16:00:17 +02:00
|
|
|
if (!override)
|
2007-08-05 19:51:57 +00:00
|
|
|
{
|
2014-03-19 20:52:56 +00:00
|
|
|
unsigned int maxchans = user->GetClass()->maxchans;
|
|
|
|
if (user->IsOper())
|
2007-08-05 19:51:57 +00:00
|
|
|
{
|
2014-03-19 20:52:56 +00:00
|
|
|
unsigned int opermaxchans = ConvToInt(user->oper->getConfig("maxchans"));
|
|
|
|
// If not set, use 2.0's <channels:opers>, if that's not set either, use limit from CC
|
|
|
|
if (!opermaxchans)
|
|
|
|
opermaxchans = ServerInstance->Config->OperMaxChans;
|
|
|
|
if (opermaxchans)
|
|
|
|
maxchans = opermaxchans;
|
2009-10-21 23:45:32 +00:00
|
|
|
}
|
2014-03-19 20:52:56 +00:00
|
|
|
if (user->chans.size() >= maxchans)
|
2009-10-21 23:45:32 +00:00
|
|
|
{
|
2014-03-19 20:52:56 +00:00
|
|
|
user->WriteNumeric(ERR_TOOMANYCHANNELS, "%s :You are on too many channels", cname.c_str());
|
|
|
|
return NULL;
|
2007-08-05 19:51:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-12 16:00:17 +02:00
|
|
|
// Crop channel name if it's too long
|
2013-04-01 02:13:43 +02:00
|
|
|
if (cname.length() > ServerInstance->Config->Limits.ChanMax)
|
|
|
|
cname.resize(ServerInstance->Config->Limits.ChanMax);
|
|
|
|
|
2013-04-12 16:00:17 +02:00
|
|
|
Channel* chan = ServerInstance->FindChan(cname);
|
|
|
|
bool created_by_local = (chan == NULL); // Flag that will be passed to modules in the OnUserJoin() hook later
|
|
|
|
std::string privs; // Prefix mode(letter)s to give to the joining user
|
2007-07-16 17:30:04 +00:00
|
|
|
|
2013-04-12 16:00:17 +02:00
|
|
|
if (!chan)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2013-07-10 15:23:46 +01:00
|
|
|
privs = ServerInstance->Config->DefaultModes.substr(0, ServerInstance->Config->DefaultModes.find(' '));
|
2007-07-16 17:30:04 +00:00
|
|
|
|
2013-04-12 16:00:17 +02:00
|
|
|
if (override == false)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2013-04-12 16:00:17 +02:00
|
|
|
// Ask the modules whether they're ok with the join, pass NULL as Channel* as the channel is yet to be created
|
2009-09-02 00:49:36 +00:00
|
|
|
ModResult MOD_RESULT;
|
2013-04-12 16:00:17 +02:00
|
|
|
FIRST_MOD_RESULT(OnUserPreJoin, MOD_RESULT, (user, NULL, cname, privs, key));
|
2009-09-02 00:49:36 +00:00
|
|
|
if (MOD_RESULT == MOD_RES_DENY)
|
2013-04-12 16:00:17 +02:00
|
|
|
return NULL; // A module wasn't happy with the join, abort
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
|
2013-04-12 16:00:17 +02:00
|
|
|
chan = new Channel(cname, ServerInstance->Time());
|
|
|
|
// Set the default modes on the channel (<options:defaultmodes>)
|
|
|
|
chan->SetDefaultModes();
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Already on the channel */
|
2013-04-12 16:00:17 +02:00
|
|
|
if (chan->HasUser(user))
|
2007-07-16 17:30:04 +00:00
|
|
|
return NULL;
|
|
|
|
|
2013-04-12 16:00:17 +02:00
|
|
|
if (override == false)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2009-09-02 00:49:36 +00:00
|
|
|
ModResult MOD_RESULT;
|
2013-04-12 16:00:17 +02:00
|
|
|
FIRST_MOD_RESULT(OnUserPreJoin, MOD_RESULT, (user, chan, cname, privs, key));
|
|
|
|
|
|
|
|
// A module explicitly denied the join and (hopefully) generated a message
|
|
|
|
// describing the situation, so we may stop here without sending anything
|
2009-09-02 00:49:36 +00:00
|
|
|
if (MOD_RESULT == MOD_RES_DENY)
|
2007-07-16 17:30:04 +00:00
|
|
|
return NULL;
|
2013-04-12 16:00:17 +02:00
|
|
|
|
|
|
|
// If no module returned MOD_RES_DENY or MOD_RES_ALLOW (which is the case
|
|
|
|
// most of the time) then proceed to check channel modes +k, +i, +l and bans,
|
|
|
|
// in this order.
|
|
|
|
// If a module explicitly allowed the join (by returning MOD_RES_ALLOW),
|
|
|
|
// then this entire section is skipped
|
|
|
|
if (MOD_RESULT == MOD_RES_PASSTHRU)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2013-06-18 18:30:10 +02:00
|
|
|
std::string ckey = chan->GetModeParameter(keymode);
|
2013-04-12 16:00:17 +02:00
|
|
|
bool invited = user->IsInvited(chan);
|
2009-09-26 14:13:13 +00:00
|
|
|
bool can_bypass = ServerInstance->Config->InvBypassModes && invited;
|
2008-08-07 16:35:58 +00:00
|
|
|
|
2008-07-20 14:30:00 +00:00
|
|
|
if (!ckey.empty())
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2013-04-12 16:00:17 +02:00
|
|
|
FIRST_MOD_RESULT(OnCheckKey, MOD_RESULT, (user, chan, key));
|
2013-04-01 02:13:43 +02:00
|
|
|
if (!MOD_RESULT.check((ckey == key) || can_bypass))
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2008-08-07 16:35:58 +00:00
|
|
|
// If no key provided, or key is not the right one, and can't bypass +k (not invited or option not enabled)
|
2013-11-12 06:51:31 -05:00
|
|
|
user->WriteNumeric(ERR_BADCHANNELKEY, "%s :Cannot join channel (Incorrect channel key)", chan->name.c_str());
|
2009-09-02 00:49:36 +00:00
|
|
|
return NULL;
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
}
|
2008-08-07 16:35:58 +00:00
|
|
|
|
2013-06-18 18:30:10 +02:00
|
|
|
if (chan->IsModeSet(inviteonlymode))
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2013-04-12 16:00:17 +02:00
|
|
|
FIRST_MOD_RESULT(OnCheckInvite, MOD_RESULT, (user, chan));
|
2009-09-02 00:49:36 +00:00
|
|
|
if (!MOD_RESULT.check(invited))
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2013-11-12 06:51:31 -05:00
|
|
|
user->WriteNumeric(ERR_INVITEONLYCHAN, "%s :Cannot join channel (Invite only)", chan->name.c_str());
|
2009-09-02 00:49:36 +00:00
|
|
|
return NULL;
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
}
|
2008-07-20 14:30:00 +00:00
|
|
|
|
2013-06-18 18:30:10 +02:00
|
|
|
std::string limit = chan->GetModeParameter(limitmode);
|
2008-07-20 14:30:00 +00:00
|
|
|
if (!limit.empty())
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2013-04-12 16:00:17 +02:00
|
|
|
FIRST_MOD_RESULT(OnCheckLimit, MOD_RESULT, (user, chan));
|
|
|
|
if (!MOD_RESULT.check((chan->GetUserCounter() < atol(limit.c_str()) || can_bypass)))
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2013-11-12 06:51:31 -05:00
|
|
|
user->WriteNumeric(ERR_CHANNELISFULL, "%s :Cannot join channel (Channel is full)", chan->name.c_str());
|
2009-09-02 00:49:36 +00:00
|
|
|
return NULL;
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
}
|
2008-07-20 14:30:00 +00:00
|
|
|
|
2013-04-12 16:00:17 +02:00
|
|
|
if (chan->IsBanned(user) && !can_bypass)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2013-11-12 06:51:31 -05:00
|
|
|
user->WriteNumeric(ERR_BANNEDFROMCHAN, "%s :Cannot join channel (You're banned)", chan->name.c_str());
|
2009-03-23 03:32:01 +00:00
|
|
|
return NULL;
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
2008-08-07 16:35:58 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If the user has invites for this channel, remove them now
|
|
|
|
* after a successful join so they don't build up.
|
|
|
|
*/
|
|
|
|
if (invited)
|
|
|
|
{
|
2013-04-12 16:00:17 +02:00
|
|
|
user->RemoveInvite(chan);
|
2008-08-07 16:35:58 +00:00
|
|
|
}
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-12 16:00:17 +02:00
|
|
|
// We figured that this join is allowed and also created the
|
|
|
|
// channel if it didn't exist before, now do the actual join
|
|
|
|
chan->ForceJoin(user, &privs, false, created_by_local);
|
|
|
|
return chan;
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
|
2013-04-12 16:00:17 +02:00
|
|
|
void Channel::ForceJoin(User* user, const std::string* privs, bool bursting, bool created_by_local)
|
2009-01-09 20:51:38 +00:00
|
|
|
{
|
2013-04-12 16:00:17 +02:00
|
|
|
if (IS_SERVER(user))
|
|
|
|
{
|
|
|
|
ServerInstance->Logs->Log("CHANNELS", LOG_DEBUG, "Attempted to join server user " + user->uuid + " to channel " + this->name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-07-01 19:10:21 +02:00
|
|
|
Membership* memb = this->AddUser(user);
|
|
|
|
if (!memb)
|
|
|
|
return; // Already on the channel
|
|
|
|
|
2014-01-24 12:58:01 +01:00
|
|
|
user->chans.push_front(memb);
|
2007-07-16 17:30:04 +00:00
|
|
|
|
2013-04-12 16:00:17 +02:00
|
|
|
if (privs)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2013-04-12 16:00:17 +02:00
|
|
|
// If the user was granted prefix modes (in the OnUserPreJoin hook, or he's a
|
|
|
|
// remote user and his own server set the modes), then set them internally now
|
|
|
|
for (std::string::const_iterator i = privs->begin(); i != privs->end(); ++i)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2013-09-01 14:38:41 +02:00
|
|
|
PrefixMode* mh = ServerInstance->Modes->FindPrefixMode(*i);
|
|
|
|
if (mh)
|
2013-04-12 16:00:17 +02:00
|
|
|
{
|
|
|
|
std::string nick = user->nick;
|
2013-09-01 14:25:15 +02:00
|
|
|
// Set the mode on the user
|
|
|
|
mh->OnModeChange(ServerInstance->FakeClient, NULL, this, nick, true);
|
2013-04-12 16:00:17 +02:00
|
|
|
}
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-12 16:00:17 +02:00
|
|
|
// 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
|
2009-09-13 20:31:11 +00:00
|
|
|
CUList except_list;
|
2013-06-26 17:01:33 -04:00
|
|
|
FOREACH_MOD(OnUserJoin, (memb, bursting, created_by_local, except_list));
|
2007-07-16 17:30:04 +00:00
|
|
|
|
2013-04-12 16:00:17 +02:00
|
|
|
this->WriteAllExcept(user, false, 0, except_list, "JOIN :%s", this->name.c_str());
|
2007-07-16 17:30:04 +00:00
|
|
|
|
|
|
|
/* Theyre not the first ones in here, make sure everyone else sees the modes we gave the user */
|
2013-04-12 16:00:17 +02:00
|
|
|
if ((GetUserCounter() > 1) && (!memb->modes.empty()))
|
2012-05-29 15:13:42 +02:00
|
|
|
{
|
|
|
|
std::string ms = memb->modes;
|
|
|
|
for(unsigned int i=0; i < memb->modes.length(); i++)
|
|
|
|
ms.append(" ").append(user->nick);
|
|
|
|
|
|
|
|
except_list.insert(user);
|
2013-04-12 16:00:17 +02:00
|
|
|
this->WriteAllExcept(user, !ServerInstance->Config->CycleHostsFromUser, 0, except_list, "MODE %s +%s", this->name.c_str(), ms.c_str());
|
2012-05-29 15:13:42 +02:00
|
|
|
}
|
2007-07-16 17:30:04 +00:00
|
|
|
|
|
|
|
if (IS_LOCAL(user))
|
|
|
|
{
|
2013-04-12 16:00:17 +02:00
|
|
|
if (this->topicset)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2013-11-12 06:51:31 -05:00
|
|
|
user->WriteNumeric(RPL_TOPIC, "%s :%s", this->name.c_str(), this->topic.c_str());
|
|
|
|
user->WriteNumeric(RPL_TOPICTIME, "%s %s %lu", this->name.c_str(), this->setby.c_str(), (unsigned long)this->topicset);
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
2013-04-12 16:00:17 +02:00
|
|
|
this->UserList(user);
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
2013-04-12 16:00:17 +02:00
|
|
|
|
2013-06-26 17:01:33 -04:00
|
|
|
FOREACH_MOD(OnPostJoin, (memb));
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
|
2007-10-15 20:59:05 +00:00
|
|
|
bool Channel::IsBanned(User* user)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2009-09-02 00:49:36 +00:00
|
|
|
ModResult result;
|
2009-09-26 14:13:13 +00:00
|
|
|
FIRST_MOD_RESULT(OnCheckChannelBan, result, (user, this));
|
2009-03-14 20:48:43 +00:00
|
|
|
|
2009-09-02 00:49:36 +00:00
|
|
|
if (result != MOD_RES_PASSTHRU)
|
|
|
|
return (result == MOD_RES_DENY);
|
2008-04-10 20:48:46 +00:00
|
|
|
|
2013-04-03 19:10:18 +02:00
|
|
|
ListModeBase* banlm = static_cast<ListModeBase*>(*ban);
|
|
|
|
const ListModeBase::ModeList* bans = banlm->GetList(this);
|
|
|
|
if (bans)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2013-04-03 19:10:18 +02:00
|
|
|
for (ListModeBase::ModeList::const_iterator it = bans->begin(); it != bans->end(); it++)
|
|
|
|
{
|
|
|
|
if (CheckBan(user, it->mask))
|
|
|
|
return true;
|
|
|
|
}
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-09-13 20:33:11 +00:00
|
|
|
bool Channel::CheckBan(User* user, const std::string& mask)
|
2008-07-12 20:38:14 +00:00
|
|
|
{
|
2009-09-02 00:49:36 +00:00
|
|
|
ModResult result;
|
2009-09-26 14:13:13 +00:00
|
|
|
FIRST_MOD_RESULT(OnCheckBan, result, (user, this, mask));
|
2009-09-02 00:49:36 +00:00
|
|
|
if (result != MOD_RES_PASSTHRU)
|
2009-09-13 20:33:11 +00:00
|
|
|
return (result == MOD_RES_DENY);
|
2008-07-12 20:53:19 +00:00
|
|
|
|
2009-09-13 20:33:11 +00:00
|
|
|
// extbans were handled above, if this is one it obviously didn't match
|
2012-10-03 02:50:20 +02:00
|
|
|
if ((mask.length() <= 2) || (mask[1] == ':'))
|
2009-09-13 20:33:11 +00:00
|
|
|
return false;
|
2008-07-12 20:38:14 +00:00
|
|
|
|
2009-09-13 20:33:11 +00:00
|
|
|
std::string::size_type at = mask.find('@');
|
|
|
|
if (at == std::string::npos)
|
|
|
|
return false;
|
2008-07-12 20:38:14 +00:00
|
|
|
|
2013-05-06 11:49:50 +01:00
|
|
|
const std::string nickIdent = user->nick + "!" + user->ident;
|
2009-09-13 20:33:11 +00:00
|
|
|
std::string prefix = mask.substr(0, at);
|
2013-05-06 11:49:50 +01:00
|
|
|
if (InspIRCd::Match(nickIdent, prefix, NULL))
|
2009-09-13 20:33:11 +00:00
|
|
|
{
|
|
|
|
std::string suffix = mask.substr(at + 1);
|
|
|
|
if (InspIRCd::Match(user->host, suffix, NULL) ||
|
|
|
|
InspIRCd::Match(user->dhost, suffix, NULL) ||
|
|
|
|
InspIRCd::MatchCIDR(user->GetIPString(), suffix, NULL))
|
|
|
|
return true;
|
2008-07-12 20:53:19 +00:00
|
|
|
}
|
2009-09-13 20:33:11 +00:00
|
|
|
return false;
|
2008-07-12 20:38:14 +00:00
|
|
|
}
|
|
|
|
|
2009-09-02 00:49:36 +00:00
|
|
|
ModResult Channel::GetExtBanStatus(User *user, char type)
|
2008-04-04 21:43:21 +00:00
|
|
|
{
|
2009-09-02 00:49:36 +00:00
|
|
|
ModResult rv;
|
2009-09-26 14:13:13 +00:00
|
|
|
FIRST_MOD_RESULT(OnExtBanCheck, rv, (user, this, type));
|
2009-09-02 00:49:36 +00:00
|
|
|
if (rv != MOD_RES_PASSTHRU)
|
|
|
|
return rv;
|
2013-04-03 19:10:18 +02:00
|
|
|
|
|
|
|
ListModeBase* banlm = static_cast<ListModeBase*>(*ban);
|
|
|
|
const ListModeBase::ModeList* bans = banlm->GetList(this);
|
|
|
|
if (bans)
|
2009-09-13 20:33:11 +00:00
|
|
|
{
|
2013-04-03 19:10:18 +02:00
|
|
|
for (ListModeBase::ModeList::const_iterator it = bans->begin(); it != bans->end(); ++it)
|
2009-09-13 20:33:11 +00:00
|
|
|
{
|
2013-04-03 19:10:18 +02:00
|
|
|
if (CheckBan(user, it->mask))
|
2009-09-13 20:33:11 +00:00
|
|
|
return MOD_RES_DENY;
|
|
|
|
}
|
|
|
|
}
|
2009-09-29 23:55:28 +00:00
|
|
|
return MOD_RES_PASSTHRU;
|
2008-04-04 21:43:21 +00:00
|
|
|
}
|
|
|
|
|
2007-10-15 20:59:05 +00:00
|
|
|
/* Channel::PartUser
|
2013-06-02 19:55:07 +02:00
|
|
|
* Remove a channel from a users record, remove the reference to the Membership object
|
|
|
|
* from the channel and destroy it.
|
2007-07-16 17:30:04 +00:00
|
|
|
*/
|
2009-10-18 02:57:46 +00:00
|
|
|
void Channel::PartUser(User *user, std::string &reason)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2013-06-02 19:55:07 +02:00
|
|
|
UserMembIter membiter = userlist.find(user);
|
2009-09-13 20:31:11 +00:00
|
|
|
|
2013-06-02 19:55:07 +02:00
|
|
|
if (membiter != userlist.end())
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2013-06-02 19:55:07 +02:00
|
|
|
Membership* memb = membiter->second;
|
2009-09-13 20:31:11 +00:00
|
|
|
CUList except_list;
|
2013-06-26 17:01:33 -04:00
|
|
|
FOREACH_MOD(OnUserPart, (memb, reason, except_list));
|
2007-07-16 17:30:04 +00:00
|
|
|
|
2009-09-13 20:31:11 +00:00
|
|
|
WriteAllExcept(user, false, 0, except_list, "PART %s%s%s", this->name.c_str(), reason.empty() ? "" : " :", reason.c_str());
|
2007-07-16 17:30:04 +00:00
|
|
|
|
2013-06-02 19:55:07 +02:00
|
|
|
// Remove this channel from the user's chanlist
|
2014-01-24 12:58:01 +01:00
|
|
|
user->chans.erase(memb);
|
2013-06-02 19:55:07 +02:00
|
|
|
// Remove the Membership from this channel's userlist and destroy it
|
|
|
|
this->DelUser(membiter);
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-02 19:55:07 +02:00
|
|
|
void Channel::KickUser(User* src, User* victim, const std::string& reason, Membership* srcmemb)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2013-06-02 19:55:07 +02:00
|
|
|
UserMembIter victimiter = userlist.find(victim);
|
|
|
|
Membership* memb = ((victimiter != userlist.end()) ? victimiter->second : NULL);
|
2013-06-02 19:30:55 +02:00
|
|
|
CUList except_list;
|
2013-06-26 17:01:33 -04:00
|
|
|
FOREACH_MOD(OnUserKick, (src, memb, reason, except_list));
|
2007-07-16 17:30:04 +00:00
|
|
|
|
2013-06-02 19:30:55 +02:00
|
|
|
WriteAllExcept(src, false, 0, except_list, "KICK %s %s :%s", name.c_str(), victim->nick.c_str(), reason.c_str());
|
2007-07-16 17:30:04 +00:00
|
|
|
|
2014-01-24 12:58:01 +01:00
|
|
|
victim->chans.erase(memb);
|
2013-06-02 19:55:07 +02:00
|
|
|
this->DelUser(victimiter);
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
|
2008-02-13 18:22:19 +00:00
|
|
|
void Channel::WriteChannel(User* user, const char* text, ...)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2013-05-18 11:35:10 -07:00
|
|
|
std::string textbuffer;
|
|
|
|
VAFORMAT(textbuffer, text, text);
|
|
|
|
this->WriteChannel(user, textbuffer);
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
|
2007-10-15 20:59:05 +00:00
|
|
|
void Channel::WriteChannel(User* user, const std::string &text)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2013-05-06 11:49:50 +01:00
|
|
|
const std::string message = ":" + user->GetFullHost() + " " + text;
|
2007-07-16 17:30:04 +00:00
|
|
|
|
2009-09-13 20:30:47 +00:00
|
|
|
for (UserMembIter i = userlist.begin(); i != userlist.end(); i++)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
|
|
|
if (IS_LOCAL(i->first))
|
2013-05-06 11:49:50 +01:00
|
|
|
i->first->Write(message);
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-03 01:52:59 +00:00
|
|
|
void Channel::WriteChannelWithServ(const std::string& ServName, const char* text, ...)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2013-05-18 11:35:10 -07:00
|
|
|
std::string textbuffer;
|
|
|
|
VAFORMAT(textbuffer, text, text);
|
|
|
|
this->WriteChannelWithServ(ServName, textbuffer);
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
|
2009-10-03 01:52:59 +00:00
|
|
|
void Channel::WriteChannelWithServ(const std::string& ServName, const std::string &text)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2013-05-06 11:49:50 +01:00
|
|
|
const std::string message = ":" + (ServName.empty() ? ServerInstance->Config->ServerName : ServName) + " " + text;
|
2007-07-16 17:30:04 +00:00
|
|
|
|
2009-09-13 20:30:47 +00:00
|
|
|
for (UserMembIter i = userlist.begin(); i != userlist.end(); i++)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
|
|
|
if (IS_LOCAL(i->first))
|
2013-05-06 11:49:50 +01:00
|
|
|
i->first->Write(message);
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* write formatted text from a source user to all users on a channel except
|
|
|
|
* for the sender (for privmsg etc) */
|
2008-02-13 18:22:19 +00:00
|
|
|
void Channel::WriteAllExceptSender(User* user, bool serversource, char status, const char* text, ...)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2013-05-18 11:35:10 -07:00
|
|
|
std::string textbuffer;
|
|
|
|
VAFORMAT(textbuffer, text, text);
|
|
|
|
this->WriteAllExceptSender(user, serversource, status, textbuffer);
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
|
2008-02-13 18:22:19 +00:00
|
|
|
void Channel::WriteAllExcept(User* user, bool serversource, char status, CUList &except_list, const char* text, ...)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2013-05-18 11:35:10 -07:00
|
|
|
std::string textbuffer;
|
|
|
|
VAFORMAT(textbuffer, text, text);
|
|
|
|
textbuffer = ":" + (serversource ? ServerInstance->Config->ServerName : user->GetFullHost()) + " " + textbuffer;
|
|
|
|
this->RawWriteAllExcept(user, serversource, status, except_list, textbuffer);
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
|
2007-10-15 20:59:05 +00:00
|
|
|
void Channel::WriteAllExcept(User* user, bool serversource, char status, CUList &except_list, const std::string &text)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2013-05-06 11:49:50 +01:00
|
|
|
const std::string message = ":" + (serversource ? ServerInstance->Config->ServerName : user->GetFullHost()) + " " + text;
|
|
|
|
this->RawWriteAllExcept(user, serversource, status, except_list, message);
|
2009-09-02 00:45:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Channel::RawWriteAllExcept(User* user, bool serversource, char status, CUList &except_list, const std::string &out)
|
|
|
|
{
|
2009-11-06 20:47:20 +00:00
|
|
|
unsigned int minrank = 0;
|
2009-09-13 20:31:03 +00:00
|
|
|
if (status)
|
|
|
|
{
|
2013-09-01 14:38:41 +02:00
|
|
|
PrefixMode* mh = ServerInstance->Modes->FindPrefix(status);
|
2009-09-13 20:31:03 +00:00
|
|
|
if (mh)
|
2009-11-06 20:47:20 +00:00
|
|
|
minrank = mh->GetPrefixRank();
|
2009-09-13 20:31:03 +00:00
|
|
|
}
|
2009-09-13 20:30:47 +00:00
|
|
|
for (UserMembIter i = userlist.begin(); i != userlist.end(); i++)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2009-11-06 20:47:20 +00:00
|
|
|
if (IS_LOCAL(i->first) && (except_list.find(i->first) == except_list.end()))
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2009-11-06 20:47:20 +00:00
|
|
|
/* User doesn't have the status we're after */
|
|
|
|
if (minrank && i->second->getRank() < minrank)
|
2008-04-04 18:50:09 +00:00
|
|
|
continue;
|
|
|
|
|
2009-09-02 00:45:29 +00:00
|
|
|
i->first->Write(out);
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-15 20:59:05 +00:00
|
|
|
void Channel::WriteAllExceptSender(User* user, bool serversource, char status, const std::string& text)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
|
|
|
CUList except_list;
|
2009-09-13 20:30:47 +00:00
|
|
|
except_list.insert(user);
|
2007-07-16 17:30:04 +00:00
|
|
|
this->WriteAllExcept(user, serversource, status, except_list, std::string(text));
|
|
|
|
}
|
|
|
|
|
2013-05-16 02:23:45 +02:00
|
|
|
const char* Channel::ChanModes(bool showkey)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2013-05-16 02:23:45 +02:00
|
|
|
static std::string scratch;
|
|
|
|
std::string sparam;
|
2007-07-16 17:30:04 +00:00
|
|
|
|
2013-05-16 02:23:45 +02:00
|
|
|
scratch.clear();
|
2007-07-16 17:30:04 +00:00
|
|
|
|
2007-10-15 20:59:05 +00:00
|
|
|
/* This was still iterating up to 190, Channel::modes is only 64 elements -- Om */
|
2007-07-16 17:30:04 +00:00
|
|
|
for(int n = 0; n < 64; n++)
|
|
|
|
{
|
2014-02-21 15:11:24 +01:00
|
|
|
ModeHandler* mh = ServerInstance->Modes->FindMode(n + 65, MODETYPE_CHANNEL);
|
|
|
|
if (mh && IsModeSet(mh))
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2013-05-16 02:23:45 +02:00
|
|
|
scratch.push_back(n + 65);
|
2013-06-18 18:30:10 +02:00
|
|
|
|
2014-02-15 14:38:24 +01:00
|
|
|
ParamModeBase* pm = mh->IsParameterMode();
|
|
|
|
if (!pm)
|
|
|
|
continue;
|
|
|
|
|
2009-11-15 18:26:35 +00:00
|
|
|
if (n == 'k' - 65 && !showkey)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2013-05-16 02:23:45 +02:00
|
|
|
sparam += " <key>";
|
2009-11-15 18:26:35 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-02-15 14:38:24 +01:00
|
|
|
sparam += ' ';
|
|
|
|
pm->GetParameter(this, sparam);
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-16 02:23:45 +02:00
|
|
|
scratch += sparam;
|
|
|
|
return scratch.c_str();
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* compile a userlist of a channel into a string, each nick seperated by
|
|
|
|
* spaces and op, voice etc status shown as @ and +, and send it to 'user'
|
|
|
|
*/
|
2014-04-09 15:02:10 +02:00
|
|
|
void Channel::UserList(User* user, bool has_user)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2014-01-04 13:02:39 +01:00
|
|
|
bool has_privs = user->HasPrivPermission("channels/auspex");
|
2013-11-12 06:51:31 -05:00
|
|
|
std::string list;
|
2013-06-18 18:30:10 +02:00
|
|
|
list.push_back(this->IsModeSet(secretmode) ? '@' : this->IsModeSet(privatemode) ? '*' : '=');
|
2013-05-22 22:44:10 +02:00
|
|
|
list.push_back(' ');
|
|
|
|
list.append(this->name).append(" :");
|
|
|
|
std::string::size_type pos = list.size();
|
2007-07-16 17:30:04 +00:00
|
|
|
|
2014-04-07 13:40:51 +02:00
|
|
|
const size_t maxlen = ServerInstance->Config->Limits.MaxLine - 10 - ServerInstance->Config->ServerName.size();
|
2013-05-22 22:44:10 +02:00
|
|
|
std::string prefixlist;
|
|
|
|
std::string nick;
|
|
|
|
for (UserMembIter i = userlist.begin(); i != userlist.end(); ++i)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2014-01-21 18:44:08 +01:00
|
|
|
if ((!has_user) && (i->first->IsModeSet(invisiblemode)) && (!has_privs))
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* user is +i, and source not on the channel, does not show
|
|
|
|
* nick in NAMES list
|
|
|
|
*/
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2014-02-14 12:15:00 +01:00
|
|
|
Membership* memb = i->second;
|
|
|
|
|
|
|
|
prefixlist.clear();
|
2014-03-31 11:35:03 +02:00
|
|
|
char prefix = memb->GetPrefixChar();
|
|
|
|
if (prefix)
|
|
|
|
prefixlist.push_back(prefix);
|
2013-05-22 22:44:10 +02:00
|
|
|
nick = i->first->nick;
|
2008-03-21 15:54:15 +00:00
|
|
|
|
2014-04-20 14:05:21 +02:00
|
|
|
ModResult res;
|
|
|
|
FIRST_MOD_RESULT(OnNamesListItem, res, (user, memb, prefixlist, nick));
|
2008-06-12 21:04:37 +00:00
|
|
|
|
2014-04-20 14:05:21 +02:00
|
|
|
// See if a module wants us to exclude this user from NAMES
|
|
|
|
if (res == MOD_RES_DENY)
|
2010-02-19 02:50:29 +00:00
|
|
|
continue;
|
2008-06-12 21:04:37 +00:00
|
|
|
|
2014-03-13 15:41:10 +01:00
|
|
|
if (list.size() + prefixlist.length() + nick.length() + 1 > maxlen)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
|
|
|
/* list overflowed into multiple numerics */
|
2013-05-22 22:44:10 +02:00
|
|
|
user->WriteNumeric(RPL_NAMREPLY, list);
|
2007-07-16 17:30:04 +00:00
|
|
|
|
2013-05-22 22:44:10 +02:00
|
|
|
// Erase all nicks, keep the constant part
|
|
|
|
list.erase(pos);
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
2008-03-30 02:39:38 +00:00
|
|
|
|
2013-05-22 22:44:10 +02:00
|
|
|
list.append(prefixlist).append(nick).push_back(' ');
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
|
2014-04-09 14:50:37 +02:00
|
|
|
// Only send the user list numeric if there is at least one user in it
|
|
|
|
if (list.size() != pos)
|
2013-05-22 22:44:10 +02:00
|
|
|
user->WriteNumeric(RPL_NAMREPLY, list);
|
2007-07-16 17:30:04 +00:00
|
|
|
|
2013-11-12 06:51:31 -05:00
|
|
|
user->WriteNumeric(RPL_ENDOFNAMES, "%s :End of /NAMES list.", this->name.c_str());
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* returns the status character for a given user on a channel, e.g. @ for op,
|
|
|
|
* % for halfop etc. If the user has several modes set, the highest mode
|
|
|
|
* the user has must be returned.
|
|
|
|
*/
|
2014-02-14 12:15:00 +01:00
|
|
|
char Membership::GetPrefixChar() const
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2014-02-14 12:15:00 +01:00
|
|
|
char pf = 0;
|
2009-09-13 20:30:47 +00:00
|
|
|
unsigned int bestrank = 0;
|
2008-06-12 21:04:37 +00:00
|
|
|
|
2014-02-14 12:15:00 +01:00
|
|
|
for (std::string::const_iterator i = modes.begin(); i != modes.end(); ++i)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2014-02-14 12:15:00 +01:00
|
|
|
PrefixMode* mh = ServerInstance->Modes->FindPrefixMode(*i);
|
|
|
|
if (mh && mh->GetPrefixRank() > bestrank && mh->GetPrefix())
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2014-02-14 12:15:00 +01:00
|
|
|
bestrank = mh->GetPrefixRank();
|
|
|
|
pf = mh->GetPrefix();
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return pf;
|
|
|
|
}
|
|
|
|
|
2009-09-13 20:31:11 +00:00
|
|
|
unsigned int Membership::getRank()
|
|
|
|
{
|
|
|
|
char mchar = modes.c_str()[0];
|
|
|
|
unsigned int rv = 0;
|
|
|
|
if (mchar)
|
|
|
|
{
|
2013-09-01 14:38:41 +02:00
|
|
|
PrefixMode* mh = ServerInstance->Modes->FindPrefixMode(mchar);
|
2009-09-13 20:31:11 +00:00
|
|
|
if (mh)
|
|
|
|
rv = mh->GetPrefixRank();
|
|
|
|
}
|
|
|
|
return rv;
|
|
|
|
}
|
2008-04-01 13:53:27 +00:00
|
|
|
|
2014-02-14 12:16:31 +01:00
|
|
|
const char* Membership::GetAllPrefixChars() const
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2009-09-13 20:30:47 +00:00
|
|
|
static char prefix[64];
|
2007-07-16 17:30:04 +00:00
|
|
|
int ctr = 0;
|
|
|
|
|
2014-02-14 12:16:31 +01:00
|
|
|
for (std::string::const_iterator i = modes.begin(); i != modes.end(); ++i)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2014-02-14 12:16:31 +01:00
|
|
|
PrefixMode* mh = ServerInstance->Modes->FindPrefixMode(*i);
|
|
|
|
if (mh && mh->GetPrefix())
|
|
|
|
prefix[ctr++] = mh->GetPrefix();
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
prefix[ctr] = 0;
|
|
|
|
|
|
|
|
return prefix;
|
|
|
|
}
|
|
|
|
|
2007-10-15 20:59:05 +00:00
|
|
|
unsigned int Channel::GetPrefixValue(User* user)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2009-09-13 20:30:47 +00:00
|
|
|
UserMembIter m = userlist.find(user);
|
2009-09-13 20:32:19 +00:00
|
|
|
if (m == userlist.end())
|
|
|
|
return 0;
|
|
|
|
return m->second->getRank();
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
|
2013-09-01 14:38:41 +02:00
|
|
|
bool Membership::SetPrefix(PrefixMode* delta_mh, bool adding)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2013-09-01 14:25:15 +02:00
|
|
|
char prefix = delta_mh->GetModeChar();
|
|
|
|
for (unsigned int i = 0; i < modes.length(); i++)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2013-09-01 14:25:15 +02:00
|
|
|
char mchar = modes[i];
|
2013-09-01 14:38:41 +02:00
|
|
|
PrefixMode* mh = ServerInstance->Modes->FindPrefixMode(mchar);
|
2009-09-13 20:31:23 +00:00
|
|
|
if (mh && mh->GetPrefixRank() <= delta_mh->GetPrefixRank())
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2013-09-01 14:25:15 +02:00
|
|
|
modes = modes.substr(0,i) +
|
2009-09-13 20:31:23 +00:00
|
|
|
(adding ? std::string(1, prefix) : "") +
|
2013-09-01 14:25:15 +02:00
|
|
|
modes.substr(mchar == prefix ? i+1 : i);
|
2010-01-09 17:29:28 +00:00
|
|
|
return adding != (mchar == prefix);
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
}
|
2009-09-13 20:31:23 +00:00
|
|
|
if (adding)
|
2013-09-01 14:25:15 +02:00
|
|
|
modes.push_back(prefix);
|
2010-01-09 17:29:28 +00:00
|
|
|
return adding;
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
|
2012-06-17 17:53:39 +02:00
|
|
|
void Invitation::Create(Channel* c, LocalUser* u, time_t timeout)
|
|
|
|
{
|
|
|
|
if ((timeout != 0) && (ServerInstance->Time() >= timeout))
|
|
|
|
// Expired, don't bother
|
|
|
|
return;
|
|
|
|
|
2013-04-12 02:10:06 +01:00
|
|
|
ServerInstance->Logs->Log("INVITATION", LOG_DEBUG, "Invitation::Create chan=%s user=%s", c->name.c_str(), u->uuid.c_str());
|
2012-06-17 17:53:39 +02:00
|
|
|
|
|
|
|
Invitation* inv = Invitation::Find(c, u, false);
|
|
|
|
if (inv)
|
|
|
|
{
|
|
|
|
if ((inv->expiry == 0) || (inv->expiry > timeout))
|
|
|
|
return;
|
|
|
|
inv->expiry = timeout;
|
2013-04-12 02:10:06 +01:00
|
|
|
ServerInstance->Logs->Log("INVITATION", LOG_DEBUG, "Invitation::Create changed expiry in existing invitation %p", (void*) inv);
|
2012-06-17 17:53:39 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
inv = new Invitation(c, u, timeout);
|
2014-01-24 13:20:11 +01:00
|
|
|
c->invites.push_front(inv);
|
|
|
|
u->invites.push_front(inv);
|
2013-04-12 02:10:06 +01:00
|
|
|
ServerInstance->Logs->Log("INVITATION", LOG_DEBUG, "Invitation::Create created new invitation %p", (void*) inv);
|
2012-06-17 17:53:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Invitation* Invitation::Find(Channel* c, LocalUser* u, bool check_expired)
|
|
|
|
{
|
2013-04-12 02:10:06 +01:00
|
|
|
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);
|
2012-06-17 17:53:39 +02:00
|
|
|
|
|
|
|
Invitation* result = NULL;
|
2014-01-24 13:20:11 +01:00
|
|
|
for (InviteList::iterator i = u->invites.begin(); i != u->invites.end(); )
|
2012-06-17 17:53:39 +02:00
|
|
|
{
|
|
|
|
Invitation* inv = *i;
|
2014-01-24 13:20:11 +01:00
|
|
|
++i;
|
|
|
|
|
2012-06-17 17:53:39 +02:00
|
|
|
if ((check_expired) && (inv->expiry != 0) && (inv->expiry <= ServerInstance->Time()))
|
|
|
|
{
|
|
|
|
/* Expired invite, remove it. */
|
2013-12-15 05:34:00 +00:00
|
|
|
std::string expiration = InspIRCd::TimeString(inv->expiry);
|
2013-04-12 02:10:06 +01:00
|
|
|
ServerInstance->Logs->Log("INVITATION", LOG_DEBUG, "Invitation::Find ecountered expired entry: %p expired %s", (void*) inv, expiration.c_str());
|
2012-06-17 17:53:39 +02:00
|
|
|
delete inv;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Is it what we're searching for? */
|
|
|
|
if (inv->chan == c)
|
|
|
|
{
|
|
|
|
result = inv;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-12 02:10:06 +01:00
|
|
|
ServerInstance->Logs->Log("INVITATION", LOG_DEBUG, "Invitation::Find result=%p", (void*) result);
|
2012-06-17 17:53:39 +02:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
Invitation::~Invitation()
|
|
|
|
{
|
|
|
|
// Remove this entry from both lists
|
2014-01-24 13:20:11 +01:00
|
|
|
chan->invites.erase(this);
|
|
|
|
user->invites.erase(this);
|
|
|
|
ServerInstance->Logs->Log("INVITEBASE", LOG_DEBUG, "Invitation::~ %p", (void*) this);
|
2012-06-17 17:53:39 +02:00
|
|
|
}
|