2007-01-25 07:40:21 +01:00
|
|
|
/*
|
|
|
|
* IRC - Internet Relay Chat, contrib/m_findforwards.c
|
|
|
|
* Copyright (C) 2002 Hybrid Development Team
|
|
|
|
* Copyright (C) 2004 ircd-ratbox Development Team
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 1, or (at your option)
|
|
|
|
* any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*/
|
|
|
|
|
2016-08-13 05:05:54 +02:00
|
|
|
using namespace ircd;
|
|
|
|
|
2016-03-09 08:29:41 +01:00
|
|
|
static const char findfowards_desc[] = "Allows operators to find forwards to a given channel";
|
|
|
|
|
2016-08-23 02:37:07 +02:00
|
|
|
static void m_findforwards(struct MsgBuf *msgbuf_p, client::client &client, client::client &source,
|
2007-01-25 07:40:21 +01:00
|
|
|
int parc, const char *parv[]);
|
|
|
|
|
|
|
|
struct Message findforwards_msgtab = {
|
2016-02-19 23:42:40 +01:00
|
|
|
"FINDFORWARDS", 0, 0, 0, 0,
|
2007-01-25 07:40:21 +01:00
|
|
|
{mg_unreg, {m_findforwards, 2}, mg_ignore, mg_ignore, mg_ignore, {m_findforwards, 2}}
|
|
|
|
};
|
|
|
|
|
|
|
|
mapi_clist_av1 findforwards_clist[] = { &findforwards_msgtab, NULL };
|
|
|
|
|
2016-03-07 10:40:51 +01:00
|
|
|
DECLARE_MODULE_AV2(findforwards, NULL, NULL, findforwards_clist, NULL, NULL, NULL, NULL, findfowards_desc);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
** mo_findforwards
|
|
|
|
** parv[1] = channel
|
|
|
|
*/
|
2016-03-09 08:37:03 +01:00
|
|
|
static void
|
2016-08-23 02:37:07 +02:00
|
|
|
m_findforwards(struct MsgBuf *msgbuf_p, client::client &client, client::client &source, int parc, const char *parv[])
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
static time_t last_used = 0;
|
2016-08-18 07:33:38 +02:00
|
|
|
chan::chan *chptr;
|
|
|
|
chan::membership *msptr;
|
2008-04-01 23:20:40 +02:00
|
|
|
rb_dlink_node *ptr;
|
2007-01-25 07:40:21 +01:00
|
|
|
char buf[414];
|
|
|
|
char *p = buf, *end = buf + sizeof buf - 1;
|
|
|
|
*p = '\0';
|
|
|
|
|
|
|
|
/* Allow ircops to search for forwards to nonexistent channels */
|
2016-08-24 00:25:09 +02:00
|
|
|
if(!is(source, umode::OPER))
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
if((chptr = chan::get(parv[1], std::nothrow)) == NULL || (msptr = get(chptr->members, source, std::nothrow)) == NULL)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one_numeric(&source, ERR_NOTONCHANNEL,
|
2007-01-25 07:40:21 +01:00
|
|
|
form_str(ERR_NOTONCHANNEL), parv[1]);
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if(!is_chanop(msptr))
|
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one(&source, form_str(ERR_CHANOPRIVSNEEDED),
|
|
|
|
me.name, source.name, parv[1]);
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
2008-04-02 02:35:13 +02:00
|
|
|
if((last_used + ConfigFileEntry.pace_wait) > rb_current_time())
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one(&source, form_str(RPL_LOAD2HI),
|
|
|
|
me.name, source.name, "FINDFORWARDS");
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
else
|
2008-04-02 02:35:13 +02:00
|
|
|
last_used = rb_current_time();
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
2014-03-03 05:25:47 +01:00
|
|
|
|
2016-08-20 04:51:37 +02:00
|
|
|
for(const auto &pit : chan::chans)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-08-20 04:51:37 +02:00
|
|
|
chptr = pit.second.get();
|
2014-03-02 21:47:36 +01:00
|
|
|
if(!irccmp(chptr->mode.forward, parv[1]))
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-08-18 07:33:38 +02:00
|
|
|
if(p + chptr->name.size() >= end - 13)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
strcpy(p, "<truncated> ");
|
|
|
|
p += 12;
|
|
|
|
break;
|
|
|
|
}
|
2016-08-18 07:33:38 +02:00
|
|
|
strcpy(p, chptr->name.c_str());
|
|
|
|
p += chptr->name.size();
|
2007-01-25 07:40:21 +01:00
|
|
|
*p++ = ' ';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if(buf[0])
|
|
|
|
*(--p) = '\0';
|
|
|
|
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one_notice(&source, ":Forwards for %s: %s", parv[1], buf);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|