]> jfr.im git - solanum.git/blob - modules/m_ison.c
modules: Add AV2 description to m_version
[solanum.git] / modules / m_ison.c
1 /*
2 * ircd-ratbox: A slightly useful ircd.
3 * m_ison.c: Provides a single line answer of whether a user is online.
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 *
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.
13 *
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.
18 *
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
22 * USA
23 */
24
25 #include "stdinc.h"
26 #include "client.h"
27 #include "match.h"
28 #include "ircd.h"
29 #include "numeric.h"
30 #include "send.h"
31 #include "msg.h"
32 #include "parse.h"
33 #include "modules.h"
34 #include "s_conf.h" /* ConfigFileEntry */
35 #include "s_serv.h" /* uplink/IsCapable */
36 #include "hash.h"
37
38 #include <string.h>
39
40 static int m_ison(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
41
42 struct Message ison_msgtab = {
43 "ISON", 0, 0, 0, 0,
44 {mg_unreg, {m_ison, 2}, mg_ignore, mg_ignore, mg_ignore, {m_ison, 2}}
45 };
46
47 mapi_clist_av1 ison_clist[] = { &ison_msgtab, NULL };
48 DECLARE_MODULE_AV2(ison, NULL, NULL, ison_clist, NULL, NULL, NULL, NULL, NULL);
49
50 static char buf[BUFSIZE];
51 static char buf2[BUFSIZE];
52
53
54 /*
55 * m_ison added by Darren Reed 13/8/91 to act as an efficent user indicator
56 * with respect to cpu/bandwidth used. Implemented for NOTIFY feature in
57 * clients. Designed to reduce number of whois requests. Can process
58 * nicknames in batches as long as the maximum buffer length.
59 *
60 * format:
61 * ISON :nicklist
62 */
63 static int
64 m_ison(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
65 {
66 struct Client *target_p;
67 char *nick;
68 char *p;
69 char *current_insert_point, *current_insert_point2;
70 int len;
71 int i;
72 int done = 0;
73
74 current_insert_point2 = buf2;
75 *buf2 = '\0';
76
77 sprintf(buf, form_str(RPL_ISON), me.name, source_p->name);
78 len = strlen(buf);
79 current_insert_point = buf + len;
80
81 /* rfc1489 is ambigious about how to handle ISON
82 * this should handle both interpretations.
83 */
84 for (i = 1; i < parc; i++)
85 {
86 char *cs = LOCAL_COPY(parv[i]);
87 for (nick = rb_strtok_r(cs, " ", &p); nick; nick = rb_strtok_r(NULL, " ", &p))
88 {
89 target_p = find_named_client(nick);
90
91 if(target_p != NULL)
92 {
93 len = strlen(target_p->name);
94 if((current_insert_point + (len + 5)) < (buf + sizeof(buf)))
95 {
96 memcpy((void *) current_insert_point,
97 (void *) target_p->name, len);
98 current_insert_point += len;
99 *current_insert_point++ = ' ';
100 }
101 else
102 {
103 done = 1;
104 break;
105 }
106 }
107 }
108 if(done)
109 break;
110 }
111
112 /* current_insert_point--;
113 * Do NOT take out the trailing space, it breaks ircII
114 * --Rodder */
115
116 *current_insert_point = '\0';
117 *current_insert_point2 = '\0';
118
119 sendto_one(source_p, "%s", buf);
120
121 return 0;
122 }