mirror of
https://github.com/anope/anope.git
synced 2026-06-29 18:16:38 +02:00
969aacbf78
find include/ src/ lang/ docs/ *.* Config -exec sed -i 's/-20.. Anope Team/-2014 Anope Team/i' {} \;
138 lines
3.7 KiB
C
138 lines
3.7 KiB
C
/* NickServ core functions
|
|
*
|
|
* (C) 2003-2014 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"
|
|
|
|
#define TO_COLLIDE 0 /* Collide the user with this nick */
|
|
#define TO_RELEASE 1 /* Release a collided nick */
|
|
|
|
static int do_logout(User * u);
|
|
static void myNickServHelp(User * u);
|
|
|
|
/**
|
|
* Create the command, and tell anope about it.
|
|
* @param argc Argument count
|
|
* @param argv Argument list
|
|
* @return MOD_CONT to allow the module, MOD_STOP to stop it
|
|
**/
|
|
int AnopeInit(int argc, char **argv)
|
|
{
|
|
Command *c;
|
|
|
|
moduleAddAuthor("Anope");
|
|
moduleAddVersion(VERSION_STRING);
|
|
moduleSetType(CORE);
|
|
|
|
c = createCommand("LOGOUT", do_logout, NULL, -1, NICK_HELP_LOGOUT, -1,
|
|
NICK_SERVADMIN_HELP_LOGOUT,
|
|
NICK_SERVADMIN_HELP_LOGOUT);
|
|
moduleAddCommand(NICKSERV, c, MOD_UNIQUE);
|
|
|
|
moduleSetNickHelp(myNickServHelp);
|
|
|
|
return MOD_CONT;
|
|
}
|
|
|
|
/**
|
|
* Unload the module
|
|
**/
|
|
void AnopeFini(void)
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* Add the help response to anopes /ns help output.
|
|
* @param u The user who is requesting help
|
|
**/
|
|
static void myNickServHelp(User * u)
|
|
{
|
|
notice_lang(s_NickServ, u, NICK_HELP_CMD_LOGOUT);
|
|
}
|
|
|
|
/**
|
|
* The /ns logout command.
|
|
* @param u The user who issued the command
|
|
* @param MOD_CONT to continue processing other modules, MOD_STOP to stop processing.
|
|
**/
|
|
static int do_logout(User * u)
|
|
{
|
|
char *nick = strtok(NULL, " ");
|
|
char *param = strtok(NULL, " ");
|
|
struct u_chaninfolist *ci, *ci2;
|
|
User *u2;
|
|
|
|
if (!is_services_admin(u) && nick) {
|
|
syntax_error(s_NickServ, u, "LOGOUT", NICK_LOGOUT_SYNTAX);
|
|
} else if (!(u2 = (nick ? finduser(nick) : u))) {
|
|
notice_lang(s_NickServ, u, NICK_X_NOT_IN_USE, nick);
|
|
} else if (!u2->na) {
|
|
if (nick)
|
|
notice_lang(s_NickServ, u, NICK_X_NOT_REGISTERED, nick);
|
|
else
|
|
notice_lang(s_NickServ, u, NICK_NOT_REGISTERED);
|
|
} else if (u2->na->status & NS_VERBOTEN) {
|
|
notice_lang(s_NickServ, u, NICK_X_FORBIDDEN, u2->na->nick);
|
|
} else if (!nick && !nick_identified(u)) {
|
|
notice_lang(s_NickServ, u, NICK_IDENTIFY_REQUIRED, s_NickServ);
|
|
} else if (nick && is_services_admin(u2)) {
|
|
notice_lang(s_NickServ, u, NICK_LOGOUT_SERVICESADMIN, nick);
|
|
} else {
|
|
if (nick && param && !stricmp(param, "REVALIDATE")) {
|
|
cancel_user(u2);
|
|
validate_user(u2);
|
|
} else {
|
|
u2->na->status &= ~(NS_IDENTIFIED | NS_RECOGNIZED);
|
|
}
|
|
|
|
if (ircd->modeonreg) {
|
|
common_svsmode(u2, ircd->modeonunreg, "1");
|
|
}
|
|
|
|
u2->isSuperAdmin = 0; /* Dont let people logout and remain a SuperAdmin */
|
|
alog("%s: %s!%s@%s logged out nickname %s", s_NickServ, u->nick,
|
|
u->username, u->host, u2->nick);
|
|
|
|
if (nick)
|
|
notice_lang(s_NickServ, u, NICK_LOGOUT_X_SUCCEEDED, nick);
|
|
else
|
|
notice_lang(s_NickServ, u, NICK_LOGOUT_SUCCEEDED);
|
|
|
|
/* remove founderstatus from this user in all channels */
|
|
ci = u2->founder_chans;
|
|
while (ci) {
|
|
ci2 = ci->next;
|
|
free(ci);
|
|
ci = ci2;
|
|
}
|
|
u2->founder_chans = NULL;
|
|
|
|
|
|
/* Stop nick tracking if enabled */
|
|
if (NSNickTracking)
|
|
nsStopNickTracking(u2);
|
|
|
|
/* Clear any timers again */
|
|
if (u2->na->nc->flags & NI_KILLPROTECT) {
|
|
del_ns_timeout(u2->na, TO_COLLIDE);
|
|
}
|
|
|
|
/* Send out an event */
|
|
send_event(EVENT_NICK_LOGOUT, 1, u2->nick);
|
|
}
|
|
return MOD_CONT;
|
|
}
|