mirror of
https://github.com/anope/anope.git
synced 2026-06-12 17:04:47 +02:00
50 lines
1.8 KiB
C++
50 lines
1.8 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 "../../webcpanel.h"
|
|
#include "modules/nickserv/cert.h"
|
|
|
|
WebCPanel::NickServ::Cert::Cert(const Anope::string &cat, const Anope::string &u) : WebPanelProtectedPage(cat, u)
|
|
{
|
|
}
|
|
|
|
bool WebCPanel::NickServ::Cert::OnRequest(HTTP::Provider *server, const Anope::string &page_name, HTTP::Client *client, HTTP::Message &message, HTTP::Reply &reply, NickAlias *na, TemplateFileServer::Replacements &replacements)
|
|
{
|
|
if (message.post_data.count("certfp") > 0)
|
|
{
|
|
std::vector<Anope::string> params;
|
|
params.emplace_back("ADD");
|
|
params.push_back(message.post_data["certfp"]);
|
|
|
|
WebPanel::RunCommand(client, na->nc->display, na->nc, "NickServ", "nickserv/cert", params, replacements);
|
|
}
|
|
else if (message.get_data.count("del") > 0 && message.get_data.count("mask") > 0)
|
|
{
|
|
std::vector<Anope::string> params;
|
|
params.emplace_back("DEL");
|
|
params.push_back(message.get_data["mask"]);
|
|
|
|
WebPanel::RunCommand(client, na->nc->display, na->nc, "NickServ", "nickserv/cert", params, replacements);
|
|
}
|
|
|
|
auto *cl = na->nc->GetExt<::NickServ::CertList>(NICKSERV_CERT_EXT);
|
|
if (cl)
|
|
for (unsigned i = 0; i < cl->GetCertCount(); ++i)
|
|
replacements["CERTS"] = cl->GetCert(i)->fingerprint;
|
|
|
|
TemplateFileServer page("nickserv/cert.html");
|
|
page.Serve(server, page_name, client, message, reply, replacements);
|
|
return true;
|
|
}
|