]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_topic.cpp
e0fa79d1cce280d579c6d97a2d88b035f29c82d0
[user/henk/code/inspircd.git] / src / commands / cmd_topic.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/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
16 /** Handle /TOPIC. These command handlers can be reloaded by the core,
17  * and handle basic RFC1459 commands. Commands within modules work
18  * the same way, however, they can be fully unloaded, where these
19  * may not.
20  */
21 class CommandTopic : public Command
22 {
23  public:
24         /** Constructor for topic.
25          */
26         CommandTopic ( Module* parent) : Command(parent,"TOPIC",1, 2) { syntax = "<channel> [<topic>]"; Penalty = 2; }
27         /** Handle command.
28          * @param parameters The parameters to the comamnd
29          * @param pcnt The number of parameters passed to teh command
30          * @param user The user issuing the command
31          * @return A value from CmdResult to indicate command success or failure.
32          */
33         CmdResult Handle(const std::vector<std::string>& parameters, User *user);
34 };
35
36 CmdResult CommandTopic::Handle (const std::vector<std::string>& parameters, User *user)
37 {
38         Channel* c;
39
40         c = ServerInstance->FindChan(parameters[0]);
41         if (!c)
42         {
43                 user->WriteNumeric(401, "%s %s :No such nick/channel",user->nick.c_str(), parameters[0].c_str());
44                 return CMD_FAILURE;
45         }
46
47         if (parameters.size() == 1)
48         {
49                 if (c)
50                 {
51                         if ((c->IsModeSet('s')) && (!c->HasUser(user)))
52                         {
53                                 user->WriteNumeric(401, "%s %s :No such nick/channel",user->nick.c_str(), c->name.c_str());
54                                 return CMD_FAILURE;
55                         }
56
57                         if (c->topic.length())
58                         {
59                                 user->WriteNumeric(332, "%s %s :%s", user->nick.c_str(), c->name.c_str(), c->topic.c_str());
60                                 user->WriteNumeric(333, "%s %s %s %lu", user->nick.c_str(), c->name.c_str(), c->setby.c_str(), (unsigned long)c->topicset);
61                         }
62                         else
63                         {
64                                 user->WriteNumeric(RPL_NOTOPICSET, "%s %s :No topic is set.", user->nick.c_str(), c->name.c_str());
65                         }
66                 }
67                 return CMD_SUCCESS;
68         }
69         else if (parameters.size()>1)
70         {
71                 std::string t = parameters[1]; // needed, in case a module wants to change it
72                 c->SetTopic(user, t);
73         }
74
75         return CMD_SUCCESS;
76 }
77
78
79 COMMAND_INIT(CommandTopic)