1
0
mirror of https://github.com/anope/anope.git synced 2026-06-24 22:26:37 +02:00
Files
anope/modules/webcpanel/pages/chanserv/modes.cpp
T
2025-11-12 19:49:59 +00:00

115 lines
3.4 KiB
C++

// Anope IRC Services <https://www.anope.org/>
//
// Copyright (C) 2003-2025 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 "../../webcpanel.h"
WebCPanel::ChanServ::Modes::Modes(const Anope::string &cat, const Anope::string &u) : WebPanelProtectedPage(cat, u)
{
}
bool WebCPanel::ChanServ::Modes::OnRequest(HTTP::Provider *server, const Anope::string &page_name, HTTP::Client *client, HTTP::Message &message, HTTP::Reply &reply, NickAlias *na, TemplateFileServer::Replacements &replacements)
{
const Anope::string &chname = message.get_data["channel"];
const Anope::string &mode = message.get_data["m"];
TemplateFileServer Page("chanserv/modes.html");
BuildChanList(na, replacements);
if (chname.empty())
{
Page.Serve(server, page_name, client, message, reply, replacements);
return true;
}
replacements["ESCAPED_CHANNEL"] = HTTP::URLEncode(chname);
ChannelInfo *ci = ChannelInfo::Find(chname);
if (!ci)
{
Page.Serve(server, page_name, client, message, reply, replacements);
return true;
}
Channel *c = Channel::Find(chname);
if (!c)
{
replacements["MESSAGES"] = Anope::Format(CHAN_X_NOT_IN_USE, chname.c_str());
Page.Serve(server, page_name, client, message, reply, replacements);
return true;
}
AccessGroup u_access = ci->AccessFor(na->nc);
bool has_priv = na->nc->IsServicesOper() && na->nc->o->ot->HasPriv("chanserv/administration");
if (!u_access.HasPriv("MODE") && !has_priv)
{
replacements["MESSAGES"] = "Access denied.";
Page.Serve(server, page_name, client, message, reply, replacements);
return true;
}
replacements["MODE"] = "YES";
/* build a list with the names of all listmodes */
for (auto *cm : ModeManager::GetChannelModes())
{
if (cm->type == MODE_LIST && cm->mchar)
replacements["LISTMODES"] = cm->mchar;
}
if (mode.empty())
{
Page.Serve(server, page_name, client, message, reply, replacements);
return true;
}
replacements["ESCAPED_MODE"] = HTTP::URLEncode(mode);
ChannelMode *cm = ModeManager::FindChannelModeByChar(mode[0]);
if (cm)
{
if (!message.get_data["del"].empty() && !message.get_data["mask"].empty())
{
std::vector<Anope::string> params;
params.push_back(ci->name);
params.emplace_back("SET");
params.push_back("-" + Anope::string(cm->mchar));
params.push_back(message.get_data["mask"]);
WebPanel::RunCommand(client, na->nc->display, na->nc, "ChanServ", "chanserv/mode", params, replacements);
}
else if (!message.post_data["mask"].empty())
{
std::vector<Anope::string> params;
params.push_back(ci->name);
params.emplace_back("SET");
params.push_back("+" + Anope::string(cm->mchar));
params.push_back(message.post_data["mask"]);
WebPanel::RunCommand(client, na->nc->display, na->nc, "ChanServ", "chanserv/mode", params, replacements);
}
for (const auto &mask : c->GetModeList(cm->name))
replacements["MASKS"] = mask;
}
Page.Serve(server, page_name, client, message, reply, replacements);
return true;
}
std::set<Anope::string> WebCPanel::ChanServ::Modes::GetData()
{
std::set<Anope::string> v;
v.insert("channel");
return v;
}