]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_quit.cpp
Clean up Command constructor
[user/henk/code/inspircd.git] / src / commands / cmd_quit.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 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 /QUIT. 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 CommandQuit : public Command
22 {
23  public:
24         /** Constructor for quit.
25          */
26         CommandQuit ( Module* parent) : Command(parent,"QUIT",0,1) { works_before_reg = true; syntax = "[<message>]"; }
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 };
35
36
37 CmdResult CommandQuit::Handle (const std::vector<std::string>& parameters, User *user)
38 {
39
40         std::string quitmsg;
41
42         if (IS_LOCAL(user))
43         {
44                 if (*ServerInstance->Config->FixedQuit)
45                         quitmsg = ServerInstance->Config->FixedQuit;
46                 else
47                         quitmsg = parameters.size() ?
48                                 ServerInstance->Config->PrefixQuit + std::string(parameters[0]) + ServerInstance->Config->SuffixQuit
49                                 : "Client exited";
50         }
51         else
52                 quitmsg = parameters.size() ? parameters[0] : "Client exited";
53
54         std::string* operquit = User::OperQuit.get(user);
55         if (operquit)
56         {
57                 ServerInstance->Users->QuitUser(user, quitmsg, operquit->c_str());
58         }
59         else
60         {
61                 ServerInstance->Users->QuitUser(user, quitmsg);
62         }
63
64         return CMD_SUCCESS;
65 }
66
67
68 COMMAND_INIT(CommandQuit)