]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_opermotd.cpp
543fa685469511062588dce1380878766163c26d
[user/henk/code/inspircd.git] / src / modules / m_opermotd.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
5  *   Copyright (C) 2005, 2007 Robin Burchell <robin+git@viroteck.net>
6  *   Copyright (C) 2005-2006 Craig Edwards <craigedwards@brainbox.cc>
7  *   Copyright (C) 2004 Christopher Hall <typobox43@gmail.com>
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 /OPERMOTD
26  */
27 class CommandOpermotd : public Command
28 {
29  public:
30         file_cache opermotd;
31
32         CommandOpermotd(Module* Creator) : Command(Creator,"OPERMOTD", 0, 1)
33         {
34                 flags_needed = 'o'; syntax = "[<servername>]";
35         }
36
37         CmdResult Handle (const std::vector<std::string>& parameters, User* user)
38         {
39                 if ((parameters.empty()) || (parameters[0] == ServerInstance->Config->ServerName))
40                         ShowOperMOTD(user);
41                 return CMD_SUCCESS;
42         }
43
44         RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters)
45         {
46                 if (!parameters.empty())
47                         return ROUTE_OPT_UCAST(parameters[0]);
48                 return ROUTE_LOCALONLY;
49         }
50
51         void ShowOperMOTD(User* user)
52         {
53                 const std::string& servername = ServerInstance->Config->ServerName;
54                 if (opermotd.empty())
55                 {
56                         user->SendText(":%s 455 %s :OPERMOTD file is missing", servername.c_str(), user->nick.c_str());
57                         return;
58                 }
59
60                 user->SendText(":%s 375 %s :- IRC Operators Message of the Day", servername.c_str(), user->nick.c_str());
61
62                 for (file_cache::const_iterator i = opermotd.begin(); i != opermotd.end(); ++i)
63                 {
64                         user->SendText(":%s 372 %s :- %s", servername.c_str(), user->nick.c_str(), i->c_str());
65                 }
66
67                 user->SendText(":%s 376 %s :- End of OPERMOTD", servername.c_str(), user->nick.c_str());
68         }
69 };
70
71
72 class ModuleOpermotd : public Module
73 {
74         CommandOpermotd cmd;
75         bool onoper;
76  public:
77
78         ModuleOpermotd()
79                 : cmd(this)
80         {
81         }
82
83         void init() CXX11_OVERRIDE
84         {
85                 ServerInstance->Modules->AddService(cmd);
86         }
87
88         Version GetVersion() CXX11_OVERRIDE
89         {
90                 return Version("Shows a message to opers after oper-up, adds /opermotd", VF_VENDOR | VF_OPTCOMMON);
91         }
92
93         void OnOper(User* user, const std::string &opertype) CXX11_OVERRIDE
94         {
95                 if (onoper && IS_LOCAL(user))
96                         cmd.ShowOperMOTD(user);
97         }
98
99         void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
100         {
101                 cmd.opermotd.clear();
102                 ConfigTag* conf = ServerInstance->Config->ConfValue("opermotd");
103                 onoper = conf->getBool("onoper", true);
104
105                 try
106                 {
107                         FileReader reader(conf->getString("file", "opermotd"));
108                         cmd.opermotd = reader.GetVector();
109                 }
110                 catch (CoreException&)
111                 {
112                         // Nothing happens here as we do the error handling in ShowOperMOTD.
113                 }
114
115                 if (conf->getBool("processcolors"))
116                         InspIRCd::ProcessColors(cmd.opermotd);
117         }
118 };
119
120 MODULE_INIT(ModuleOpermotd)