]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/coremods/core_user/cmd_away.cpp
834e8711d448cfe10a2a5ac8a90ab62431fd077f
[user/henk/code/inspircd.git] / src / coremods / core_user / cmd_away.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
6  *
7  * This file is part of InspIRCd.  InspIRCd is free software: you can
8  * redistribute it and/or modify it under the terms of the GNU General Public
9  * License as published by the Free Software Foundation, version 2.
10  *
11  * This program is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
14  * details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20
21 #include "inspircd.h"
22 #include "core_user.h"
23
24 enum
25 {
26         // From RFC 1459.
27         RPL_UNAWAY = 305,
28         RPL_NOWAWAY = 306
29 };
30
31 CommandAway::CommandAway(Module* parent)
32         : Command(parent, "AWAY", 0, 1)
33         , awayevprov(parent)
34 {
35         allow_empty_last_param = false;
36         syntax = "[:<message>]";
37 }
38
39 /** Handle /AWAY
40  */
41 CmdResult CommandAway::Handle(User* user, const Params& parameters)
42 {
43         LocalUser* luser = IS_LOCAL(user);
44         ModResult MOD_RESULT;
45
46         if (!parameters.empty())
47         {
48                 std::string message(parameters[0]);
49                 if (luser)
50                 {
51                         FIRST_MOD_RESULT_CUSTOM(awayevprov, Away::EventListener, OnUserPreAway, MOD_RESULT, (luser, message));
52                         if (MOD_RESULT == MOD_RES_DENY)
53                                 return CMD_FAILURE;
54                 }
55
56                 user->awaytime = ServerInstance->Time();
57                 user->awaymsg.assign(message, 0, ServerInstance->Config->Limits.MaxAway);
58                 user->WriteNumeric(RPL_NOWAWAY, "You have been marked as being away");
59                 FOREACH_MOD_CUSTOM(awayevprov, Away::EventListener, OnUserAway, (user));
60         }
61         else
62         {
63                 if (luser)
64                 {
65                         FIRST_MOD_RESULT_CUSTOM(awayevprov, Away::EventListener, OnUserPreBack, MOD_RESULT, (luser));
66                         if (MOD_RESULT == MOD_RES_DENY)
67                                 return CMD_FAILURE;
68                 }
69
70                 user->awaytime = 0;
71                 user->awaymsg.clear();
72                 user->WriteNumeric(RPL_UNAWAY, "You are no longer marked as being away");
73                 FOREACH_MOD_CUSTOM(awayevprov, Away::EventListener, OnUserBack, (user));
74         }
75
76         return CMD_SUCCESS;
77 }
78
79 RouteDescriptor CommandAway::GetRouting(User* user, const Params& parameters)
80 {
81         return (IS_LOCAL(user) ? ROUTE_LOCALONLY : ROUTE_BROADCAST);
82 }