]> jfr.im git - irc/rqf/shadowircd.git/blame - modules/m_presence.c
presence: m_presence module: Use safer get_metadata() where appropriate, to avoid...
[irc/rqf/shadowircd.git] / modules / m_presence.c
CommitLineData
0827f524
WP
1/*
2 * charybdis: an advanced ircd.
3 * m_presence.c: IRC presence protocol implementation
4 *
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
8 * Copyright (c) 2009 William Pitcock <nenolod@dereferenced.org>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
23 * USA
24 *
25 * $Id: m_away.c 3370 2007-04-03 10:15:39Z nenolod $
26 */
27
28#include "stdinc.h"
29#include "client.h"
30#include "match.h"
31#include "ircd.h"
32#include "numeric.h"
33#include "send.h"
34#include "msg.h"
35#include "parse.h"
36#include "modules.h"
37#include "s_conf.h"
38#include "s_serv.h"
39#include "packet.h"
40
41static int m_presence(struct Client *, struct Client *, int, const char **);
42static int me_presence(struct Client *, struct Client *, int, const char **);
43
44struct Message presence_msgtab = {
45 "PRESENCE", 0, 0, 0, MFLG_SLOW,
46 {mg_unreg, {m_presence, 1}, {m_presence, 1}, mg_ignore, {me_presence, 1}, {m_presence, 1}}
47};
48
49mapi_clist_av1 presence_clist[] = { &presence_msgtab, NULL };
50DECLARE_MODULE_AV1(presence, NULL, NULL, presence_clist, NULL, NULL, "$Revision$");
51
52/*
53** m_presence
54** parv[1] = key
55** parv[2] = setting
56*/
57static int
58m_presence(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
59{
fa00b4ad 60 const char *val;
0827f524
WP
61
62 if(MyClient(source_p) && !IsFloodDone(source_p))
63 flood_endgrace(source_p);
64
65 if(!IsClient(source_p))
66 return 0;
67
68 if((parc < 3 || EmptyString(parv[2])) && !EmptyString(parv[1]))
69 {
fa00b4ad 70 if ((val = get_metadata(source_p, parv[1])) != NULL)
0827f524
WP
71 {
72 delete_metadata(source_p, parv[1]);
73
74 sendto_server(client_p, NULL, CAP_TS6, NOCAPS,
75 ":%s ENCAP * PRESENCE %s", use_id(source_p), parv[1]);
76 }
77 if (MyConnect(source_p))
78 sendto_one_numeric(source_p, RPL_METADATAREM, form_str(RPL_METADATAREM), parv[1]);
79 return 0;
80 }
81
fa00b4ad 82 if ((val = get_metadata(source_p, parv[1])) != NULL)
0827f524
WP
83 {
84 if (!strcmp(parv[2], val))
85 return 0;
0827f524
WP
86 }
87
88 set_metadata(source_p, parv[1], parv[2]);
89 sendto_server(client_p, NULL, CAP_TS6, NOCAPS,
90 ":%s ENCAP * PRESENCE %s :%s", use_id(source_p), parv[1], parv[2]);
91
92 if(MyConnect(source_p))
93 sendto_one_numeric(source_p, RPL_METADATASET, form_str(RPL_METADATASET), parv[1]);
94
95 return 0;
96}
97
98/*
99** me_presence
100** parv[1] = key
101** parv[2] = setting
102*/
103static int
104me_presence(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
105{
fa00b4ad 106 const char *val;
0827f524
WP
107
108 if(MyClient(source_p) && !IsFloodDone(source_p))
109 flood_endgrace(source_p);
110
111 if(!IsClient(source_p))
112 return 0;
113
114 if((parc < 3 || EmptyString(parv[2])) && !EmptyString(parv[1]))
115 {
116 delete_metadata(source_p, parv[1]);
117 return 0;
118 }
119
fa00b4ad 120 if ((val = get_metadata(source_p, parv[1])) != NULL)
0827f524
WP
121 {
122 if (!strcmp(parv[2], val))
123 return 0;
0827f524
WP
124 }
125
126 set_metadata(source_p, parv[1], parv[2]);
127
128 return 0;
129}