1
0
mirror of https://github.com/anope/anope.git synced 2026-07-09 23:23:13 +02:00

Added in a subcommand system and switched ns_set and ns_saset to use it

This commit is contained in:
Adam
2010-06-03 23:09:22 -04:00
committed by Adam
parent 6cd8849466
commit e6447fa2c4
44 changed files with 2688 additions and 1219 deletions
+137
View File
@@ -0,0 +1,137 @@
/* 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.
*
* $Id$
*
*/
/*************************************************************************/
#include "module.h"
class CommandNSSetPrivate : public Command
{
public:
CommandNSSetPrivate(const ci::string &cname) : Command(cname, 1)
{
}
CommandReturn Execute(User *u, const std::vector<ci::string> &params)
{
if (params[0] == "ON")
{
u->Account()->SetFlag(NI_PRIVATE);
notice_lang(Config.s_NickServ, u, NICK_SET_PRIVATE_ON);
}
else if (params[0] == "OFF")
{
u->Account()->UnsetFlag(NI_PRIVATE);
notice_lang(Config.s_NickServ, u, NICK_SET_PRIVATE_OFF);
}
else
this->OnSyntaxError(u, "PRIVATE");
return MOD_CONT;
}
bool OnHelp(User *u, const ci::string &)
{
notice_help(Config.s_NickServ, u, NICK_HELP_SET_PRIVATE);
return true;
}
void OnSyntaxError(User *u, const ci::string &)
{
syntax_error(Config.s_NickServ, u, "SET PRIVATE", NICK_SET_PRIVATE_SYNTAX);
}
void OnServHelp(User *u)
{
notice_help(Config.s_NickServ, u, NICK_HELP_CMD_SET_PRIVATE);
}
};
class CommandNSSASetPrivate : public Command
{
public:
CommandNSSASetPrivate(const ci::string &cname) : Command(cname, 2, 2, "nickserv/saset/private")
{
}
CommandReturn Execute(User *u, const std::vector<ci::string> &params)
{
NickCore *nc = findcore(params[0]);
assert(nc);
ci::string param = params[1];
if (param == "ON")
{
nc->SetFlag(NI_PRIVATE);
notice_lang(Config.s_NickServ, u, NICK_SASET_PRIVATE_ON, nc->display);
}
else if (param == "OFF")
{
nc->UnsetFlag(NI_PRIVATE);
notice_lang(Config.s_NickServ, u, NICK_SASET_PRIVATE_OFF, nc->display);
}
else
this->OnSyntaxError(u, "PRIVATE");
return MOD_CONT;
}
bool OnHelp(User *u, const ci::string &)
{
notice_help(Config.s_NickServ, u, NICK_HELP_SASET_PRIVATE);
return true;
}
void OnSyntaxError(User *u, const ci::string &)
{
syntax_error(Config.s_NickServ, u, "SASET PRIVATE", NICK_SASET_PRIVATE_SYNTAX);
}
void OnServHelp(User *u)
{
notice_help(Config.s_NickServ, u, NICK_HELP_CMD_SASET_PRIVATE);
}
};
class NSSetPrivate : public Module
{
public:
NSSetPrivate(const std::string &modname, const std::string &creator) : Module(modname, creator)
{
this->SetAuthor("Anope");
this->SetVersion("$Id$");
this->SetType(CORE);
Command *c = FindCommand(NickServ, "SET");
if (c)
c->AddSubcommand(new CommandNSSetPrivate("PRIVATE"));
c = FindCommand(NickServ, "SASET");
if (c)
c->AddSubcommand(new CommandNSSASetPrivate("PRIVATE"));
}
~NSSetPrivate()
{
Command *c = FindCommand(NickServ, "SET");
if (c)
c->DelSubcommand("PRIVATE");
c = FindCommand(NickServ, "SASET");
if (c)
c->DelSubcommand("PRIVATE");
}
};
MODULE_INIT(NSSetPrivate)