]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_topic.cpp
m_spanningtree Rewrite /map
[user/henk/code/inspircd.git] / src / commands / 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. These command handlers can be reloaded by the core,
26  * and handle basic RFC1459 commands. Commands within modules work
27  * the same way, however, they can be fully unloaded, where these
28  * may not.
29  */
30 class CommandTopic : public SplitCommand
31 {
32         ChanModeReference secretmode;
33         ChanModeReference topiclockmode;
34
35  public:
36         /** Constructor for topic.
37          */
38         CommandTopic(Module* parent)
39                 : SplitCommand(parent, "TOPIC", 1, 2)
40                 , secretmode(parent, "secret")
41                 , topiclockmode(parent, "topiclock")
42         {
43                 syntax = "<channel> [<topic>]";
44                 Penalty = 2;
45         }
46
47         /** Handle command.
48          * @param parameters The parameters to the comamnd
49          * @param pcnt The number of parameters passed to teh command
50          * @param user The user issuing the command
51          * @return A value from CmdResult to indicate command success or failure.
52          */
53         CmdResult HandleLocal(const std::vector<std::string>& parameters, LocalUser* user);
54 };
55
56 CmdResult CommandTopic::HandleLocal(const std::vector<std::string>& parameters, LocalUser* user)
57 {
58         Channel* c = ServerInstance->FindChan(parameters[0]);
59         if (!c)
60         {
61                 user->WriteNumeric(ERR_NOSUCHNICK, "%s :No such nick/channel", parameters[0].c_str());
62                 return CMD_FAILURE;
63         }
64
65         if (parameters.size() == 1)
66         {
67                 if (c)
68                 {
69                         if ((c->IsModeSet(secretmode)) && (!c->HasUser(user)))
70                         {
71                                 user->WriteNumeric(ERR_NOSUCHNICK, "%s :No such nick/channel", c->name.c_str());
72                                 return CMD_FAILURE;
73                         }
74
75                         if (c->topic.length())
76                         {
77                                 user->WriteNumeric(RPL_TOPIC, "%s :%s", c->name.c_str(), c->topic.c_str());
78                                 user->WriteNumeric(RPL_TOPICTIME, "%s %s %lu", c->name.c_str(), c->setby.c_str(), (unsigned long)c->topicset);
79                         }
80                         else
81                         {
82                                 user->WriteNumeric(RPL_NOTOPICSET, "%s :No topic is set.", c->name.c_str());
83                         }
84                 }
85                 return CMD_SUCCESS;
86         }
87
88         std::string t = parameters[1]; // needed, in case a module wants to change it
89         ModResult res;
90         FIRST_MOD_RESULT(OnPreTopicChange, res, (user,c,t));
91
92         if (res == MOD_RES_DENY)
93                 return CMD_FAILURE;
94         if (res != MOD_RES_ALLOW)
95         {
96                 if (!c->HasUser(user))
97                 {
98                         user->WriteNumeric(ERR_NOTONCHANNEL, "%s :You're not on that channel!", c->name.c_str());
99                         return CMD_FAILURE;
100                 }
101                 if (c->IsModeSet(topiclockmode) && !ServerInstance->OnCheckExemption(user, c, "topiclock").check(c->GetPrefixValue(user) >= HALFOP_VALUE))
102                 {
103                         user->WriteNumeric(ERR_CHANOPRIVSNEEDED, "%s :You do not have access to change the topic on this channel", c->name.c_str());
104                         return CMD_FAILURE;
105                 }
106         }
107
108         c->SetTopic(user, t);
109         return CMD_SUCCESS;
110 }
111
112
113 COMMAND_INIT(CommandTopic)