mirror of
https://github.com/anope/anope.git
synced 2026-06-12 19:14:47 +02:00
183 lines
5.2 KiB
C++
183 lines
5.2 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
|
|
|
|
#pragma once
|
|
|
|
#include "module.h"
|
|
#include "modules/httpd.h"
|
|
|
|
#include "static_fileserver.h"
|
|
#include "template_fileserver.h"
|
|
|
|
extern Module *me;
|
|
|
|
extern Anope::string template_base, page_title;
|
|
|
|
struct SubSection final
|
|
{
|
|
Anope::string name;
|
|
Anope::string url;
|
|
};
|
|
|
|
struct Section
|
|
{
|
|
Anope::string name;
|
|
std::vector<SubSection> subsections;
|
|
};
|
|
|
|
/* An interface for this webpanel used by other modules */
|
|
class Panel final
|
|
: public Section
|
|
, public Service
|
|
{
|
|
public:
|
|
Panel(Module *c, const Anope::string &n) : Service(c, "Panel", n) { }
|
|
|
|
std::vector<Section> sections;
|
|
|
|
NickAlias *GetNickFromSession(HTTP::Client *client, HTTP::Message &msg)
|
|
{
|
|
if (!client)
|
|
return NULL;
|
|
|
|
const Anope::string &acc = msg.cookies["account"], &id = msg.cookies["id"];
|
|
|
|
if (acc.empty() || id.empty())
|
|
return NULL;
|
|
|
|
NickAlias *na = NickAlias::Find(acc);
|
|
if (na == NULL)
|
|
return NULL;
|
|
|
|
Anope::string *n_id = na->GetExt<Anope::string>("webcpanel_id"), *n_ip = na->GetExt<Anope::string>("webcpanel_ip");
|
|
if (n_id == NULL || n_ip == NULL)
|
|
return NULL;
|
|
else if (id != *n_id)
|
|
return NULL;
|
|
else if (client->GetIP() != *n_ip)
|
|
return NULL;
|
|
else
|
|
return na;
|
|
}
|
|
};
|
|
|
|
class WebPanelPage
|
|
: public HTTP::Page
|
|
{
|
|
public:
|
|
WebPanelPage(const Anope::string &u, const Anope::string &ct = "text/html") : HTTP::Page(u, ct)
|
|
{
|
|
}
|
|
|
|
virtual bool OnRequest(HTTP::Provider *, const Anope::string &, HTTP::Client *, HTTP::Message &, HTTP::Reply &) = 0;
|
|
};
|
|
|
|
class WebPanelProtectedPage
|
|
: public WebPanelPage
|
|
{
|
|
Anope::string category;
|
|
|
|
public:
|
|
WebPanelProtectedPage(const Anope::string &cat, const Anope::string &u, const Anope::string &ct = "text/html") : WebPanelPage(u, ct), category(cat)
|
|
{
|
|
}
|
|
|
|
bool OnRequest(HTTP::Provider *provider, const Anope::string &page_name, HTTP::Client *client, HTTP::Message &message, HTTP::Reply &reply) override final
|
|
{
|
|
ServiceReference<Panel> panel("Panel", "webcpanel");
|
|
NickAlias *na;
|
|
|
|
if (!panel || !(na = panel->GetNickFromSession(client, message)))
|
|
{
|
|
reply.error = HTTP::FOUND;
|
|
reply.headers["Location"] = Anope::string("http") + (provider->IsSSL() ? "s" : "") + "://" + message.headers["Host"] + "/";
|
|
return true; // Access denied
|
|
}
|
|
|
|
TemplateFileServer::Replacements replacements;
|
|
|
|
replacements["TITLE"] = page_title;
|
|
replacements["ACCOUNT"] = na->nc->display;
|
|
replacements["PAGE_NAME"] = page_name;
|
|
replacements["CATEGORY"] = category;
|
|
if (na->nc->IsServicesOper())
|
|
replacements["IS_OPER"];
|
|
|
|
Anope::string sections, get;
|
|
|
|
for (const auto &[key, value] : message.get_data)
|
|
{
|
|
if (this->GetData().count(key) > 0)
|
|
get += "&" + key + "=" + HTTP::URLEncode(value);
|
|
}
|
|
if (get.empty() == false)
|
|
get = "?" + get.substr(1);
|
|
|
|
Section *ns = NULL;
|
|
for (auto &s : panel->sections)
|
|
{
|
|
if (s.name == this->category)
|
|
ns = &s;
|
|
replacements["CATEGORY_URLS"] = s.subsections[0].url;
|
|
replacements["CATEGORY_NAMES"] = s.name;
|
|
}
|
|
|
|
if (ns)
|
|
{
|
|
sections = "";
|
|
for (const auto &ss : ns->subsections)
|
|
{
|
|
replacements["SUBCATEGORY_URLS"] = ss.url;
|
|
replacements["SUBCATEGORY_GETS"] = get;
|
|
replacements["SUBCATEGORY_NAMES"] = ss.name;
|
|
}
|
|
}
|
|
|
|
return this->OnRequest(provider, page_name, client, message, reply, na, replacements);
|
|
}
|
|
|
|
virtual bool OnRequest(HTTP::Provider *, const Anope::string &, HTTP::Client *, HTTP::Message &, HTTP::Reply &, NickAlias *, TemplateFileServer::Replacements &) = 0;
|
|
|
|
/* What get data should be appended to links in the navbar */
|
|
virtual std::set<Anope::string> GetData() { return std::set<Anope::string>(); }
|
|
};
|
|
|
|
namespace WebPanel
|
|
{
|
|
/** Run a command
|
|
* @param client HTTP client command is being issued for
|
|
* @param User name to run command as, probably nc->display unless nc == NULL
|
|
* @param nc Nick core to run command from
|
|
* @param service Service for source.owner and source.service
|
|
* @param c Command to run (as a service name)
|
|
* @param params Command parameters
|
|
* @param r Replacements, reply from command goes back here into key
|
|
* @param key The key to put the replies into r
|
|
*/
|
|
extern void RunCommand(HTTP::Client *client, const Anope::string &user, NickCore *nc, const Anope::string &service, const Anope::string &c, std::vector<Anope::string> ¶ms, TemplateFileServer::Replacements &r, const Anope::string &key = "MESSAGES");
|
|
|
|
extern void RunCommandWithName(HTTP::Client *client, NickCore *nc, const Anope::string &service, const Anope::string &c, const Anope::string &cmdname, std::vector<Anope::string> ¶ms, TemplateFileServer::Replacements &r, const Anope::string &key = "MESSAGES");
|
|
}
|
|
|
|
#include "pages/index.h"
|
|
#include "pages/logout.h"
|
|
#include "pages/register.h"
|
|
#include "pages/confirm.h"
|
|
|
|
#include "pages/chanserv/chanserv.h"
|
|
#include "pages/hostserv/hostserv.h"
|
|
#include "pages/memoserv/memoserv.h"
|
|
#include "pages/nickserv/nickserv.h"
|
|
#include "pages/operserv/operserv.h"
|