diff options
Diffstat (limited to 'modules/nickserv/status.cpp')
-rw-r--r-- | modules/nickserv/status.cpp | 96 |
1 files changed, 96 insertions, 0 deletions
diff --git a/modules/nickserv/status.cpp b/modules/nickserv/status.cpp new file mode 100644 index 000000000..9c68f2949 --- /dev/null +++ b/modules/nickserv/status.cpp @@ -0,0 +1,96 @@ +/* + * Anope IRC Services + * + * Copyright (C) 2003-2017 Anope Team <team@anope.org> + * + * This file is part of Anope. Anope is free software; you can + * redistribute it and/or modify it under the terms of the GNU + * General Public License as published by the Free Software + * Foundation, version 2. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, see see <http://www.gnu.org/licenses/>. + */ + +#include "module.h" + +class CommandNSStatus : public Command +{ + public: + CommandNSStatus(Module *creator) : Command(creator, "nickserv/status", 0, 16) + { + this->SetDesc(_("Returns the owner status of the given nickname")); + this->SetSyntax(_("[\037nickname\037]")); + this->AllowUnregistered(true); + } + + void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) override + { + const Anope::string &nick = !params.empty() ? params[0] : source.GetNick(); + const NickServ::Nick *na = NickServ::FindNick(nick); + spacesepstream sep(nick); + Anope::string nickbuf; + +#warning "this is all disabled" + while (sep.GetToken(nickbuf)) + { + #if 0 + User *u2 = User::Find(nickbuf, true); + if (!u2) /* Nick is not online */ + source.Reply("STATUS %s %d %s", nickbuf.c_str(), 0, ""); + else if (u2->IsIdentified() && na && na->GetAccount() == u2->Account()) /* Nick is identified */ + source.Reply("STATUS %s %d %s", nickbuf.c_str(), 3, u2->Account()->GetDisplay().c_str()); + else if (u2->IsRecognized()) /* Nick is recognised, but NOT identified */ + source.Reply("STATUS %s %d %s", nickbuf.c_str(), 2, u2->Account() ? u2->Account()->GetDisplay().c_str() : ""); + else if (!na) /* Nick is online, but NOT a registered */ + source.Reply("STATUS %s %d %s", nickbuf.c_str(), 0, ""); + else + /* Nick is not identified for the nick, but they could be logged into an account, + * so we tell the user about it + */ + source.Reply("STATUS %s %d %s", nickbuf.c_str(), 1, u2->Account() ? u2->Account()->GetDisplay().c_str() : ""); + #endif + } + } + + bool OnHelp(CommandSource &source, const Anope::string &subcommand) override + { + this->SendSyntax(source); + source.Reply(" "); + source.Reply(_("Returns whether the user using the given nickname is\n" + "recognized as the owner of the nickname. The response has\n" + "this format:\n" + " \n" + " \037nickname\037 \037status-code\037 \037account\037\n" + " \n" + "where \037nickname\037 is the nickname sent with the command,\n" + "\037status-code\037 is one of the following, and \037account\037\n" + "is the account they are logged in as.\n" + " \n" + " 0 - no such user online \002or\002 nickname not registered\n" + " 1 - user not recognized as nickname's owner\n" + " 2 - user recognized as owner via access list only\n" + " 3 - user recognized as owner via password identification\n" + " \n" + "If no nickname is given, your status will be returned.")); + return true; + } +}; + +class NSStatus : public Module +{ + CommandNSStatus commandnsstatus; + + public: + NSStatus(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, VENDOR) + , commandnsstatus(this) + { + } +}; + +MODULE_INIT(NSStatus) |