]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/coremods/core_channel/cmd_join.cpp
1e6e515bab75c1c12da7c2cc87c0d7cc6562a2f4
[user/henk/code/inspircd.git] / src / coremods / core_channel / cmd_join.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
6  *
7  * This file is part of InspIRCd.  InspIRCd is free software: you can
8  * redistribute it and/or modify it under the terms of the GNU General Public
9  * License as published by the Free Software Foundation, version 2.
10  *
11  * This program is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
14  * details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20
21 #include "inspircd.h"
22
23 /** Handle /JOIN.
24  */
25 class CommandJoin : public SplitCommand
26 {
27  public:
28         /** Constructor for join.
29          */
30         CommandJoin(Module* parent)
31                 : SplitCommand(parent, "JOIN", 1, 2)
32         {
33                 syntax = "<channel>{,<channel>} {<key>{,<key>}}";
34                 Penalty = 2;
35         }
36
37         /** Handle command.
38          * @param parameters The parameters to the command
39          * @param user The user issuing the command
40          * @return A value from CmdResult to indicate command success or failure.
41          */
42         CmdResult HandleLocal(const std::vector<std::string>& parameters, LocalUser* user);
43 };
44
45 /** Handle /JOIN
46  */
47 CmdResult CommandJoin::HandleLocal(const std::vector<std::string>& parameters, LocalUser *user)
48 {
49         if (parameters.size() > 1)
50         {
51                 if (CommandParser::LoopCall(user, this, parameters, 0, 1, false))
52                         return CMD_SUCCESS;
53
54                 if (ServerInstance->IsChannel(parameters[0]))
55                 {
56                         Channel::JoinUser(user, parameters[0], false, parameters[1]);
57                         return CMD_SUCCESS;
58                 }
59         }
60         else
61         {
62                 if (CommandParser::LoopCall(user, this, parameters, 0, -1, false))
63                         return CMD_SUCCESS;
64
65                 if (ServerInstance->IsChannel(parameters[0]))
66                 {
67                         Channel::JoinUser(user, parameters[0]);
68                         return CMD_SUCCESS;
69                 }
70         }
71
72         user->WriteNumeric(ERR_NOSUCHCHANNEL, "%s :Invalid channel name", parameters[0].c_str());
73         return CMD_FAILURE;
74 }
75
76 COMMAND_INIT(CommandJoin)