]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/cmd_nick.cpp
Add a metric assload of TRANSLATE macros to modules.
[user/henk/code/inspircd.git] / src / cmd_nick.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "inspircd.h"
15 #include "xline.h"
16 #include "commands/cmd_nick.h"
17
18 extern "C" DllExport command_t* init_command(InspIRCd* Instance)
19 {
20         return new cmd_nick(Instance);
21 }
22
23 /** Handle nick changes from users.
24  * NOTE: If you are used to ircds based on ircd2.8, and are looking
25  * for the client introduction code in here, youre in the wrong place.
26  * You need to look in the spanningtree module for this!
27  */
28 CmdResult cmd_nick::Handle (const char** parameters, int pcnt, userrec *user)
29 {
30         char oldnick[NICKMAX];
31
32         if (!*parameters[0] || !*user->nick)
33         {
34                 /* We cant put blanks in the parameters, so for this (extremely rare) issue we just put '*' here. */
35                 user->WriteServ("432 %s * :Erroneous Nickname", *user->nick ? user->nick : "*");
36                 return CMD_FAILURE;
37         }
38
39         if (irc::string(user->nick) == irc::string(parameters[0]))
40         {
41                 /* If its exactly the same, even case, dont do anything. */
42                 if (!strcmp(user->nick,parameters[0]))
43                         return CMD_SUCCESS;
44
45                 /* Its a change of case. People insisted that they should be
46                  * able to do silly things like this even though the RFC says
47                  * the nick AAA is the same as the nick aaa.
48                  */
49                 strlcpy(oldnick, user->nick, NICKMAX - 1);
50                 int MOD_RESULT = 0;
51                 FOREACH_RESULT(I_OnUserPreNick,OnUserPreNick(user,parameters[0]));
52                 if (MOD_RESULT)
53                         return CMD_FAILURE;
54                 if (user->registered == REG_ALL)
55                         user->WriteCommon("NICK %s",parameters[0]);
56                 strlcpy(user->nick, parameters[0], NICKMAX - 1);
57                 user->InvalidateCache();
58                 FOREACH_MOD(I_OnUserPostNick,OnUserPostNick(user,oldnick));
59                 return CMD_SUCCESS;
60         }
61         else
62         {
63                 QLine* mq = ServerInstance->XLines->matches_qline(parameters[0]);
64                 if (mq)
65                 {
66                         ServerInstance->SNO->WriteToSnoMask('x', "Q-Lined nickname %s from %s!%s@%s: %s", parameters[0], user->nick, user->ident, user->host, mq->reason);
67                         user->WriteServ("432 %s %s :Invalid nickname: %s",user->nick,parameters[0], mq->reason);
68                         return CMD_FAILURE;
69                 }
70                 /* Check for nickname overruled -
71                  * This happens when one user has connected and sent only NICK, and is essentially
72                  * "camping" upon a nickname. To give the new user connecting a fair chance of having
73                  * the nickname too, we force a nickchange on the older user (Simply the one who was
74                  * here first, no TS checks need to take place here)
75                  */
76                 userrec* InUse = ServerInstance->FindNickOnly(parameters[0]);
77                 ServerInstance->Log(DEBUG,"Nick in use");
78                 if (InUse && (InUse != user) && ((ServerInstance->IsNick(parameters[0]) || allowinvalid)))
79                 {
80                         if (InUse->registered != REG_ALL)
81                         {
82                                 /* change the nick of the older user to its UUID
83                                  */
84                                 InUse->WriteTo(InUse, "NICK %s", InUse->uuid);
85                                 InUse->WriteServ("433 %s %s :Nickname overruled.", InUse->nick, InUse->nick);
86                                 InUse->UpdateNickHash(InUse->uuid);
87                                 strlcpy(InUse->nick, InUse->uuid, NICKMAX - 1);
88                                 InUse->InvalidateCache();
89                                 /* Take away their nickname-sent state forcing them to send a nick again */
90                                 InUse->registered &= ~REG_NICK;
91                         }
92                         else
93                         {
94                                 ServerInstance->Log(DEBUG,"Nick in use and user REG_ALL");
95                                 user->WriteServ("433 %s %s :Nickname is already in use.", user->registered >= REG_NICK ? user->nick : "*", parameters[0]);
96                                 return CMD_FAILURE;
97                         }
98                 }
99         }
100         if (((!ServerInstance->IsNick(parameters[0]))) && (IS_LOCAL(user)))
101         {
102                 if (!allowinvalid)
103                 {
104                         user->WriteServ("432 %s %s :Erroneous Nickname",user->nick,parameters[0]);
105                         return CMD_FAILURE;
106                 }
107         }
108
109         if (user->registered == REG_ALL)
110         {
111                 int MOD_RESULT = 0;
112                 FOREACH_RESULT(I_OnUserPreNick,OnUserPreNick(user,parameters[0]));
113                 if (MOD_RESULT) {
114                         // if a module returns true, the nick change is silently forbidden.
115                         return CMD_FAILURE;
116                 }
117
118                 user->WriteCommon("NICK %s",parameters[0]);
119
120         }
121
122         strlcpy(oldnick, user->nick, NICKMAX - 1);
123
124         /* change the nick of the user in the users_hash */
125         user = user->UpdateNickHash(parameters[0]);
126
127         /* actually change the nick within the record */
128         if (!user) return CMD_FAILURE;
129         if (!*user->nick) return CMD_FAILURE;
130
131         strlcpy(user->nick, parameters[0], NICKMAX - 1);
132
133         user->InvalidateCache();
134
135         /* Update display nicks */
136         for (UCListIter v = user->chans.begin(); v != user->chans.end(); v++)
137         {
138                 CUList* ulist = v->first->GetUsers();
139                 CUList::iterator i = ulist->find(user);
140                 if (i != ulist->end())
141                         i->second = user->nick;
142         }
143
144         if (user->registered < REG_NICKUSER)
145         {
146                 user->registered = (user->registered | REG_NICK);
147
148                 if (ServerInstance->Config->NoUserDns)
149                 {
150                         user->dns_done = true;
151                         ServerInstance->next_call = ServerInstance->Time();
152                 }
153                 else
154                 {
155                         user->StartDNSLookup();
156                         if (user->dns_done)
157                         {
158                                 /* Cached result or instant failure - fall right through if possible */
159                                 ServerInstance->next_call = ServerInstance->Time();
160                         }
161                         else
162                         {
163                                 if (ServerInstance->next_call > ServerInstance->Time() + ServerInstance->Config->dns_timeout)
164                                         ServerInstance->next_call = ServerInstance->Time() + ServerInstance->Config->dns_timeout;
165                         }
166                 }
167         }
168         if (user->registered == REG_NICKUSER)
169         {
170                 /* user is registered now, bit 0 = USER command, bit 1 = sent a NICK command */
171                 int MOD_RESULT = 0;
172                 FOREACH_RESULT(I_OnUserRegister,OnUserRegister(user));
173                 if (MOD_RESULT > 0)
174                         return CMD_FAILURE;
175         }
176         if (user->registered == REG_ALL)
177         {
178                 FOREACH_MOD(I_OnUserPostNick,OnUserPostNick(user,oldnick));
179         }
180
181         return CMD_SUCCESS;
182
183 }
184
185 CmdResult cmd_nick::HandleInternal(const unsigned int id, const std::deque<classbase*> &parameters)
186 {
187         allowinvalid = (id != 0);
188         return CMD_SUCCESS;
189 }
190