]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_opermotd.cpp
010f4ae58a405c2e7df150962ab636e5b85dba90
[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                 if (opermotd.empty())
54                 {
55                         user->WriteRemoteNumeric(455, "OPERMOTD file is missing");
56                         return;
57                 }
58
59                 user->WriteRemoteNumeric(375, "- IRC Operators Message of the Day");
60
61                 for (file_cache::const_iterator i = opermotd.begin(); i != opermotd.end(); ++i)
62                 {
63                         user->WriteRemoteNumeric(372, InspIRCd::Format("- %s", i->c_str()));
64                 }
65
66                 user->WriteRemoteNumeric(376, "- End of OPERMOTD");
67         }
68 };
69
70
71 class ModuleOpermotd : public Module
72 {
73         CommandOpermotd cmd;
74         bool onoper;
75  public:
76
77         ModuleOpermotd()
78                 : cmd(this)
79         {
80         }
81
82         Version GetVersion() CXX11_OVERRIDE
83         {
84                 return Version("Shows a message to opers after oper-up, adds /opermotd", VF_VENDOR | VF_OPTCOMMON);
85         }
86
87         void OnOper(User* user, const std::string &opertype) CXX11_OVERRIDE
88         {
89                 if (onoper && IS_LOCAL(user))
90                         cmd.ShowOperMOTD(user);
91         }
92
93         void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
94         {
95                 cmd.opermotd.clear();
96                 ConfigTag* conf = ServerInstance->Config->ConfValue("opermotd");
97                 onoper = conf->getBool("onoper", true);
98
99                 try
100                 {
101                         FileReader reader(conf->getString("file", "opermotd"));
102                         cmd.opermotd = reader.GetVector();
103                 }
104                 catch (CoreException&)
105                 {
106                         // Nothing happens here as we do the error handling in ShowOperMOTD.
107                 }
108
109                 if (conf->getBool("processcolors"))
110                         InspIRCd::ProcessColors(cmd.opermotd);
111         }
112 };
113
114 MODULE_INIT(ModuleOpermotd)