2012-04-19 20:58:29 +02:00
|
|
|
/*
|
|
|
|
* InspIRCd -- Internet Relay Chat Daemon
|
2007-07-16 17:30:04 +00:00
|
|
|
*
|
2020-01-11 22:02:47 +00:00
|
|
|
* Copyright (C) 2017 B00mX0r <b00mx0r@aureus.pw>
|
2022-04-28 18:49:16 +01:00
|
|
|
* Copyright (C) 2013-2014, 2016-2020, 2022 Sadie Powell <sadie@witchery.services>
|
2020-01-11 22:02:47 +00:00
|
|
|
* Copyright (C) 2013 Adam <Adam@anope.org>
|
|
|
|
* Copyright (C) 2012-2016, 2018 Attila Molnar <attilamolnar@hush.com>
|
|
|
|
* Copyright (C) 2012, 2019 Robby <robby@chatbelgie.be>
|
2012-04-19 20:58:29 +02:00
|
|
|
* Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
|
|
|
|
* Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
|
2021-03-05 02:04:16 +00:00
|
|
|
* Copyright (C) 2006-2009 Robin Burchell <robin+git@viroteck.net>
|
2022-12-30 11:31:28 +00:00
|
|
|
* Copyright (C) 2006-2008 Craig Edwards <brain@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"
|
2022-06-26 16:34:21 +01:00
|
|
|
#include "clientprotocolevent.h"
|
2013-04-03 19:10:18 +02:00
|
|
|
#include "listmode.h"
|
2007-07-16 17:30:04 +00:00
|
|
|
|
2013-06-18 18:30:10 +02:00
|
|
|
namespace
|
|
|
|
{
|
2022-07-22 18:33:38 +01:00
|
|
|
ChanModeReference ban(nullptr, "ban");
|
2013-06-18 18:30:10 +02:00
|
|
|
}
|
2013-04-03 19:10:18 +02:00
|
|
|
|
2022-09-29 12:01:29 +01:00
|
|
|
Channel::Channel(const std::string& cname, time_t ts)
|
2022-01-31 02:04:43 +00:00
|
|
|
: Extensible(ExtensionType::CHANNEL)
|
|
|
|
, name(cname)
|
2020-02-06 11:25:42 +00:00
|
|
|
, age(ts)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2020-06-21 04:25:45 +01:00
|
|
|
if (!ServerInstance->Channels.GetChans().emplace(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
|
|
|
}
|
|
|
|
|
2022-10-22 20:45:22 +01:00
|
|
|
void Channel::SetMode(const ModeHandler* mh, bool on)
|
2009-11-15 18:26:35 +00:00
|
|
|
{
|
2018-12-12 13:54:31 +00:00
|
|
|
if (mh && mh->GetId() != ModeParser::MODEID_MAX)
|
|
|
|
modes[mh->GetId()] = on;
|
2009-11-15 18:26:35 +00:00
|
|
|
}
|
|
|
|
|
2016-04-11 15:53:01 +02:00
|
|
|
void Channel::SetTopic(User* u, const std::string& ntopic, time_t topicts, const std::string* setter)
|
2008-08-04 15:28:29 +00:00
|
|
|
{
|
2016-04-11 15:53:01 +02:00
|
|
|
// Send a TOPIC message to the channel only if the new topic text differs
|
|
|
|
if (this->topic != ntopic)
|
|
|
|
{
|
|
|
|
this->topic = ntopic;
|
2018-08-13 20:17:46 +01:00
|
|
|
ClientProtocol::Messages::Topic topicmsg(u, this, this->topic);
|
|
|
|
Write(ServerInstance->GetRFCEvents().topic, topicmsg);
|
2016-04-11 15:53:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Always update setter and set time
|
|
|
|
if (!setter)
|
|
|
|
setter = ServerInstance->Config->FullHostInTopic ? &u->GetFullHost() : &u->nick;
|
2016-07-22 11:26:11 +01:00
|
|
|
this->setby.assign(*setter, 0, ServerInstance->Config->Limits.GetMaxMask());
|
2016-04-11 15:53:01 +02:00
|
|
|
this->topicset = topicts;
|
2008-08-04 15:28:29 +00:00
|
|
|
|
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
|
|
|
{
|
2021-04-18 04:37:51 +01:00
|
|
|
std::pair<MemberMap::iterator, bool> ret = userlist.emplace(user, insp::aligned_storage<Membership>());
|
2014-09-27 18:30:01 +02:00
|
|
|
if (!ret.second)
|
2022-07-22 18:33:38 +01:00
|
|
|
return nullptr;
|
2013-04-12 16:00:17 +02:00
|
|
|
|
2014-09-27 18:30:01 +02:00
|
|
|
Membership* memb = new(ret.first->second) 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
|
|
|
{
|
2014-07-14 16:19:34 +02:00
|
|
|
MemberMap::iterator it = userlist.find(user);
|
2013-06-02 19:55:07 +02:00
|
|
|
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
|
|
|
|
2015-01-16 10:58:28 +01:00
|
|
|
// If the channel isn't in chanlist then it is already in the cull list, don't add it again
|
2020-06-21 04:25:45 +01:00
|
|
|
ChannelMap::iterator iter = ServerInstance->Channels.GetChans().find(this->name);
|
|
|
|
if ((iter == ServerInstance->Channels.GetChans().end()) || (iter->second != this))
|
2015-01-16 10:58:28 +01:00
|
|
|
return;
|
2009-10-20 04:40:50 +00:00
|
|
|
|
2015-01-16 10:58:28 +01:00
|
|
|
FOREACH_MOD(OnChannelDelete, (this));
|
2020-06-21 04:25:45 +01:00
|
|
|
ServerInstance->Channels.GetChans().erase(iter);
|
2013-06-02 19:55:07 +02:00
|
|
|
ServerInstance->GlobalCulls.AddItem(this);
|
|
|
|
}
|
2012-06-17 17:53:39 +02:00
|
|
|
|
2014-07-14 16:19:34 +02:00
|
|
|
void Channel::DelUser(const MemberMap::iterator& membiter)
|
2013-06-02 19:55:07 +02:00
|
|
|
{
|
|
|
|
Membership* memb = membiter->second;
|
2021-03-02 05:39:12 +00:00
|
|
|
memb->Cull();
|
2014-09-27 18:30:01 +02:00
|
|
|
memb->~Membership();
|
2013-06-02 19:55:07 +02:00
|
|
|
userlist.erase(membiter);
|
|
|
|
|
|
|
|
// If this channel became empty then it should be removed
|
|
|
|
CheckDestroy();
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
|
2022-12-08 10:19:47 +00:00
|
|
|
Membership* Channel::GetUser(User* user) const
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2022-12-08 10:19:47 +00:00
|
|
|
MemberMap::const_iterator i = userlist.find(user);
|
2009-09-13 20:30:47 +00:00
|
|
|
if (i == userlist.end())
|
2022-07-22 18:33:38 +01:00
|
|
|
return nullptr;
|
2009-09-13 20:30:47 +00:00
|
|
|
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
|
|
|
{
|
2022-12-18 13:43:33 +00:00
|
|
|
ServerInstance->Logs.Debug("CHANNELS", "Setting default modes on %s: %s", name.c_str(),
|
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);
|
|
|
|
|
2023-01-10 23:02:45 +00:00
|
|
|
for (const auto modechr : modeseq)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2021-04-06 20:06:18 +01:00
|
|
|
ModeHandler* mode = ServerInstance->Modes.FindMode(modechr, MODETYPE_CHANNEL);
|
2007-07-16 17:30:04 +00:00
|
|
|
if (mode)
|
|
|
|
{
|
2013-09-01 14:38:41 +02:00
|
|
|
if (mode->IsPrefixMode())
|
2013-07-10 15:23:46 +01:00
|
|
|
continue;
|
|
|
|
|
2016-08-29 14:50:08 +02:00
|
|
|
if (mode->NeedsParam(true))
|
2014-09-26 21:07:24 +02:00
|
|
|
{
|
2022-01-30 23:16:23 +00:00
|
|
|
// If the parameter is missing or begins with a ':' then it's invalid
|
|
|
|
if (!list.GetToken(parameter) || parameter[0] == ':')
|
2014-09-26 21:07:24 +02:00
|
|
|
continue;
|
|
|
|
}
|
2007-07-16 17:30:04 +00:00
|
|
|
else
|
2022-01-30 23:16:23 +00:00
|
|
|
{
|
|
|
|
// The mode does not take a parameter.
|
2007-07-16 17:30:04 +00:00
|
|
|
parameter.clear();
|
2022-01-30 23:16:23 +00:00
|
|
|
}
|
2014-09-26 20:58:55 +02:00
|
|
|
|
2021-03-30 17:52:02 +01:00
|
|
|
Modes::Change modechange(mode, true, parameter);
|
|
|
|
mode->OnModeChange(ServerInstance->FakeClient, ServerInstance->FakeClient, this, modechange);
|
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
|
|
|
{
|
2022-10-29 13:30:39 +01:00
|
|
|
if (!user->IsFullyConnected())
|
2013-04-12 16:00:17 +02:00
|
|
|
{
|
2022-10-29 15:44:01 +01:00
|
|
|
ServerInstance->Logs.Debug("CHANNELS", "Attempted to join partially connected user " + user->uuid + " to channel " + cname);
|
2022-07-22 18:33:38 +01:00
|
|
|
return nullptr;
|
2013-04-12 16:00:17 +02:00
|
|
|
}
|
2007-07-16 17:30:04 +00:00
|
|
|
|
2013-04-12 16:00:17 +02:00
|
|
|
// Crop channel name if it's too long
|
2020-11-27 12:36:44 +00:00
|
|
|
if (cname.length() > ServerInstance->Config->Limits.MaxChannel)
|
|
|
|
cname.resize(ServerInstance->Config->Limits.MaxChannel);
|
2013-04-01 02:13:43 +02:00
|
|
|
|
2023-01-10 23:02:45 +00:00
|
|
|
auto* chan = ServerInstance->Channels.Find(cname);
|
2021-05-23 01:53:34 +01:00
|
|
|
bool created_by_local = !chan; // Flag that will be passed to ForceJoin later
|
2013-04-12 16:00:17 +02:00
|
|
|
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
|
|
|
|
2021-05-23 01:53:34 +01:00
|
|
|
// Ask the modules whether they're ok with the join, pass NULL as Channel* as the channel is yet to be created
|
|
|
|
ModResult MOD_RESULT;
|
2022-07-22 18:33:38 +01:00
|
|
|
FIRST_MOD_RESULT(OnUserPreJoin, MOD_RESULT, (user, nullptr, cname, privs, key, override));
|
2021-05-23 01:53:34 +01:00
|
|
|
if (!override && MOD_RESULT == MOD_RES_DENY)
|
|
|
|
return nullptr; // 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))
|
2021-05-23 01:53:34 +01:00
|
|
|
return nullptr;
|
2007-07-16 17:30:04 +00:00
|
|
|
|
2021-05-23 01:53:34 +01:00
|
|
|
ModResult MOD_RESULT;
|
|
|
|
FIRST_MOD_RESULT(OnUserPreJoin, MOD_RESULT, (user, chan, cname, privs, key, override));
|
2013-04-12 16:00:17 +02:00
|
|
|
|
2021-05-23 01:53:34 +01:00
|
|
|
// A module explicitly denied the join and (hopefully) generated a message
|
|
|
|
// describing the situation, so we may stop here without sending anything
|
|
|
|
if (!override && MOD_RESULT == MOD_RES_DENY)
|
|
|
|
return nullptr;
|
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
|
|
|
}
|
|
|
|
|
2014-06-10 17:45:41 +02:00
|
|
|
Membership* 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))
|
|
|
|
{
|
2022-01-18 03:30:22 +00:00
|
|
|
ServerInstance->Logs.Debug("CHANNELS", "Attempted to join server user " + user->uuid + " to channel " + this->name);
|
2022-07-22 18:33:38 +01:00
|
|
|
return nullptr;
|
2013-04-12 16:00:17 +02:00
|
|
|
}
|
|
|
|
|
2013-07-01 19:10:21 +02:00
|
|
|
Membership* memb = this->AddUser(user);
|
|
|
|
if (!memb)
|
2022-07-22 18:33:38 +01:00
|
|
|
return nullptr; // Already on the channel
|
2013-07-01 19:10:21 +02:00
|
|
|
|
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
|
|
|
{
|
2019-06-07 19:47:15 +01:00
|
|
|
// If the user was granted prefix modes (in the OnUserPreJoin hook, or they're a
|
|
|
|
// remote user and their own server set the modes), then set them internally now
|
2023-01-10 23:02:45 +00:00
|
|
|
for (const auto priv : *privs)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2021-04-06 20:06:18 +01:00
|
|
|
PrefixMode* mh = ServerInstance->Modes.FindPrefixMode(priv);
|
2013-09-01 14:38:41 +02:00
|
|
|
if (mh)
|
2013-04-12 16:00:17 +02:00
|
|
|
{
|
2021-03-30 17:52:02 +01:00
|
|
|
// Set the mode on the user.
|
|
|
|
Modes::Change modechange(mh, true, user->nick);
|
2022-07-22 18:33:38 +01:00
|
|
|
mh->OnModeChange(ServerInstance->FakeClient, nullptr, this, modechange);
|
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
|
|
|
|
2018-08-13 20:17:46 +01:00
|
|
|
ClientProtocol::Events::Join joinevent(memb);
|
|
|
|
this->Write(joinevent, 0, except_list);
|
2007-07-16 17:30:04 +00:00
|
|
|
|
2013-06-26 17:01:33 -04:00
|
|
|
FOREACH_MOD(OnPostJoin, (memb));
|
2014-06-10 17:45:41 +02:00
|
|
|
return 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);
|
2017-12-03 17:16:28 +00:00
|
|
|
if (!banlm)
|
|
|
|
return false;
|
|
|
|
|
2013-04-03 19:10:18 +02:00
|
|
|
const ListModeBase::ModeList* bans = banlm->GetList(this);
|
|
|
|
if (bans)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2021-04-06 20:06:18 +01:00
|
|
|
for (const auto& entry : *bans)
|
2013-04-03 19:10:18 +02:00
|
|
|
{
|
2021-04-06 20:06:18 +01:00
|
|
|
if (CheckBan(user, entry.mask))
|
2013-04-03 19:10:18 +02:00
|
|
|
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
|
|
|
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;
|
2015-01-10 15:16:03 +01:00
|
|
|
std::string prefix(mask, 0, at);
|
2022-07-22 18:33:38 +01:00
|
|
|
if (InspIRCd::Match(nickIdent, prefix, nullptr))
|
2009-09-13 20:33:11 +00:00
|
|
|
{
|
2015-01-10 15:16:03 +01:00
|
|
|
std::string suffix(mask, at + 1);
|
2022-07-22 18:33:38 +01:00
|
|
|
if (InspIRCd::Match(user->GetRealHost(), suffix, nullptr) ||
|
|
|
|
InspIRCd::Match(user->GetDisplayedHost(), suffix, nullptr) ||
|
|
|
|
InspIRCd::MatchCIDR(user->GetIPString(), suffix, nullptr))
|
2009-09-13 20:33:11 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
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
|
|
|
*/
|
2021-04-17 23:41:32 +01:00
|
|
|
bool Channel::PartUser(User* user, const std::string& reason)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2014-07-14 16:19:34 +02:00
|
|
|
MemberMap::iterator membiter = userlist.find(user);
|
2009-09-13 20:31:11 +00:00
|
|
|
|
2015-12-28 17:25:30 +01:00
|
|
|
if (membiter == userlist.end())
|
2015-12-28 17:27:40 +01:00
|
|
|
return false;
|
2015-12-28 17:25:30 +01:00
|
|
|
|
|
|
|
Membership* memb = membiter->second;
|
2021-04-17 23:41:32 +01:00
|
|
|
std::string partreason(reason);
|
2015-12-28 17:25:30 +01:00
|
|
|
CUList except_list;
|
2021-04-17 23:41:32 +01:00
|
|
|
FOREACH_MOD(OnUserPart, (memb, partreason, except_list));
|
2007-07-16 17:30:04 +00:00
|
|
|
|
2021-04-17 23:41:32 +01:00
|
|
|
ClientProtocol::Messages::Part partmsg(memb, partreason);
|
2018-08-13 20:17:46 +01:00
|
|
|
Write(ServerInstance->GetRFCEvents().part, partmsg, 0, except_list);
|
2007-07-16 17:30:04 +00:00
|
|
|
|
2015-12-28 17:25:30 +01:00
|
|
|
// Remove this channel from the user's chanlist
|
|
|
|
user->chans.erase(memb);
|
|
|
|
// Remove the Membership from this channel's userlist and destroy it
|
|
|
|
this->DelUser(membiter);
|
2015-12-28 17:27:40 +01:00
|
|
|
|
|
|
|
return true;
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
|
2014-07-14 16:19:34 +02:00
|
|
|
void Channel::KickUser(User* src, const MemberMap::iterator& victimiter, const std::string& reason)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2014-06-10 17:12:00 +02:00
|
|
|
Membership* memb = victimiter->second;
|
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
|
|
|
|
2018-08-13 20:17:46 +01:00
|
|
|
ClientProtocol::Messages::Kick kickmsg(src, memb, reason);
|
|
|
|
Write(ServerInstance->GetRFCEvents().kick, kickmsg, 0, except_list);
|
2007-07-16 17:30:04 +00:00
|
|
|
|
2018-08-13 20:17:46 +01:00
|
|
|
memb->user->chans.erase(memb);
|
2013-06-02 19:55:07 +02:00
|
|
|
this->DelUser(victimiter);
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
|
2022-12-08 10:19:47 +00:00
|
|
|
void Channel::Write(ClientProtocol::Event& protoev, char status, const CUList& except_list) const
|
2009-09-02 00:45:29 +00:00
|
|
|
{
|
2022-05-17 13:41:40 +01:00
|
|
|
ModeHandler::Rank minrank = 0;
|
2009-09-13 20:31:03 +00:00
|
|
|
if (status)
|
|
|
|
{
|
2019-02-07 12:14:37 +00: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
|
|
|
}
|
2021-04-06 20:06:18 +01:00
|
|
|
|
|
|
|
for (const auto& [u, memb] : userlist)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2021-04-06 20:06:18 +01:00
|
|
|
LocalUser* user = IS_LOCAL(u);
|
2018-08-13 20:17:46 +01:00
|
|
|
if ((user) && (!except_list.count(user)))
|
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 */
|
2022-01-31 00:03:39 +00:00
|
|
|
if (minrank && memb->GetRank() < minrank)
|
2008-04-04 18:50:09 +00:00
|
|
|
continue;
|
|
|
|
|
2018-08-13 20:17:46 +01:00
|
|
|
user->Send(protoev);
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-28 17:15:25 +00:00
|
|
|
const char* Channel::ChanModes(bool showsecret)
|
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
|
|
|
|
2021-05-08 17:50:24 +01:00
|
|
|
for (const auto& [_, mh] : ServerInstance->Modes.GetModes(MODETYPE_CHANNEL))
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2021-05-08 17:50:24 +01:00
|
|
|
if (IsModeSet(mh))
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2021-05-08 17:50:24 +01:00
|
|
|
scratch.push_back(mh->GetModeChar());
|
2013-06-18 18:30:10 +02:00
|
|
|
|
2014-02-15 14:38:24 +01:00
|
|
|
ParamModeBase* pm = mh->IsParameterMode();
|
|
|
|
if (!pm)
|
|
|
|
continue;
|
|
|
|
|
2019-01-28 17:15:25 +00:00
|
|
|
if (pm->IsParameterSecret() && !showsecret)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2019-01-28 17:15:25 +00:00
|
|
|
sparam += " <" + pm->name + ">";
|
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
|
|
|
}
|
|
|
|
|
2022-12-08 10:19:47 +00:00
|
|
|
void Channel::WriteNotice(const std::string& text, char status) const
|
2016-03-05 16:41:24 +01:00
|
|
|
{
|
2023-01-22 21:48:22 +00:00
|
|
|
ClientProtocol::Messages::Privmsg privmsg(ClientProtocol::Messages::Privmsg::nocopy, ServerInstance->FakeClient, this, text, MessageType::NOTICE, status);
|
2022-04-02 03:13:28 +01:00
|
|
|
Write(ServerInstance->GetRFCEvents().privmsg, privmsg, status);
|
2020-01-29 11:44:50 +00:00
|
|
|
}
|
|
|
|
|
2022-12-08 10:19:47 +00:00
|
|
|
void Channel::WriteRemoteNotice(const std::string& text, char status) const
|
2020-01-29 11:44:50 +00:00
|
|
|
{
|
|
|
|
WriteNotice(text, status);
|
2023-01-22 21:48:22 +00:00
|
|
|
ServerInstance->PI->SendMessage(this, status, text, MessageType::NOTICE);
|
2016-03-05 16:41:24 +01:00
|
|
|
}
|
|
|
|
|
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;
|
2022-05-17 13:41:40 +01:00
|
|
|
ModeHandler::Rank bestrank = 0;
|
2008-06-12 21:04:37 +00:00
|
|
|
|
2023-01-10 23:02:45 +00:00
|
|
|
for (const auto* mh : modes)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2022-05-17 13:02:58 +01:00
|
|
|
if (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;
|
|
|
|
}
|
|
|
|
|
2022-05-17 13:02:58 +01:00
|
|
|
std::string Membership::GetAllPrefixChars() const
|
2009-09-13 20:31:11 +00:00
|
|
|
{
|
2022-05-17 13:02:58 +01:00
|
|
|
std::string ret;
|
2022-05-17 14:13:12 +01:00
|
|
|
ret.reserve(modes.size());
|
2023-01-10 23:02:45 +00:00
|
|
|
for (const auto* mh : modes)
|
2009-09-13 20:31:11 +00:00
|
|
|
{
|
2022-05-17 13:02:58 +01:00
|
|
|
if (mh->GetPrefix())
|
|
|
|
ret.push_back(mh->GetPrefix());
|
2009-09-13 20:31:11 +00:00
|
|
|
}
|
2022-05-17 13:02:58 +01:00
|
|
|
return ret;
|
2009-09-13 20:31:11 +00:00
|
|
|
}
|
2008-04-01 13:53:27 +00:00
|
|
|
|
2022-05-17 13:02:58 +01:00
|
|
|
std::string Membership::GetAllPrefixModes() const
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2016-08-30 16:33:46 +02:00
|
|
|
std::string ret;
|
2022-05-17 14:13:12 +01:00
|
|
|
ret.reserve(modes.size());
|
2023-01-10 23:02:45 +00:00
|
|
|
for (const auto* mh : modes)
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2022-05-17 13:02:58 +01:00
|
|
|
if (mh->GetModeChar())
|
|
|
|
ret.push_back(mh->GetModeChar());
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
2016-08-30 16:33:46 +02:00
|
|
|
return ret;
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
|
|
|
|
2022-12-08 10:19:47 +00:00
|
|
|
ModeHandler::Rank Channel::GetPrefixValue(User* user) const
|
2007-07-16 17:30:04 +00:00
|
|
|
{
|
2022-12-08 10:19:47 +00:00
|
|
|
MemberMap::const_iterator m = userlist.find(user);
|
2009-09-13 20:32:19 +00:00
|
|
|
if (m == userlist.end())
|
|
|
|
return 0;
|
2022-01-31 00:03:39 +00:00
|
|
|
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
|
|
|
{
|
2009-09-13 20:31:23 +00:00
|
|
|
if (adding)
|
2022-05-17 13:02:58 +01:00
|
|
|
return modes.insert(delta_mh).second;
|
|
|
|
else
|
|
|
|
return modes.erase(delta_mh);
|
2007-07-16 17:30:04 +00:00
|
|
|
}
|
2018-01-03 16:24:19 +00:00
|
|
|
|
|
|
|
void Membership::WriteNotice(const std::string& text) const
|
|
|
|
{
|
2018-08-13 20:17:46 +01:00
|
|
|
LocalUser* const localuser = IS_LOCAL(user);
|
|
|
|
if (!localuser)
|
|
|
|
return;
|
|
|
|
|
2023-01-22 21:48:22 +00:00
|
|
|
ClientProtocol::Messages::Privmsg privmsg(ClientProtocol::Messages::Privmsg::nocopy, ServerInstance->FakeClient, this->chan, text, MessageType::NOTICE);
|
2018-08-13 20:17:46 +01:00
|
|
|
localuser->Send(ServerInstance->GetRFCEvents().privmsg, privmsg);
|
2018-01-03 16:24:19 +00:00
|
|
|
}
|