mirror of
https://github.com/anope/anope.git
synced 2026-06-28 02:56:37 +02:00
34 lines
1006 B
C++
34 lines
1006 B
C++
/*
|
|
* (C) 2003-2013 Anope Team
|
|
* Contact us at team@anope.org
|
|
*
|
|
* Please read COPYING and README for further details.
|
|
*/
|
|
|
|
#include "../../webcpanel.h"
|
|
|
|
WebCPanel::ChanServ::Info::Info(const Anope::string &cat, const Anope::string &u) : WebPanelProtectedPage(cat, u)
|
|
{
|
|
}
|
|
|
|
bool WebCPanel::ChanServ::Info::OnRequest(HTTPProvider *server, const Anope::string &page_name, HTTPClient *client, HTTPMessage &message, HTTPReply &reply, NickAlias *na, TemplateFileServer::Replacements &replacements)
|
|
{
|
|
std::deque<ChannelInfo *> queue;
|
|
na->nc->GetChannelReferences(queue);
|
|
for (unsigned i = 0; i < queue.size(); ++i)
|
|
{
|
|
ChannelInfo *ci = queue[i];
|
|
|
|
if (ci->AccessFor(na->nc).HasPriv("SET") || ci->AccessFor(na->nc).HasPriv("ACCESS_LIST"))
|
|
{
|
|
replacements["CHANNEL_NAMES"] = ci->name;
|
|
replacements["ESCAPED_CHANNEL_NAMES"] = HTTPUtils::URLEncode(ci->name);
|
|
}
|
|
}
|
|
|
|
TemplateFileServer page("chanserv/main.html");
|
|
page.Serve(server, page_name, client, message, reply, replacements);
|
|
return true;
|
|
}
|
|
|