]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_satopic.cpp
Convert WriteNumeric() calls to pass the parameters of the numeric as method parameters
[user/henk/code/inspircd.git] / src / modules / m_satopic.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2008 Oliver Lupton <oliverlupton@gmail.com>
5  *
6  * This file is part of InspIRCd.  InspIRCd is free software: you can
7  * redistribute it and/or modify it under the terms of the GNU General Public
8  * License as published by the Free Software Foundation, version 2.
9  *
10  * This program is distributed in the hope that it will be useful, but WITHOUT
11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
13  * details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19
20 #include "inspircd.h"
21
22 /** Handle /SATOPIC
23  */
24 class CommandSATopic : public Command
25 {
26  public:
27         CommandSATopic(Module* Creator) : Command(Creator,"SATOPIC", 2, 2)
28         {
29                 flags_needed = 'o'; Penalty = 0; syntax = "<target> <topic>";
30         }
31
32         CmdResult Handle (const std::vector<std::string>& parameters, User *user)
33         {
34                 /*
35                  * Handles a SATOPIC request. Notifies all +s users.
36                  */
37                 Channel* target = ServerInstance->FindChan(parameters[0]);
38
39                 if(target)
40                 {
41                         const std::string& newTopic = parameters[1];
42                         target->SetTopic(user, newTopic);
43                         ServerInstance->SNO->WriteGlobalSno('a', user->nick + " used SATOPIC on " + target->name + ", new topic: " + newTopic);
44
45                         return CMD_SUCCESS;
46                 }
47                 else
48                 {
49                         user->WriteNumeric(Numerics::NoSuchNick(parameters[0]));
50                         return CMD_FAILURE;
51                 }
52         }
53 };
54
55 class ModuleSATopic : public Module
56 {
57         CommandSATopic cmd;
58  public:
59         ModuleSATopic()
60         : cmd(this)
61         {
62         }
63
64         Version GetVersion() CXX11_OVERRIDE
65         {
66                 return Version("Provides a SATOPIC command", VF_VENDOR);
67         }
68 };
69
70 MODULE_INIT(ModuleSATopic)