]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_quit.cpp
968374dec77dba78b5f748dee229d770c9f1038b
[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 #ifndef __CMD_QUIT_H__
17 #define __CMD_QUIT_H__
18
19 // include the common header files
20
21 #include "users.h"
22 #include "channels.h"
23
24 /** Handle /QUIT. These command handlers can be reloaded by the core,
25  * and handle basic RFC1459 commands. Commands within modules work
26  * the same way, however, they can be fully unloaded, where these
27  * may not.
28  */
29 class CommandQuit : public Command
30 {
31  public:
32         /** Constructor for quit.
33          */
34         CommandQuit (InspIRCd* Instance, Module* parent) : Command(Instance,parent,"QUIT",0,0,true) { syntax = "[<message>]"; }
35         /** Handle command.
36          * @param parameters The parameters to the comamnd
37          * @param pcnt The number of parameters passed to teh command
38          * @param user The user issuing the command
39          * @return A value from CmdResult to indicate command success or failure.
40          */
41         CmdResult Handle(const std::vector<std::string>& parameters, User *user);
42 };
43
44 #endif
45
46
47
48
49 CmdResult CommandQuit::Handle (const std::vector<std::string>& parameters, User *user)
50 {
51
52         std::string quitmsg;
53
54         if (IS_LOCAL(user))
55         {
56                 if (*ServerInstance->Config->FixedQuit)
57                         quitmsg = ServerInstance->Config->FixedQuit;
58                 else
59                         quitmsg = parameters.size() ?
60                                 ServerInstance->Config->PrefixQuit + std::string(parameters[0]) + ServerInstance->Config->SuffixQuit
61                                 : "Client exited";
62         }
63         else
64                 quitmsg = parameters.size() ? parameters[0] : "Client exited";
65
66         std::string* operquit;
67         if (user->GetExt("operquit", operquit))
68         {
69                 ServerInstance->Users->QuitUser(user, quitmsg, operquit->c_str());
70                 delete operquit;
71         }
72         else
73         {
74                 ServerInstance->Users->QuitUser(user, quitmsg);
75         }
76
77         return CMD_SUCCESS;
78 }
79
80
81 COMMAND_INIT(CommandQuit)