mirror of
https://github.com/anope/anope.git
synced 2026-06-24 22:26:37 +02:00
134 lines
4.3 KiB
C++
134 lines
4.3 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::Access::Access(const Anope::string &cat, const Anope::string &u) : WebPanelProtectedPage(cat, u)
|
|
{
|
|
}
|
|
|
|
bool WebCPanel::ChanServ::Access::OnRequest(HTTP::Provider *server, const Anope::string &page_name, HTTP::Client *client, HTTP::Message &message, HTTP::Reply &reply, NickAlias *na, TemplateFileServer::Replacements &replacements)
|
|
{
|
|
TemplateFileServer Page("chanserv/access.html");
|
|
const Anope::string &chname = message.get_data["channel"];
|
|
|
|
BuildChanList(na, replacements);
|
|
|
|
if (chname.empty())
|
|
{
|
|
Page.Serve(server, page_name, client, message, reply, replacements);
|
|
return true;
|
|
}
|
|
|
|
ChannelInfo *ci = ChannelInfo::Find(chname);
|
|
|
|
if (!ci)
|
|
{
|
|
replacements["MESSAGES"] = "Channel not registered.";
|
|
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/access/modify");
|
|
|
|
if (!u_access.HasPriv("ACCESS_LIST") && !has_priv)
|
|
{
|
|
replacements["MESSAGES"] = "Access denied.";
|
|
Page.Serve(server, page_name, client, message, reply, replacements);
|
|
return true;
|
|
}
|
|
|
|
replacements["ACCESS_LIST"] = "YES";
|
|
|
|
if (u_access.HasPriv("ACCESS_CHANGE") || has_priv)
|
|
{
|
|
if (!message.get_data["del"].empty() && !message.get_data["mask"].empty())
|
|
{
|
|
std::vector<Anope::string> params;
|
|
params.push_back(ci->name);
|
|
params.emplace_back("DEL");
|
|
params.push_back(message.get_data["mask"]);
|
|
|
|
WebPanel::RunCommand(client, na->nc->display, na->nc, "ChanServ", "chanserv/access", params, replacements);
|
|
}
|
|
else if (!message.post_data["mask"].empty() && !message.post_data["access"].empty() && !message.post_data["provider"].empty())
|
|
{
|
|
const Anope::string &provider = message.post_data["provider"];
|
|
|
|
if (provider == "chanserv/access")
|
|
{
|
|
std::vector<Anope::string> params;
|
|
params.push_back(ci->name);
|
|
params.emplace_back("ADD");
|
|
params.push_back(message.post_data["mask"]);
|
|
params.push_back(message.post_data["access"]);
|
|
|
|
WebPanel::RunCommand(client, na->nc->display, na->nc, "ChanServ", "chanserv/access", params, replacements);
|
|
}
|
|
else if (provider == "chanserv/xop")
|
|
{
|
|
std::vector<Anope::string> params;
|
|
params.push_back(ci->name);
|
|
params.emplace_back("ADD");
|
|
params.push_back(message.post_data["mask"]);
|
|
|
|
WebPanel::RunCommandWithName(client, na->nc, "ChanServ", "chanserv/xop", message.post_data["access"], params, replacements);
|
|
}
|
|
else if (provider == "chanserv/flags")
|
|
{
|
|
std::vector<Anope::string> params;
|
|
params.push_back(ci->name);
|
|
params.emplace_back("MODIFY");
|
|
params.push_back(message.post_data["mask"]);
|
|
params.push_back(message.post_data["access"]);
|
|
|
|
WebPanel::RunCommand(client, na->nc->display, na->nc, "ChanServ", "chanserv/flags", params, replacements);
|
|
}
|
|
}
|
|
}
|
|
|
|
/* command might have invalidated u_access */
|
|
u_access = ci->AccessFor(na->nc);
|
|
|
|
replacements["ESCAPED_CHANNEL"] = HTTP::URLEncode(chname);
|
|
replacements["ACCESS_CHANGE"] = u_access.HasPriv("ACCESS_CHANGE") ? "YES" : "NO";
|
|
|
|
for (unsigned i = 0; i < ci->GetAccessCount(); ++i)
|
|
{
|
|
ChanAccess *access = ci->GetAccess(i);
|
|
|
|
replacements["MASKS"] = access->Mask();
|
|
replacements["ACCESSES"] = access->AccessSerialize();
|
|
replacements["CREATORS"] = access->creator;
|
|
}
|
|
|
|
if (Service::FindService("Command", "chanserv/access"))
|
|
replacements["PROVIDERS"] = "chanserv/access";
|
|
if (Service::FindService("Command", "chanserv/xop"))
|
|
replacements["PROVIDERS"] = "chanserv/xop";
|
|
if (Service::FindService("Command", "chanserv/flags"))
|
|
replacements["PROVIDERS"] = "chanserv/flags";
|
|
|
|
Page.Serve(server, page_name, client, message, reply, replacements);
|
|
return true;
|
|
}
|
|
|
|
std::set<Anope::string> WebCPanel::ChanServ::Access::GetData()
|
|
{
|
|
std::set<Anope::string> v;
|
|
v.insert("channel");
|
|
return v;
|
|
}
|