]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_away.cpp
33e140beb978a02ba9a8cef246295d0f30f5610f
[user/henk/code/inspircd.git] / src / commands / cmd_away.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/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 #include "commands/cmd_away.h"
16
17 extern "C" DllExport Command* init_command(InspIRCd* Instance)
18 {
19         return new CommandAway(Instance);
20 }
21
22 /** Handle /AWAY
23  */
24 CmdResult CommandAway::Handle (const char* const* parameters, int pcnt, User *user)
25 {
26         int MOD_RESULT = 0;
27
28         if ((pcnt) && (*parameters[0]))
29         {
30                 FOREACH_RESULT(I_OnSetAway, OnSetAway(user, parameters[0]));
31
32                 if (MOD_RESULT != 0 && !IS_LOCAL(user))
33                         return CMD_FAILURE;
34
35                 user->awaytime = ServerInstance->Time();
36                 strlcpy(user->awaymsg,parameters[0],MAXAWAY);
37                 user->WriteNumeric(306, "%s :You have been marked as being away",user->nick);
38         }
39         else
40         {
41                 FOREACH_RESULT(I_OnSetAway, OnSetAway(user, ""));
42
43                 if (MOD_RESULT != 0 && !IS_LOCAL(user))
44                         return CMD_FAILURE;
45
46                 *user->awaymsg = 0;
47                 user->WriteNumeric(305, "%s :You are no longer marked as being away",user->nick);
48         }
49
50         return CMD_SUCCESS;
51 }