]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/cmd_join.cpp
171f90bba3a381b8090ff65726aa492e6cd6282a
[user/henk/code/inspircd.git] / src / cmd_join.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 "commands/cmd_join.h"
16
17 extern "C" DllExport Command* init_command(InspIRCd* Instance)
18 {
19         return new cmd_join(Instance);
20 }
21
22 /** Handle /JOIN
23  */
24 CmdResult cmd_join::Handle (const char** parameters, int pcnt, userrec *user)
25 {
26         if (pcnt > 1)
27         {
28                 if (ServerInstance->Parser->LoopCall(user, this, parameters, pcnt, 0, 1))
29                         return CMD_SUCCESS;
30
31                 if (ServerInstance->IsChannel(parameters[0]))
32                 {
33                         chanrec::JoinUser(ServerInstance, user, parameters[0], false, parameters[1]);
34                         return CMD_SUCCESS;
35                 }
36         }
37         else
38         {
39                 if (ServerInstance->Parser->LoopCall(user, this, parameters, pcnt, 0))
40                         return CMD_SUCCESS;
41
42                 if (ServerInstance->IsChannel(parameters[0]))
43                 {
44                         chanrec::JoinUser(ServerInstance, user, parameters[0], false, "");
45                         return CMD_SUCCESS;
46                 }
47         }
48
49         user->WriteServ("403 %s %s :Invalid channel name",user->nick, parameters[0]);
50         return CMD_FAILURE;
51 }