2 * ircd-ratbox: A slightly useful ircd.
3 * m_away.c: Sets/removes away status on a user.
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2005 ircd-ratbox development team
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
24 * $Id: m_away.c 21130 2005-11-08 21:01:45Z leeh $
29 #include "irc_string.h"
41 static int m_away(struct Client
*, struct Client
*, int, const char **);
43 struct Message away_msgtab
= {
44 "AWAY", 0, 0, 0, MFLG_SLOW
,
45 {mg_unreg
, {m_away
, 0}, {m_away
, 0}, mg_ignore
, mg_ignore
, {m_away
, 0}}
48 mapi_clist_av1 away_clist
[] = { &away_msgtab
, NULL
};
49 DECLARE_MODULE_AV1(away
, NULL
, NULL
, away_clist
, NULL
, NULL
, "$Revision: 21130 $");
51 /***********************************************************************
52 * m_away() - Added 14 Dec 1988 by jto.
53 * Not currently really working, I don't like this
56 * ...trying to make it work. I don't like it either,
57 * but perhaps it's worth the load it causes to net.
58 * This requires flooding of the whole net like NICK,
59 * USER, MODE, etc messages... --msa
61 * The above comments have long since irrelvant, but
62 * are kept for historical purposes now ;)
63 ***********************************************************************/
67 ** parv[0] = sender prefix
68 ** parv[1] = away message
71 m_away(struct Client
*client_p
, struct Client
*source_p
, int parc
, const char *parv
[])
76 if(MyClient(source_p
) && !IsFloodDone(source_p
))
77 flood_endgrace(source_p
);
79 if(!IsClient(source_p
))
82 away
= source_p
->user
->away
;
84 if(parc
< 2 || EmptyString(parv
[1]))
86 /* Marking as not away */
89 /* we now send this only if they were away before --is */
90 sendto_server(client_p
, NULL
, CAP_TS6
, NOCAPS
,
91 ":%s AWAY", use_id(source_p
));
92 sendto_server(client_p
, NULL
, NOCAPS
, CAP_TS6
,
93 ":%s AWAY", source_p
->name
);
95 source_p
->user
->away
= NULL
;
97 if(MyConnect(source_p
))
98 sendto_one(source_p
, form_str(RPL_UNAWAY
),
99 me
.name
, source_p
->name
);
103 /* Marking as away */
104 awy2
= LOCAL_COPY(parv
[1]);
105 if(strlen(awy2
) > AWAYLEN
)
106 awy2
[AWAYLEN
] = '\0';
108 /* we now send this only if they weren't away already --is */
111 sendto_server(client_p
, NULL
, CAP_TS6
, NOCAPS
,
112 ":%s AWAY :%s", use_id(source_p
), awy2
);
113 sendto_server(client_p
, NULL
, NOCAPS
, CAP_TS6
,
114 ":%s AWAY :%s", source_p
->name
, awy2
);
119 DupString(away
, awy2
);
121 source_p
->user
->away
= away
;
123 if(MyConnect(source_p
))
124 sendto_one(source_p
, form_str(RPL_NOWAWAY
), me
.name
, source_p
->name
);