]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_cycle.cpp
Merge insp20
[user/henk/code/inspircd.git] / src / modules / m_cycle.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2007 Dennis Friis <peavey@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 /* $ModDesc: Provides command CYCLE, acts as a server-side HOP command to part and rejoin a channel. */
24
25 /** Handle /CYCLE
26  */
27 class CommandCycle : public SplitCommand
28 {
29  public:
30         CommandCycle(Module* Creator)
31                 : SplitCommand(Creator, "CYCLE", 1)
32         {
33                 Penalty = 3; syntax = "<channel> :[reason]";
34                 TRANSLATE3(TR_TEXT, TR_TEXT, TR_END);
35         }
36
37         CmdResult HandleLocal(const std::vector<std::string> &parameters, LocalUser* user)
38         {
39                 Channel* channel = ServerInstance->FindChan(parameters[0]);
40                 std::string reason = ConvToStr("Cycling");
41
42                 if (parameters.size() > 1)
43                 {
44                         /* reason provided, use it */
45                         reason = reason + ": " + parameters[1];
46                 }
47
48                 if (!channel)
49                 {
50                         user->WriteNumeric(403, "%s %s :No such channel", user->nick.c_str(), parameters[0].c_str());
51                         return CMD_FAILURE;
52                 }
53
54                 if (channel->HasUser(user))
55                 {
56                         /*
57                          * technically, this is only ever sent locally, but pays to be safe ;p
58                          */
59                         if (IS_LOCAL(user))
60                         {
61                                 if (channel->GetPrefixValue(user) < VOICE_VALUE && channel->IsBanned(user))
62                                 {
63                                         /* banned, boned. drop the message. */
64                                         user->WriteNotice("*** You may not cycle, as you are banned on channel " + channel->name);
65                                         return CMD_FAILURE;
66                                 }
67
68                                 channel->PartUser(user, reason);
69                                 Channel::JoinUser(user, parameters[0], true);
70                         }
71
72                         return CMD_SUCCESS;
73                 }
74                 else
75                 {
76                         user->WriteNumeric(442, "%s %s :You're not on that channel", user->nick.c_str(), channel->name.c_str());
77                 }
78
79                 return CMD_FAILURE;
80         }
81 };
82
83
84 class ModuleCycle : public Module
85 {
86         CommandCycle cmd;
87
88  public:
89         ModuleCycle()
90                 : cmd(this)
91         {
92         }
93
94         void init() CXX11_OVERRIDE
95         {
96                 ServerInstance->Modules->AddService(cmd);
97         }
98
99         Version GetVersion() CXX11_OVERRIDE
100         {
101                 return Version("Provides command CYCLE, acts as a server-side HOP command to part and rejoin a channel.", VF_VENDOR);
102         }
103 };
104
105 MODULE_INIT(ModuleCycle)