]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_motd.cpp
9468eb2f3500282a7c1900470854157d447ee279
[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         if (!ServerInstance->Config->MOTD.size())
49         {
50                 user->SendText(":%s %03d %s :Message of the day file is missing.",
51                         ServerInstance->Config->ServerName.c_str(), ERR_NOMOTD, user->nick.c_str());
52                 return CMD_SUCCESS;
53         }
54         user->SendText(":%s %03d %s :%s message of the day", ServerInstance->Config->ServerName.c_str(),
55                 RPL_MOTDSTART, user->nick.c_str(), ServerInstance->Config->ServerName.c_str());
56
57         for (file_cache::iterator i = ServerInstance->Config->MOTD.begin(); i != ServerInstance->Config->MOTD.end(); i++)
58                 user->SendText(":%s %03d %s :- %s", ServerInstance->Config->ServerName.c_str(), RPL_MOTD, user->nick.c_str(),i->c_str());
59
60         user->SendText(":%s %03d %s :End of message of the day.", ServerInstance->Config->ServerName.c_str(), RPL_ENDOFMOTD, user->nick.c_str());
61
62         return CMD_SUCCESS;
63 }
64
65 COMMAND_INIT(CommandMotd)