]> jfr.im git - irc/rqf/shadowircd.git/blame - extensions/m_olist.c
report_error() cleanup
[irc/rqf/shadowircd.git] / extensions / m_olist.c
CommitLineData
212380e3 1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * m_olist.c: List channels. olist is an oper only command
4 * that shows channels regardless of modes. This
5 * is kinda evil, and might be morally wrong, but
6 * somebody will likely need it.
7 *
8 * Copyright (C) 2002 by the past and present ircd coders, and others.
9 * Copyright (C) 2004 ircd-ratbox Development Team
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
24 * USA
25 *
26 * $Id: m_olist.c 6 2005-09-10 01:02:21Z nenolod $
27 */
28
29#include "stdinc.h"
212380e3 30#include "channel.h"
31#include "client.h"
32#include "ircd.h"
33#include "numeric.h"
34#include "s_log.h"
35#include "s_serv.h"
36#include "send.h"
37#include "whowas.h"
38#include "irc_string.h"
39#include "hash.h"
40#include "msg.h"
41#include "parse.h"
42#include "modules.h"
43#include "s_newconf.h"
44#include "sprintf_irc.h"
45
46static int mo_olist(struct Client *, struct Client *, int parc, const char *parv[]);
47
48#ifndef STATIC_MODULES
49
50struct Message olist_msgtab = {
51 "OLIST", 0, 0, 0, MFLG_SLOW,
52 {mg_unreg, mg_not_oper, mg_ignore, mg_ignore, mg_ignore, {mo_olist, 1}}
53};
54
55mapi_clist_av1 olist_clist[] = { &olist_msgtab, NULL };
56
57DECLARE_MODULE_AV1(okick, NULL, NULL, olist_clist, NULL, NULL, "$Revision: 6 $");
58
59#endif
60
61static void list_all_channels(struct Client *source_p);
62static void list_named_channel(struct Client *source_p, const char *name);
63
64/*
65** mo_olist
66** parv[0] = sender prefix
67** parv[1] = channel
68*/
69static int
70mo_olist(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
71{
72 if(IsOperSpy(source_p))
73 {
74 /* If no arg, do all channels *whee*, else just one channel */
75 if(parc < 2 || EmptyString(parv[1]))
76 {
77 report_operspy(source_p, "LIST", NULL);
78 list_all_channels(source_p);
79 }
80 else
81 {
82 report_operspy(source_p, "LIST", parv[1]);
83 list_named_channel(source_p, parv[1]);
84 }
85 }
86
87 sendto_one(source_p, form_str(RPL_LISTEND), me.name, source_p->name);
88 return 0;
89}
90
91
92/*
93 * list_all_channels
94 * inputs - pointer to client requesting list
95 * output - 0/1
96 * side effects - list all channels to source_p
97 */
98static void
99list_all_channels(struct Client *source_p)
100{
101 struct Channel *chptr;
71f6ebfa 102 rb_dlink_node *ptr;
212380e3 103 sendto_one(source_p, form_str(RPL_LISTSTART), me.name, source_p->name);
104
71f6ebfa 105 RB_DLINK_FOREACH(ptr, global_channel_list.head)
212380e3 106 {
107 chptr = ptr->data;
108
109 sendto_one(source_p, form_str(RPL_LIST),
110 me.name, source_p->name, chptr->chname,
c51d32ba 111 rb_dlink_list_length(&chptr->members),
212380e3 112 chptr->topic == NULL ? "" : chptr->topic);
113 }
114
115 return;
116}
117
118/*
119 * list_named_channel
120 * inputs - pointer to client requesting list
121 * output - 0/1
122 * side effects - list all channels to source_p
123 */
124static void
125list_named_channel(struct Client *source_p, const char *name)
126{
127 struct Channel *chptr;
128 char *p;
129 char *n = LOCAL_COPY(name);
130
131 sendto_one(source_p, form_str(RPL_LISTSTART), me.name, source_p->name);
132
133 if((p = strchr(n, ',')))
134 *p = '\0';
135
136 if(EmptyString(n))
137 {
138 sendto_one_numeric(source_p, ERR_NOSUCHCHANNEL,
139 form_str(ERR_NOSUCHCHANNEL), n);
140 return;
141 }
142
143 if((chptr = find_channel(n)) == NULL)
144 sendto_one_numeric(source_p, ERR_NOSUCHCHANNEL,
145 form_str(ERR_NOSUCHCHANNEL), n);
146 else
147 sendto_one(source_p, form_str(RPL_LIST), me.name, source_p->name,
c51d32ba 148 chptr->chname, rb_dlink_list_length(&chptr->members),
212380e3 149 chptr->topic ? chptr->topic : "");
150}