mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-07-04 21:03:12 +02:00
23116d344a
aChannel to Channel, and some more. Third party module coders will love this. But.. it makes things more logical and the doxygen output will look more clean and logical as well. (More changes will follow)
117 lines
3.2 KiB
C
117 lines
3.2 KiB
C
/*
|
|
* IRC - Internet Relay Chat, src/modules/m_svsnick.c
|
|
* (C) 2001 The UnrealIRCd Team
|
|
*
|
|
* svsnick command
|
|
*
|
|
* See file AUTHORS in IRC package for additional names of
|
|
* the programmers.
|
|
*
|
|
* This program 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; either version 1, or (at your option)
|
|
* any later version.
|
|
*
|
|
* 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, write to the Free Software
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
|
|
#include "unrealircd.h"
|
|
|
|
CMD_FUNC(m_svsnick);
|
|
|
|
#define MSG_SVSNICK "SVSNICK"
|
|
|
|
ModuleHeader MOD_HEADER(svsnick)
|
|
= {
|
|
"svsnick",
|
|
"5.0",
|
|
"command /svsnick",
|
|
"UnrealIRCd Team",
|
|
"unrealircd-5",
|
|
};
|
|
|
|
MOD_INIT(svsnick)
|
|
{
|
|
CommandAdd(modinfo->handle, MSG_SVSNICK, m_svsnick, MAXPARA, M_SERVER);
|
|
MARK_AS_OFFICIAL_MODULE(modinfo);
|
|
return MOD_SUCCESS;
|
|
}
|
|
|
|
MOD_LOAD(svsnick)
|
|
{
|
|
return MOD_SUCCESS;
|
|
}
|
|
|
|
MOD_UNLOAD(svsnick)
|
|
{
|
|
return MOD_SUCCESS;
|
|
}
|
|
/*
|
|
** m_svsnick
|
|
** parv[1] = old nickname
|
|
** parv[2] = new nickname
|
|
** parv[3] = timestamp
|
|
*/
|
|
CMD_FUNC(m_svsnick)
|
|
{
|
|
Client *acptr;
|
|
Client *ocptr; /* Other client */
|
|
MessageTag *mtags = NULL;
|
|
|
|
if (!IsULine(sptr) || parc < 4 || (strlen(parv[2]) > NICKLEN))
|
|
return -1; /* This looks like an error anyway -Studded */
|
|
|
|
if (hunt_server(cptr, sptr, NULL, ":%s SVSNICK %s %s :%s", 1, parc, parv) != HUNTED_ISME)
|
|
return 0; /* Forwarded, done */
|
|
|
|
if (do_nick_name(parv[2]) == 0)
|
|
return 0;
|
|
|
|
if (!(acptr = find_person(parv[1], NULL)))
|
|
return 0; /* User not found, bail out */
|
|
|
|
if ((ocptr = find_client(parv[2], NULL)) && ocptr != acptr) /* Collision */
|
|
{
|
|
exit_client(acptr, acptr, sptr, NULL,
|
|
"Nickname collision due to Services enforced "
|
|
"nickname change, your nick was overruled");
|
|
return 0;
|
|
}
|
|
|
|
/* if the new nickname is identical to the old one, ignore it */
|
|
if (!strcmp(acptr->name, parv[2]))
|
|
return 0;
|
|
|
|
if (acptr != ocptr)
|
|
acptr->umodes &= ~UMODE_REGNICK;
|
|
acptr->lastnick = atol(parv[3]);
|
|
|
|
/* no 'recv_mtags' here, we do not inherit from SVSNICK but generate a new NICK event */
|
|
new_message(acptr, NULL, &mtags);
|
|
sendto_local_common_channels(acptr, NULL, 0, mtags, ":%s NICK :%s", acptr->name, parv[2]);
|
|
sendto_server(NULL, 0, 0, mtags, ":%s NICK %s :%ld", acptr->name, parv[2], atol(parv[3]));
|
|
free_message_tags(mtags);
|
|
|
|
add_history(acptr, 1);
|
|
del_from_client_hash_table(acptr->name, acptr);
|
|
hash_check_watch(acptr, RPL_LOGOFF);
|
|
|
|
sendto_snomask(SNO_NICKCHANGE,
|
|
"*** %s (%s@%s) has been forced to change their nickname to %s",
|
|
acptr->name, acptr->user->username, acptr->user->realhost, parv[2]);
|
|
RunHook2(HOOKTYPE_LOCAL_NICKCHANGE, acptr, parv[2]);
|
|
|
|
strlcpy(acptr->name, parv[2], sizeof acptr->name);
|
|
add_to_client_hash_table(parv[2], acptr);
|
|
hash_check_watch(acptr, RPL_LOGON);
|
|
|
|
return 0;
|
|
}
|