]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_opermotd.cpp
Update copyright headers.
[user/henk/code/inspircd.git] / src / modules / m_opermotd.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2013, 2018-2019 Sadie Powell <sadie@witchery.services>
5  *   Copyright (C) 2012-2013, 2016 Attila Molnar <attilamolnar@hush.com>
6  *   Copyright (C) 2012, 2019 Robby <robby@chatbelgie.be>
7  *   Copyright (C) 2009 Uli Schlachter <psychon@inspircd.org>
8  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
9  *   Copyright (C) 2007, 2009 Dennis Friis <peavey@inspircd.org>
10  *   Copyright (C) 2006 Craig Edwards <brain@inspircd.org>
11  *
12  * This file is part of InspIRCd.  InspIRCd is free software: you can
13  * redistribute it and/or modify it under the terms of the GNU General Public
14  * License as published by the Free Software Foundation, version 2.
15  *
16  * This program is distributed in the hope that it will be useful, but WITHOUT
17  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
18  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
19  * details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
23  */
24
25
26 #include "inspircd.h"
27
28 enum
29 {
30         // From UnrealIRCd.
31         ERR_NOOPERMOTD = 425,
32
33         // From ircd-ratbox.
34         RPL_OMOTDSTART = 720,
35         RPL_OMOTD = 721,
36         RPL_ENDOFOMOTD = 722
37 };
38
39 /** Handle /OPERMOTD
40  */
41 class CommandOpermotd : public Command
42 {
43  public:
44         file_cache opermotd;
45
46         CommandOpermotd(Module* Creator) : Command(Creator,"OPERMOTD", 0, 1)
47         {
48                 flags_needed = 'o'; syntax = "[<servername>]";
49         }
50
51         CmdResult Handle(User* user, const Params& parameters) CXX11_OVERRIDE
52         {
53                 if ((parameters.empty()) || (irc::equals(parameters[0], ServerInstance->Config->ServerName)))
54                         ShowOperMOTD(user, true);
55                 return CMD_SUCCESS;
56         }
57
58         RouteDescriptor GetRouting(User* user, const Params& parameters) CXX11_OVERRIDE
59         {
60                 if ((!parameters.empty()) && (parameters[0].find('.') != std::string::npos))
61                         return ROUTE_OPT_UCAST(parameters[0]);
62                 return ROUTE_LOCALONLY;
63         }
64
65         void ShowOperMOTD(User* user, bool show_missing)
66         {
67                 if (opermotd.empty())
68                 {
69                         if (show_missing)
70                                 user->WriteRemoteNumeric(ERR_NOOPERMOTD, "OPERMOTD file is missing.");
71                         return;
72                 }
73
74                 user->WriteRemoteNumeric(RPL_OMOTDSTART, "Server operators message of the day");
75
76                 for (file_cache::const_iterator i = opermotd.begin(); i != opermotd.end(); ++i)
77                 {
78                         user->WriteRemoteNumeric(RPL_OMOTD, InspIRCd::Format("- %s", i->c_str()));
79                 }
80
81                 user->WriteRemoteNumeric(RPL_ENDOFOMOTD, "End of OPERMOTD");
82         }
83 };
84
85
86 class ModuleOpermotd : public Module
87 {
88         CommandOpermotd cmd;
89         bool onoper;
90  public:
91
92         ModuleOpermotd()
93                 : cmd(this)
94         {
95         }
96
97         Version GetVersion() CXX11_OVERRIDE
98         {
99                 return Version("Shows a message to opers after oper-up and adds the OPERMOTD command", VF_VENDOR | VF_OPTCOMMON);
100         }
101
102         void OnOper(User* user, const std::string &opertype) CXX11_OVERRIDE
103         {
104                 if (onoper && IS_LOCAL(user))
105                         cmd.ShowOperMOTD(user, false);
106         }
107
108         void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
109         {
110                 cmd.opermotd.clear();
111                 ConfigTag* conf = ServerInstance->Config->ConfValue("opermotd");
112                 onoper = conf->getBool("onoper", true);
113
114                 try
115                 {
116                         FileReader reader(conf->getString("file", "opermotd"));
117                         cmd.opermotd = reader.GetVector();
118                         InspIRCd::ProcessColors(cmd.opermotd);
119                 }
120                 catch (CoreException&)
121                 {
122                         // Nothing happens here as we do the error handling in ShowOperMOTD.
123                 }
124         }
125 };
126
127 MODULE_INIT(ModuleOpermotd)