mirror of
https://github.com/anope/anope.git
synced 2026-06-24 21:46:37 +02:00
86 lines
2.1 KiB
C++
86 lines
2.1 KiB
C++
/* OperServ 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 CommandOSOLine : public Command
|
|
{
|
|
public:
|
|
CommandOSOLine() : Command("OLINE", 2, 2, "operserv/oline")
|
|
{
|
|
}
|
|
|
|
CommandReturn Execute(User *u, const std::vector<Anope::string> ¶ms)
|
|
{
|
|
Anope::string nick = params[0];
|
|
Anope::string flag = params[1];
|
|
User *u2 = NULL;
|
|
|
|
/* let's check whether the user is online */
|
|
if (!(u2 = finduser(nick)))
|
|
u->SendMessage(OperServ, NICK_X_NOT_IN_USE, nick.c_str());
|
|
else if (u2 && flag[0] == '+')
|
|
{
|
|
ircdproto->SendSVSO(Config->s_OperServ, nick, flag);
|
|
u2->SetMode(OperServ, UMODE_OPER);
|
|
u2->SendMessage(OperServ, OPER_OLINE_IRCOP);
|
|
u->SendMessage(OperServ, OPER_OLINE_SUCCESS, flag.c_str(), nick.c_str());
|
|
ircdproto->SendGlobops(OperServ, "\2%s\2 used OLINE for %s", u->nick.c_str(), nick.c_str());
|
|
}
|
|
else if (u2 && flag[0] == '-')
|
|
{
|
|
ircdproto->SendSVSO(Config->s_OperServ, nick, flag);
|
|
u->SendMessage(OperServ, OPER_OLINE_SUCCESS, flag.c_str(), nick.c_str());
|
|
ircdproto->SendGlobops(OperServ, "\2%s\2 used OLINE for %s", u->nick.c_str(), nick.c_str());
|
|
}
|
|
else
|
|
this->OnSyntaxError(u, "");
|
|
return MOD_CONT;
|
|
}
|
|
|
|
bool OnHelp(User *u, const Anope::string &subcommand)
|
|
{
|
|
u->SendMessage(OperServ, OPER_HELP_OLINE);
|
|
return true;
|
|
}
|
|
|
|
void OnSyntaxError(User *u, const Anope::string &subcommand)
|
|
{
|
|
SyntaxError(OperServ, u, "OLINE", OPER_OLINE_SYNTAX);
|
|
}
|
|
|
|
void OnServHelp(User *u)
|
|
{
|
|
u->SendMessage(OperServ, OPER_HELP_CMD_OLINE);
|
|
}
|
|
};
|
|
|
|
class OSOLine : public Module
|
|
{
|
|
CommandOSOLine commandosoline;
|
|
|
|
public:
|
|
OSOLine(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator)
|
|
{
|
|
if (!ircd->omode)
|
|
throw ModuleException("Your IRCd does not support OMODE.");
|
|
|
|
this->SetAuthor("Anope");
|
|
this->SetType(CORE);
|
|
|
|
this->AddCommand(OperServ, &commandosoline);
|
|
}
|
|
};
|
|
|
|
MODULE_INIT(OSOLine)
|