mirror of
https://github.com/anope/anope.git
synced 2026-06-12 19:14:47 +02:00
325 lines
8.4 KiB
C++
325 lines
8.4 KiB
C++
// Anope IRC Services <https://www.anope.org/>
|
|
//
|
|
// Copyright (C) 2003-2026 Anope Contributors
|
|
//
|
|
// Anope is free software. You can use, modify, and/or distribute it under the
|
|
// terms of version 2 of the GNU General Public License. See docs/LICENSE.txt
|
|
// for the complete terms of this license and docs/AUTHORS.txt for a list of
|
|
// contributors.
|
|
//
|
|
// Based on the original code of Epona by Lara
|
|
// Based on the original code of Services by Andy Church
|
|
//
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
#include "module.h"
|
|
#include "modules/suspend.h"
|
|
|
|
struct CSSuspendInfo final
|
|
: SuspendInfo
|
|
, Serializable
|
|
{
|
|
CSSuspendInfo(Extensible *) : Serializable("CSSuspendInfo") { }
|
|
};
|
|
|
|
struct CSSuspendInfoType final
|
|
: Serialize::Type
|
|
{
|
|
CSSuspendInfoType()
|
|
: Serialize::Type("CSSuspendInfo")
|
|
{
|
|
}
|
|
|
|
void Serialize(Serializable *obj, Serialize::Data &data) const override
|
|
{
|
|
const auto *si = static_cast<const CSSuspendInfo *>(obj);
|
|
data.Store("chan", si->what);
|
|
data.Store("by", si->by);
|
|
data.Store("reason", si->reason);
|
|
data.Store("time", si->when);
|
|
data.Store("expires", si->expires);
|
|
}
|
|
|
|
Serializable *Unserialize(Serializable *obj, Serialize::Data &data) const override
|
|
{
|
|
CSSuspendInfo *si;
|
|
if (obj)
|
|
si = anope_dynamic_static_cast<CSSuspendInfo *>(obj);
|
|
else
|
|
{
|
|
auto *ci = ChannelInfo::Find(data.Load("chan"));
|
|
if (!ci)
|
|
return NULL;
|
|
si = ci->Extend<CSSuspendInfo>("CS_SUSPENDED");
|
|
si->what = ci->name;
|
|
}
|
|
|
|
si->by = data.Load("by");
|
|
si->reason = data.Load("reason");
|
|
si->when = data.Load<time_t>("time");
|
|
si->expires = data.Load<time_t>("expires");
|
|
return si;
|
|
}
|
|
};
|
|
|
|
class CommandCSSuspend final
|
|
: public Command
|
|
{
|
|
public:
|
|
CommandCSSuspend(Module *creator)
|
|
: Command(creator, "chanserv/suspend", 1, 3)
|
|
{
|
|
this->SetDesc(_("Prevent a channel from being used preserving channel data and settings"));
|
|
this->SetSyntax(_("\037channel\037 [+\037expiry\037] [\037reason\037]"));
|
|
}
|
|
|
|
void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) override
|
|
{
|
|
if (Anope::ReadOnly)
|
|
{
|
|
source.Reply(READ_ONLY_MODE);
|
|
return;
|
|
}
|
|
|
|
const auto &chan = params[0];
|
|
auto *ci = ChannelInfo::Find(chan);
|
|
if (ci == NULL)
|
|
{
|
|
source.Reply(CHAN_X_NOT_REGISTERED, chan.c_str());
|
|
return;
|
|
}
|
|
|
|
if (ci->HasExt("CS_SUSPENDED"))
|
|
{
|
|
source.Reply(_("\002%s\002 is already suspended."), ci->name.c_str());
|
|
return;
|
|
}
|
|
|
|
const size_t expiry_idx = params.size() >= 1 && params[1][0] == '+' ? 1 : 0;
|
|
const size_t reason_idx = expiry_idx ? 2 : 1;
|
|
|
|
time_t expiry_secs = Config->GetModule(this->owner).Get<time_t>("suspendexpire");
|
|
if (expiry_idx != 0)
|
|
{
|
|
expiry_secs = Anope::DoTime(params[expiry_idx].substr(1));
|
|
if (expiry_secs < 0)
|
|
{
|
|
source.Reply(BAD_EXPIRY_TIME);
|
|
return;
|
|
}
|
|
}
|
|
|
|
Anope::string reason;
|
|
for (auto idx = reason_idx; idx < params.size(); ++idx)
|
|
reason.append(reason.empty() ? "" : " ").append(params[idx]);
|
|
|
|
auto *si = ci->Extend<CSSuspendInfo>("CS_SUSPENDED");
|
|
si->what = ci->name;
|
|
si->by = source.GetNick();
|
|
si->reason = reason;
|
|
si->when = Anope::CurTime;
|
|
si->expires = expiry_secs ? expiry_secs + Anope::CurTime : 0;
|
|
|
|
if (ci->c)
|
|
{
|
|
std::vector<User *> users;
|
|
|
|
for (const auto &[_, uc] : ci->c->users)
|
|
{
|
|
User *user = uc->user;
|
|
if (!user->HasMode("OPER") && user->server != Me)
|
|
users.push_back(user);
|
|
}
|
|
|
|
for (auto *user : users)
|
|
ci->c->Kick(NULL, user, "%s", !reason.empty() ? reason.c_str() : Language::Translate(user, _("This channel has been suspended.")));
|
|
}
|
|
|
|
Log(LOG_ADMIN, source, this, ci) << "(" << (!reason.empty() ? reason : "No reason") << "), expires on " << (expiry_secs ? Anope::strftime(Anope::CurTime + expiry_secs) : "never");
|
|
source.Reply(_("Channel \002%s\002 is now suspended."), ci->name.c_str());
|
|
|
|
FOREACH_MOD(OnChanSuspend, (ci));
|
|
}
|
|
|
|
bool OnHelp(CommandSource &source, const Anope::string &subcommand) override
|
|
{
|
|
this->SendSyntax(source);
|
|
source.Reply(" ");
|
|
source.Reply(_(
|
|
"Disallows anyone from using the given channel. "
|
|
"May be cancelled by using the \002UNSUSPEND\002 "
|
|
"command to preserve all previous channel data/settings. "
|
|
"If an expiry is given the channel will be unsuspended after "
|
|
"that period of time, else the default expiry from the "
|
|
"configuration is used."
|
|
"\n\n"
|
|
"Reason may be required on certain networks."
|
|
));
|
|
return true;
|
|
}
|
|
};
|
|
|
|
class CommandCSUnSuspend final
|
|
: public Command
|
|
{
|
|
public:
|
|
CommandCSUnSuspend(Module *creator) : Command(creator, "chanserv/unsuspend", 1, 1)
|
|
{
|
|
this->SetDesc(_("Releases a suspended channel"));
|
|
this->SetSyntax(_("\037channel\037"));
|
|
}
|
|
|
|
void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) override
|
|
{
|
|
|
|
if (Anope::ReadOnly)
|
|
source.Reply(READ_ONLY_MODE);
|
|
|
|
ChannelInfo *ci = ChannelInfo::Find(params[0]);
|
|
if (ci == NULL)
|
|
{
|
|
source.Reply(CHAN_X_NOT_REGISTERED, params[0].c_str());
|
|
return;
|
|
}
|
|
|
|
/* Only UNSUSPEND already suspended channels */
|
|
auto *si = ci->GetExt<CSSuspendInfo>("CS_SUSPENDED");
|
|
if (!si)
|
|
{
|
|
source.Reply(_("Channel \002%s\002 isn't suspended."), ci->name.c_str());
|
|
return;
|
|
}
|
|
|
|
Log(LOG_ADMIN, source, this, ci) << "which was suspended by " << si->by << " for: " << (!si->reason.empty() ? si->reason : "No reason");
|
|
|
|
ci->Shrink<CSSuspendInfo>("CS_SUSPENDED");
|
|
|
|
source.Reply(_("Channel \002%s\002 is now released."), ci->name.c_str());
|
|
|
|
FOREACH_MOD(OnChanUnsuspend, (ci));
|
|
}
|
|
|
|
bool OnHelp(CommandSource &source, const Anope::string &subcommand) override
|
|
{
|
|
this->SendSyntax(source);
|
|
source.Reply(" ");
|
|
source.Reply(_(
|
|
"Releases a suspended channel. All data and settings "
|
|
"are preserved from before the suspension."
|
|
));
|
|
return true;
|
|
}
|
|
};
|
|
|
|
class CSSuspend final
|
|
: public Module
|
|
{
|
|
CommandCSSuspend commandcssuspend;
|
|
CommandCSUnSuspend commandcsunsuspend;
|
|
ExtensibleItem<CSSuspendInfo> suspend;
|
|
CSSuspendInfoType suspend_type;
|
|
std::vector<Anope::string> show;
|
|
|
|
struct trim final
|
|
{
|
|
Anope::string operator()(Anope::string s) const
|
|
{
|
|
return s.trim();
|
|
}
|
|
};
|
|
|
|
void Expire(ChannelInfo *ci)
|
|
{
|
|
suspend.Unset(ci);
|
|
Log(this) << "Expiring suspend for " << ci->name;
|
|
}
|
|
|
|
|
|
bool Show(CommandSource &source, const Anope::string &what) const
|
|
{
|
|
return source.IsOper() || std::find(show.begin(), show.end(), what) != show.end();
|
|
}
|
|
|
|
public:
|
|
CSSuspend(const Anope::string &modname, const Anope::string &creator)
|
|
: Module(modname, creator, VENDOR)
|
|
, commandcssuspend(this)
|
|
, commandcsunsuspend(this)
|
|
, suspend(this, "CS_SUSPENDED")
|
|
{
|
|
}
|
|
|
|
void OnReload(Configuration::Conf &conf) override
|
|
{
|
|
auto s = conf.GetModule(this).Get<Anope::string>("show");
|
|
commasepstream(s).GetTokens(show);
|
|
std::transform(show.begin(), show.end(), show.begin(), trim());
|
|
}
|
|
|
|
void OnChanInfo(CommandSource &source, ChannelInfo *ci, InfoFormatter &info, bool show_hidden) override
|
|
{
|
|
CSSuspendInfo *si = suspend.Get(ci);
|
|
if (!si)
|
|
return;
|
|
|
|
if (show_hidden || Show(source, "suspended"))
|
|
info[_("Suspended")] = _("This channel is \002suspended\002.");
|
|
if (!si->by.empty() && (show_hidden || Show(source, "by")))
|
|
info[_("Suspended by")] = si->by;
|
|
if (!si->reason.empty() && (show_hidden || Show(source, "reason")))
|
|
info[_("Suspend reason")] = si->reason;
|
|
if (si->when && (show_hidden || Show(source, "on")))
|
|
info[_("Suspended on")] = Anope::strftime(si->when, source.GetAccount());
|
|
if (si->expires && (show_hidden || Show(source, "expires")))
|
|
info[_("Suspension expires")] = Anope::strftime(si->expires, source.GetAccount());
|
|
}
|
|
|
|
void OnPreChanExpire(ChannelInfo *ci, bool &expire) override
|
|
{
|
|
CSSuspendInfo *si = suspend.Get(ci);
|
|
if (!si)
|
|
return;
|
|
|
|
expire = false;
|
|
|
|
if (!Anope::NoExpire && si->expires && si->expires < Anope::CurTime)
|
|
{
|
|
ci->last_used = Anope::CurTime;
|
|
Expire(ci);
|
|
}
|
|
}
|
|
|
|
EventReturn OnCheckKick(User *u, Channel *c, Anope::string &mask, Anope::string &reason) override
|
|
{
|
|
if (u->HasMode("OPER") || !c->ci)
|
|
return EVENT_CONTINUE;
|
|
|
|
CSSuspendInfo *si = suspend.Get(c->ci);
|
|
if (!si)
|
|
return EVENT_CONTINUE;
|
|
|
|
if (!Anope::NoExpire && si->expires && si->expires < Anope::CurTime)
|
|
{
|
|
Expire(c->ci);
|
|
return EVENT_CONTINUE;
|
|
}
|
|
|
|
reason = Language::Translate(u, _("This channel may not be used."));
|
|
return EVENT_STOP;
|
|
}
|
|
|
|
EventReturn OnChanDrop(CommandSource &source, ChannelInfo *ci) override
|
|
{
|
|
CSSuspendInfo *si = suspend.Get(ci);
|
|
if (si && !source.HasCommand("chanserv/drop"))
|
|
{
|
|
source.Reply(CHAN_X_SUSPENDED, ci->name.c_str());
|
|
return EVENT_STOP;
|
|
}
|
|
|
|
return EVENT_CONTINUE;
|
|
}
|
|
};
|
|
|
|
MODULE_INIT(CSSuspend)
|