]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/coremods/core_info/cmd_motd.cpp
Fix not checking for server names case insensitively.
[user/henk/code/inspircd.git] / src / coremods / core_info / cmd_motd.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
6  *
7  * This file is part of InspIRCd.  InspIRCd is free software: you can
8  * redistribute it and/or modify it under the terms of the GNU General Public
9  * License as published by the Free Software Foundation, version 2.
10  *
11  * This program is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
14  * details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20
21 #include "inspircd.h"
22 #include "core_info.h"
23
24 CommandMotd::CommandMotd(Module* parent)
25         : ServerTargetCommand(parent, "MOTD")
26 {
27         syntax = "[<servername>]";
28 }
29
30 /** Handle /MOTD
31  */
32 CmdResult CommandMotd::Handle(User* user, const Params& parameters)
33 {
34         if (parameters.size() > 0 && !irc::equals(parameters[0], ServerInstance->Config->ServerName))
35         {
36                 // Give extra penalty if a non-oper queries the /MOTD of a remote server
37                 LocalUser* localuser = IS_LOCAL(user);
38                 if ((localuser) && (!user->IsOper()))
39                         localuser->CommandFloodPenalty += 2000;
40                 return CMD_SUCCESS;
41         }
42
43         ConfigTag* tag = ServerInstance->Config->EmptyTag;
44         LocalUser* localuser = IS_LOCAL(user);
45         if (localuser)
46                 tag = localuser->GetClass()->config;
47         std::string motd_name = tag->getString("motd", "motd");
48         ConfigFileCache::iterator motd = motds.find(motd_name);
49         if (motd == motds.end())
50         {
51                 user->WriteRemoteNumeric(ERR_NOMOTD, "Message of the day file is missing.");
52                 return CMD_SUCCESS;
53         }
54
55         user->WriteRemoteNumeric(RPL_MOTDSTART, InspIRCd::Format("%s message of the day", ServerInstance->Config->ServerName.c_str()));
56
57         for (file_cache::iterator i = motd->second.begin(); i != motd->second.end(); i++)
58                 user->WriteRemoteNumeric(RPL_MOTD, InspIRCd::Format("- %s", i->c_str()));
59
60         user->WriteRemoteNumeric(RPL_ENDOFMOTD, "End of message of the day.");
61
62         return CMD_SUCCESS;
63 }