]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_away.cpp
Make User:: nick/ident/dhost/fullname and some other things std::string instead of...
[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 std::vector<std::string>& parameters, User *user)
25 {
26         int MOD_RESULT = 0;
27
28         if ((parameters.size()) && (!parameters[0].empty()))
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                 user->awaymsg.assign(parameters[0], 0, MAXAWAY);
37
38                 user->WriteNumeric(306, "%s :You have been marked as being away",user->nick.c_str());
39         }
40         else
41         {
42                 FOREACH_RESULT(I_OnSetAway, OnSetAway(user, ""));
43
44                 if (MOD_RESULT != 0 && !IS_LOCAL(user))
45                         return CMD_FAILURE;
46
47                 user->awaymsg.empty();
48                 user->WriteNumeric(305, "%s :You are no longer marked as being away",user->nick.c_str());
49         }
50
51         return CMD_SUCCESS;
52 }