mirror of
https://github.com/anope/anope.git
synced 2026-06-24 23:26:37 +02:00
249 lines
6.3 KiB
C++
249 lines
6.3 KiB
C++
/* NickServ core functions
|
|
*
|
|
* (C) 2003-2010 Anope Team
|
|
* Contact us at team@anope.org
|
|
*
|
|
* Please read COPYING and README for further details.
|
|
*
|
|
* Based on the original code of Epona by Lara.
|
|
* Based on the original code of Services by Andy Church.
|
|
*/
|
|
|
|
/*************************************************************************/
|
|
|
|
#include "module.h"
|
|
|
|
class CommandNSSASet : public Command
|
|
{
|
|
typedef std::map<Anope::string, Command *, std::less<ci::string> > subcommand_map;
|
|
subcommand_map subcommands;
|
|
|
|
public:
|
|
CommandNSSASet(const Anope::string &cname) : Command(cname, 2, 4)
|
|
{
|
|
}
|
|
|
|
~CommandNSSASet()
|
|
{
|
|
for (subcommand_map::const_iterator it = this->subcommands.begin(), it_end = this->subcommands.end(); it != it_end; ++it)
|
|
delete it->second;
|
|
this->subcommands.clear();
|
|
}
|
|
|
|
CommandReturn Execute(User *u, const std::vector<Anope::string> ¶ms)
|
|
{
|
|
Anope::string nick = params[0];
|
|
Anope::string cmd = params[1];
|
|
|
|
if (readonly)
|
|
{
|
|
notice_lang(Config.s_NickServ, u, NICK_SASET_DISABLED);
|
|
return MOD_CONT;
|
|
}
|
|
|
|
NickAlias *na = findnick(nick);
|
|
if (!na)
|
|
notice_lang(Config.s_NickServ, u, NICK_SASET_BAD_NICK, nick.c_str());
|
|
else if (na->HasFlag(NS_FORBIDDEN))
|
|
notice_lang(Config.s_NickServ, u, NICK_X_FORBIDDEN, na->nick.c_str());
|
|
else if (na->nc->HasFlag(NI_SUSPENDED))
|
|
notice_lang(Config.s_NickServ, u, NICK_X_SUSPENDED, na->nick.c_str());
|
|
else
|
|
{
|
|
Command *c = this->FindCommand(params[1]);
|
|
|
|
if (c)
|
|
{
|
|
Anope::string cmdparams = na->nc->display;
|
|
for (std::vector<Anope::string>::const_iterator it = params.begin() + 1; it != params.end(); ++it)
|
|
cmdparams += " " + *it;
|
|
mod_run_cmd(NickServ, u, c, params[1], cmdparams);
|
|
}
|
|
else
|
|
notice_lang(Config.s_NickServ, u, NICK_SASET_UNKNOWN_OPTION, cmd.c_str());
|
|
}
|
|
|
|
return MOD_CONT;
|
|
}
|
|
|
|
bool OnHelp(User *u, const Anope::string &subcommand)
|
|
{
|
|
if (subcommand.empty())
|
|
{
|
|
notice_help(Config.s_NickServ, u, NICK_HELP_SASET_HEAD);
|
|
for (subcommand_map::iterator it = this->subcommands.begin(), it_end = this->subcommands.end(); it != it_end; ++it)
|
|
it->second->OnServHelp(u);
|
|
notice_help(Config.s_NickServ, u, NICK_HELP_SASET_TAIL);
|
|
return true;
|
|
}
|
|
else
|
|
{
|
|
Command *c = this->FindCommand(subcommand);
|
|
|
|
if (c)
|
|
return c->OnHelp(u, subcommand);
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
void OnSyntaxError(User *u, const Anope::string &subcommand)
|
|
{
|
|
syntax_error(Config.s_NickServ, u, "SASET", NICK_SASET_SYNTAX);
|
|
}
|
|
|
|
void OnServHelp(User *u)
|
|
{
|
|
notice_lang(Config.s_NickServ, u, NICK_HELP_CMD_SASET);
|
|
}
|
|
|
|
bool AddSubcommand(Command *c)
|
|
{
|
|
return this->subcommands.insert(std::make_pair(c->name, c)).second;
|
|
}
|
|
|
|
bool DelSubcommand(const Anope::string &command)
|
|
{
|
|
return this->subcommands.erase(command);
|
|
}
|
|
|
|
Command *FindCommand(const Anope::string &subcommand)
|
|
{
|
|
subcommand_map::const_iterator it = this->subcommands.find(subcommand);
|
|
|
|
if (it != this->subcommands.end())
|
|
return it->second;
|
|
|
|
return NULL;
|
|
}
|
|
};
|
|
|
|
class CommandNSSASetDisplay : public Command
|
|
{
|
|
public:
|
|
CommandNSSASetDisplay(const Anope::string &cname) : Command(cname, 2, 2, "nickserv/saset/display")
|
|
{
|
|
}
|
|
|
|
CommandReturn Execute(User *u, const std::vector<Anope::string> ¶ms)
|
|
{
|
|
NickCore *nc = findcore(params[0]);
|
|
if (!nc)
|
|
throw CoreException("NULL nc in CommandNSSASetDisplay");
|
|
|
|
NickAlias *na = findnick(params[1]);
|
|
if (!na || na->nc != nc)
|
|
{
|
|
notice_lang(Config.s_NickServ, u, NICK_SASET_DISPLAY_INVALID, nc->display.c_str());
|
|
return MOD_CONT;
|
|
}
|
|
|
|
change_core_display(nc, params[1]);
|
|
notice_lang(Config.s_NickServ, u, NICK_SASET_DISPLAY_CHANGED, nc->display.c_str());
|
|
return MOD_CONT;
|
|
}
|
|
|
|
bool OnHelp(User *u, const Anope::string &)
|
|
{
|
|
notice_help(Config.s_NickServ, u, NICK_HELP_SASET_DISPLAY);
|
|
return true;
|
|
}
|
|
|
|
void OnSyntaxError(User *u, const Anope::string &)
|
|
{
|
|
// XXX
|
|
syntax_error(Config.s_NickServ, u, "SASET", NICK_SASET_SYNTAX);
|
|
}
|
|
|
|
void OnServHelp(User *u)
|
|
{
|
|
notice_lang(Config.s_NickServ, u, NICK_HELP_CMD_SASET_DISPLAY);
|
|
}
|
|
};
|
|
|
|
class CommandNSSASetPassword : public Command
|
|
{
|
|
public:
|
|
CommandNSSASetPassword(const Anope::string &cname) : Command(cname, 2, 2, "nickserv/saset/password")
|
|
{
|
|
}
|
|
|
|
CommandReturn Execute(User *u, const std::vector<Anope::string> ¶ms)
|
|
{
|
|
NickCore *nc = findcore(params[0]);
|
|
if (!nc)
|
|
throw CoreException("NULL nc in CommandNSSASetPassword");
|
|
|
|
size_t len = params[1].length();
|
|
|
|
if (Config.NSSecureAdmins && u->Account() != nc && nc->IsServicesOper())
|
|
{
|
|
notice_lang(Config.s_NickServ, u, ACCESS_DENIED);
|
|
return MOD_CONT;
|
|
}
|
|
else if (nc->display.equals_ci(params[1]) || (Config.StrictPasswords && len < 5))
|
|
{
|
|
notice_lang(Config.s_NickServ, u, MORE_OBSCURE_PASSWORD);
|
|
return MOD_CONT;
|
|
}
|
|
else if (len > Config.PassLen)
|
|
{
|
|
notice_lang(Config.s_NickServ, u, PASSWORD_TOO_LONG);
|
|
return MOD_CONT;
|
|
}
|
|
|
|
if (enc_encrypt(params[1], nc->pass))
|
|
{
|
|
Alog() << Config.s_NickServ << ": Failed to encrypt password for " << nc->display << " (saset)";
|
|
notice_lang(Config.s_NickServ, u, NICK_SASET_PASSWORD_FAILED, nc->display.c_str());
|
|
return MOD_CONT;
|
|
}
|
|
|
|
Anope::string tmp_pass;
|
|
if (enc_decrypt(nc->pass, tmp_pass) == 1)
|
|
notice_lang(Config.s_NickServ, u, NICK_SASET_PASSWORD_CHANGED_TO, nc->display.c_str(), tmp_pass.c_str());
|
|
else
|
|
notice_lang(Config.s_NickServ, u, NICK_SASET_PASSWORD_CHANGED, nc->display.c_str());
|
|
|
|
Alog() << Config.s_NickServ << ": " << u->GetMask() << " used SASET PASSWORD on " << nc->display << " (e-mail: "<< (!nc->email.empty() ? nc->email : "none") << ")";
|
|
|
|
if (Config.WallSetpass)
|
|
ircdproto->SendGlobops(NickServ, "\2%s\2 used SASET PASSWORD on \2%s\2", u->nick.c_str(), nc->display.c_str());
|
|
|
|
return MOD_CONT;
|
|
}
|
|
|
|
bool OnHelp(User *u, const Anope::string &)
|
|
{
|
|
notice_help(Config.s_NickServ, u, NICK_HELP_SASET_PASSWORD);
|
|
return true;
|
|
}
|
|
|
|
void OnSyntaxError(User *u, const Anope::string &)
|
|
{
|
|
syntax_error(Config.s_NickServ, u, "SASET", NICK_SASET_SYNTAX);
|
|
}
|
|
|
|
void OnServHelp(User *u)
|
|
{
|
|
notice_lang(Config.s_NickServ, u, NICK_HELP_CMD_SASET_PASSWORD);
|
|
}
|
|
};
|
|
|
|
class NSSASet : public Module
|
|
{
|
|
public:
|
|
NSSASet(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator)
|
|
{
|
|
this->SetAuthor("Anope");
|
|
this->SetType(CORE);
|
|
|
|
Command *c = new CommandNSSASet("SASET");
|
|
this->AddCommand(NickServ, c);
|
|
c->AddSubcommand(new CommandNSSASetDisplay("DISPLAY"));
|
|
c->AddSubcommand(new CommandNSSASetPassword("PASSWORD"));
|
|
}
|
|
};
|
|
|
|
MODULE_INIT(NSSASet)
|