]> jfr.im git - solanum.git/blame - extensions/m_findforwards.c
Merge pull request #302 from edk0/sasl-usercloak
[solanum.git] / extensions / m_findforwards.c
CommitLineData
212380e3
AC
1/*
2 * IRC - Internet Relay Chat, contrib/m_findforwards.c
3 * Copyright (C) 2002 Hybrid Development Team
4 * Copyright (C) 2004 ircd-ratbox Development Team
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 1, or (at your option)
9 * any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
212380e3
AC
19 */
20#include "stdinc.h"
212380e3
AC
21#include "channel.h"
22#include "client.h"
23#include "hash.h"
4562c604 24#include "match.h"
212380e3
AC
25#include "ircd.h"
26#include "numeric.h"
27#include "s_user.h"
28#include "s_conf.h"
29#include "s_newconf.h"
30#include "send.h"
31#include "msg.h"
32#include "parse.h"
33#include "modules.h"
34#include "packet.h"
bd0d352f 35#include "messages.h"
212380e3 36
eeabf33a
EM
37static const char findfowards_desc[] = "Allows operators to find forwards to a given channel";
38
3c7d6fcc 39static void m_findforwards(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p,
212380e3
AC
40 int parc, const char *parv[]);
41
42struct Message findforwards_msgtab = {
7baa37a9 43 "FINDFORWARDS", 0, 0, 0, 0,
212380e3
AC
44 {mg_unreg, {m_findforwards, 2}, mg_ignore, mg_ignore, mg_ignore, {m_findforwards, 2}}
45};
46
47mapi_clist_av1 findforwards_clist[] = { &findforwards_msgtab, NULL };
48
02369fa7 49DECLARE_MODULE_AV2(findforwards, NULL, NULL, findforwards_clist, NULL, NULL, NULL, NULL, findfowards_desc);
212380e3
AC
50
51/*
52** mo_findforwards
212380e3
AC
53** parv[1] = channel
54*/
3c7d6fcc 55static void
760bafda 56m_findforwards(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
212380e3
AC
57{
58 static time_t last_used = 0;
59 struct Channel *chptr;
60 struct membership *msptr;
036a10a9 61 rb_dlink_node *ptr;
212380e3
AC
62 char buf[414];
63 char *p = buf, *end = buf + sizeof buf - 1;
64 *p = '\0';
65
66 /* Allow ircops to search for forwards to nonexistent channels */
67 if(!IsOper(source_p))
68 {
69 if((chptr = find_channel(parv[1])) == NULL || (msptr = find_channel_membership(chptr, source_p)) == NULL)
70 {
71 sendto_one_numeric(source_p, ERR_NOTONCHANNEL,
72 form_str(ERR_NOTONCHANNEL), parv[1]);
3c7d6fcc 73 return;
212380e3
AC
74 }
75
76 if(!is_chanop(msptr))
77 {
78 sendto_one(source_p, form_str(ERR_CHANOPRIVSNEEDED),
79 me.name, source_p->name, parv[1]);
3c7d6fcc 80 return;
212380e3
AC
81 }
82
954012d3 83 if((last_used + ConfigFileEntry.pace_wait) > rb_current_time())
212380e3
AC
84 {
85 sendto_one(source_p, form_str(RPL_LOAD2HI),
86 me.name, source_p->name, "FINDFORWARDS");
3c7d6fcc 87 return;
212380e3
AC
88 }
89 else
954012d3 90 last_used = rb_current_time();
212380e3 91 }
55abcbb2 92
036a10a9 93 RB_DLINK_FOREACH(ptr, global_channel_list.head)
212380e3
AC
94 {
95 chptr = ptr->data;
b222b6a0 96 if(!irccmp(chptr->mode.forward, parv[1]))
212380e3
AC
97 {
98 if(p + strlen(chptr->chname) >= end - 13)
99 {
100 strcpy(p, "<truncated> ");
101 p += 12;
102 break;
103 }
104 strcpy(p, chptr->chname);
105 p += strlen(chptr->chname);
106 *p++ = ' ';
107 }
108 }
109
110 if(buf[0])
111 *(--p) = '\0';
112
113 sendto_one_notice(source_p, ":Forwards for %s: %s", parv[1], buf);
212380e3 114}