]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_motd.cpp
Allow <connect motd> to select an alternate MOTD file to display
[user/henk/code/inspircd.git] / src / commands / cmd_motd.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2010 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "inspircd.h"
15
16 /** Handle /MOTD. These command handlers can be reloaded by the core,
17  * and handle basic RFC1459 commands. Commands within modules work
18  * the same way, however, they can be fully unloaded, where these
19  * may not.
20  */
21 class CommandMotd : public Command
22 {
23  public:
24         /** Constructor for motd.
25          */
26         CommandMotd ( Module* parent) : Command(parent,"MOTD",0,1) { syntax = "[<servername>]"; }
27         /** Handle command.
28          * @param parameters The parameters to the comamnd
29          * @param pcnt The number of parameters passed to teh command
30          * @param user The user issuing the command
31          * @return A value from CmdResult to indicate command success or failure.
32          */
33         CmdResult Handle(const std::vector<std::string>& parameters, User *user);
34         RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters)
35         {
36                 if (parameters.size() > 0)
37                         return ROUTE_UNICAST(parameters[0]);
38                 return ROUTE_LOCALONLY;
39         }
40 };
41
42 /** Handle /MOTD
43  */
44 CmdResult CommandMotd::Handle (const std::vector<std::string>& parameters, User *user)
45 {
46         if (parameters.size() > 0 && parameters[0] != ServerInstance->Config->ServerName)
47                 return CMD_SUCCESS;
48
49         ConfigTag* tag = NULL;
50         if (IS_LOCAL(user))
51                 tag = user->GetClass()->config;
52         std::string motd_name = tag->getString("motd", "motd");
53         ConfigFileCache::iterator motd = ServerInstance->Config->Files.find(motd_name);
54         if (motd == ServerInstance->Config->Files.end())
55         {
56                 user->SendText(":%s %03d %s :Message of the day file is missing.",
57                         ServerInstance->Config->ServerName.c_str(), ERR_NOMOTD, user->nick.c_str());
58                 return CMD_SUCCESS;
59         }
60
61         user->SendText(":%s %03d %s :%s message of the day", ServerInstance->Config->ServerName.c_str(),
62                 RPL_MOTDSTART, user->nick.c_str(), ServerInstance->Config->ServerName.c_str());
63
64         for (file_cache::iterator i = motd->second.begin(); i != motd->second.end(); i++)
65                 user->SendText(":%s %03d %s :- %s", ServerInstance->Config->ServerName.c_str(), RPL_MOTD, user->nick.c_str(),i->c_str());
66
67         user->SendText(":%s %03d %s :End of message of the day.", ServerInstance->Config->ServerName.c_str(), RPL_ENDOFMOTD, user->nick.c_str());
68
69         return CMD_SUCCESS;
70 }
71
72 COMMAND_INIT(CommandMotd)