]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_away.cpp
Remove InspIRCd* parameters and fields
[user/henk/code/inspircd.git] / src / commands / cmd_away.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_AWAY_H__
17 #define __CMD_AWAY_H__
18
19 // include the common header files
20
21 #include "users.h"
22 #include "channels.h"
23
24 /** Handle /AWAY. 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 CommandAway : public Command
30 {
31  public:
32         /** Constructor for away.
33          */
34         CommandAway ( Module* parent) : Command(parent,"AWAY",0,0) { 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 /** Handle /AWAY
48  */
49 CmdResult CommandAway::Handle (const std::vector<std::string>& parameters, User *user)
50 {
51         ModResult MOD_RESULT;
52
53         if ((parameters.size()) && (!parameters[0].empty()))
54         {
55                 FIRST_MOD_RESULT(OnSetAway, MOD_RESULT, (user, parameters[0]));
56
57                 if (MOD_RESULT == MOD_RES_DENY && IS_LOCAL(user))
58                         return CMD_FAILURE;
59
60                 user->awaytime = ServerInstance->Time();
61                 user->awaymsg.assign(parameters[0], 0, ServerInstance->Config->Limits.MaxAway);
62
63                 user->WriteNumeric(RPL_NOWAWAY, "%s :You have been marked as being away",user->nick.c_str());
64         }
65         else
66         {
67                 FIRST_MOD_RESULT(OnSetAway, MOD_RESULT, (user, ""));
68
69                 if (MOD_RESULT == MOD_RES_DENY && IS_LOCAL(user))
70                         return CMD_FAILURE;
71
72                 user->awaymsg.clear();
73                 user->WriteNumeric(RPL_UNAWAY, "%s :You are no longer marked as being away",user->nick.c_str());
74         }
75
76         return CMD_SUCCESS;
77 }
78
79 COMMAND_INIT(CommandAway)