mirror of
git://git.acid.vegas/anope.git
synced 2024-11-15 04:06:42 +00:00
118 lines
3.7 KiB
C++
118 lines
3.7 KiB
C++
/*
|
|
* (C) 2003-2022 Anope Team
|
|
* Contact us at team@anope.org
|
|
*
|
|
* Please read COPYING and README for further details.
|
|
*/
|
|
|
|
#include "../../webcpanel.h"
|
|
|
|
WebCPanel::NickServ::Info::Info(const Anope::string &cat, const Anope::string &u) : WebPanelProtectedPage(cat, u)
|
|
{
|
|
}
|
|
|
|
bool WebCPanel::NickServ::Info::OnRequest(HTTPProvider *server, const Anope::string &page_name, HTTPClient *client, HTTPMessage &message, HTTPReply &reply, NickAlias *na, TemplateFileServer::Replacements &replacements)
|
|
{
|
|
if (message.post_data.empty() == false)
|
|
{
|
|
if (message.post_data.count("email") > 0)
|
|
{
|
|
if (message.post_data["email"] != na->nc->email)
|
|
{
|
|
if (!message.post_data["email"].empty() && !Mail::Validate(message.post_data["email"]))
|
|
replacements["ERRORS"] = "Invalid email";
|
|
else
|
|
{
|
|
na->nc->email = message.post_data["email"];
|
|
replacements["MESSAGES"] = "Email updated";
|
|
}
|
|
}
|
|
}
|
|
if (message.post_data.count("greet") > 0)
|
|
{
|
|
Anope::string *greet = na->nc->GetExt<Anope::string>("greet");
|
|
const Anope::string &post_greet = HTTPUtils::URLDecode(message.post_data["greet"].replace_all_cs("+", " "));
|
|
|
|
if (post_greet.empty())
|
|
na->nc->Shrink<Anope::string>("greet");
|
|
else if (!greet || post_greet != *greet)
|
|
na->nc->Extend<Anope::string>("greet", post_greet);
|
|
|
|
replacements["MESSAGES"] = "Greet updated";
|
|
}
|
|
if (na->nc->HasExt("AUTOOP") != message.post_data.count("autoop"))
|
|
{
|
|
if (!na->nc->HasExt("AUTOOP"))
|
|
na->nc->Extend<bool>("AUTOOP");
|
|
else
|
|
na->nc->Shrink<bool>("AUTOOP");
|
|
replacements["MESSAGES"] = "Autoop updated";
|
|
}
|
|
if (na->nc->HasExt("NS_PRIVATE") != message.post_data.count("private"))
|
|
{
|
|
if (!na->nc->HasExt("NS_PRIVATE"))
|
|
na->nc->Extend<bool>("NS_PRIVATE");
|
|
else
|
|
na->nc->Shrink<bool>("NS_PRIVATE");
|
|
replacements["MESSAGES"] = "Private updated";
|
|
}
|
|
if (na->nc->HasExt("NS_SECURE") != message.post_data.count("secure"))
|
|
{
|
|
if (!na->nc->HasExt("NS_SECURE"))
|
|
na->nc->Extend<bool>("NS_SECURE");
|
|
else
|
|
na->nc->Shrink<bool>("NS_SECURE");
|
|
replacements["MESSAGES"] = "Secure updated";
|
|
}
|
|
if (message.post_data["kill"] == "on" && !na->nc->HasExt("KILLPROTECT"))
|
|
{
|
|
na->nc->Extend<bool>("KILLPROTECT");
|
|
na->nc->Shrink<bool>("KILL_QUICK");
|
|
replacements["MESSAGES"] = "Kill updated";
|
|
}
|
|
else if (message.post_data["kill"] == "quick" && !na->nc->HasExt("KILL_QUICK"))
|
|
{
|
|
na->nc->Extend<bool>("KILLPROTECT");
|
|
na->nc->Extend<bool>("KILL_QUICK");
|
|
replacements["MESSAGES"] = "Kill updated";
|
|
}
|
|
else if (message.post_data["kill"] == "off" && (na->nc->HasExt("KILLPROTECT") || na->nc->HasExt("KILL_QUICK")))
|
|
{
|
|
na->nc->Shrink<bool>("KILLPROTECT");
|
|
na->nc->Shrink<bool>("KILL_QUICK");
|
|
replacements["MESSAGES"] = "Kill updated";
|
|
}
|
|
}
|
|
|
|
replacements["DISPLAY"] = na->nc->display;
|
|
if (na->nc->email.empty() == false)
|
|
replacements["EMAIL"] = na->nc->email;
|
|
replacements["TIME_REGISTERED"] = Anope::strftime(na->time_registered, na->nc);
|
|
if (na->HasVhost())
|
|
{
|
|
if (na->GetVhostIdent().empty() == false)
|
|
replacements["VHOST"] = na->GetVhostIdent() + "@" + na->GetVhostHost();
|
|
else
|
|
replacements["VHOST"] = na->GetVhostHost();
|
|
}
|
|
Anope::string *greet = na->nc->GetExt<Anope::string>("greet");
|
|
if (greet)
|
|
replacements["GREET"] = *greet;
|
|
if (na->nc->HasExt("AUTOOP"))
|
|
replacements["AUTOOP"];
|
|
if (na->nc->HasExt("NS_PRIVATE"))
|
|
replacements["PRIVATE"];
|
|
if (na->nc->HasExt("NS_SECURE"))
|
|
replacements["SECURE"];
|
|
if (na->nc->HasExt("KILLPROTECT"))
|
|
replacements["KILL_ON"];
|
|
if (na->nc->HasExt("KILL_QUICK"))
|
|
replacements["KILL_QUICK"];
|
|
if (!na->nc->HasExt("KILLPROTECT") && !na->nc->HasExt("KILL_QUICK"))
|
|
replacements["KILL_OFF"];
|
|
|
|
TemplateFileServer page("nickserv/info.html");
|
|
page.Serve(server, page_name, client, message, reply, replacements);
|
|
return true;
|
|
}
|