]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/coremods/core_channel/cmd_topic.cpp
2b0f81fb68077dea2d084809373f90cd75ca0404
[user/henk/code/inspircd.git] / src / coremods / core_channel / cmd_topic.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2007-2008 Robin Burchell <robin+git@viroteck.net>
6  *   Copyright (C) 2008 Craig Edwards <craigedwards@brainbox.cc>
7  *   Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
8  *
9  * This file is part of InspIRCd.  InspIRCd is free software: you can
10  * redistribute it and/or modify it under the terms of the GNU General Public
11  * License as published by the Free Software Foundation, version 2.
12  *
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
20  */
21
22
23 #include "inspircd.h"
24
25 /** Handle /TOPIC.
26  */
27 class CommandTopic : public SplitCommand
28 {
29         ChanModeReference secretmode;
30         ChanModeReference topiclockmode;
31
32  public:
33         /** Constructor for topic.
34          */
35         CommandTopic(Module* parent)
36                 : SplitCommand(parent, "TOPIC", 1, 2)
37                 , secretmode(parent, "secret")
38                 , topiclockmode(parent, "topiclock")
39         {
40                 syntax = "<channel> [<topic>]";
41                 Penalty = 2;
42         }
43
44         /** Handle command.
45          * @param parameters The parameters to the command
46          * @param user The user issuing the command
47          * @return A value from CmdResult to indicate command success or failure.
48          */
49         CmdResult HandleLocal(const std::vector<std::string>& parameters, LocalUser* user);
50 };
51
52 CmdResult CommandTopic::HandleLocal(const std::vector<std::string>& parameters, LocalUser* user)
53 {
54         Channel* c = ServerInstance->FindChan(parameters[0]);
55         if (!c)
56         {
57                 user->WriteNumeric(ERR_NOSUCHNICK, "%s :No such nick/channel", parameters[0].c_str());
58                 return CMD_FAILURE;
59         }
60
61         if (parameters.size() == 1)
62         {
63                 if ((c->IsModeSet(secretmode)) && (!c->HasUser(user)))
64                 {
65                         user->WriteNumeric(ERR_NOSUCHNICK, "%s :No such nick/channel", c->name.c_str());
66                         return CMD_FAILURE;
67                 }
68
69                 if (c->topic.length())
70                 {
71                         user->WriteNumeric(RPL_TOPIC, "%s :%s", c->name.c_str(), c->topic.c_str());
72                         user->WriteNumeric(RPL_TOPICTIME, "%s %s %lu", c->name.c_str(), c->setby.c_str(), (unsigned long)c->topicset);
73                 }
74                 else
75                 {
76                         user->WriteNumeric(RPL_NOTOPICSET, "%s :No topic is set.", c->name.c_str());
77                 }
78                 return CMD_SUCCESS;
79         }
80
81         std::string t = parameters[1]; // needed, in case a module wants to change it
82         ModResult res;
83         FIRST_MOD_RESULT(OnPreTopicChange, res, (user,c,t));
84
85         if (res == MOD_RES_DENY)
86                 return CMD_FAILURE;
87         if (res != MOD_RES_ALLOW)
88         {
89                 if (!c->HasUser(user))
90                 {
91                         user->WriteNumeric(ERR_NOTONCHANNEL, "%s :You're not on that channel!", c->name.c_str());
92                         return CMD_FAILURE;
93                 }
94                 if (c->IsModeSet(topiclockmode) && !ServerInstance->OnCheckExemption(user, c, "topiclock").check(c->GetPrefixValue(user) >= HALFOP_VALUE))
95                 {
96                         user->WriteNumeric(ERR_CHANOPRIVSNEEDED, "%s :You do not have access to change the topic on this channel", c->name.c_str());
97                         return CMD_FAILURE;
98                 }
99         }
100
101         c->SetTopic(user, t);
102         return CMD_SUCCESS;
103 }
104
105
106 COMMAND_INIT(CommandTopic)