2007-01-25 07:40:21 +01:00
|
|
|
/* contrib/m_opme.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 opme_desc[] = "Allow admins to op themselves on opless channels";
|
|
|
|
|
2016-08-23 02:37:07 +02:00
|
|
|
static void mo_opme(struct MsgBuf *msgbuf_p, client::client &client, client::client &source, int parc, const char *parv[]);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
struct Message opme_msgtab = {
|
2016-02-19 23:42:40 +01:00
|
|
|
"OPME", 0, 0, 0, 0,
|
2007-01-25 07:40:21 +01:00
|
|
|
{mg_unreg, mg_not_oper, mg_ignore, mg_ignore, mg_ignore, {mo_opme, 2}}
|
|
|
|
};
|
|
|
|
|
|
|
|
mapi_clist_av1 opme_clist[] = { &opme_msgtab, NULL };
|
|
|
|
|
2016-03-07 10:40:51 +01:00
|
|
|
DECLARE_MODULE_AV2(opme, NULL, NULL, opme_clist, NULL, NULL, NULL, NULL, opme_desc);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
** mo_opme
|
|
|
|
** parv[1] = channel
|
|
|
|
*/
|
2016-03-09 08:37:03 +01:00
|
|
|
static void
|
2016-08-23 02:37:07 +02:00
|
|
|
mo_opme(struct MsgBuf *msgbuf_p, client::client &client, client::client &source, int parc, const char *parv[])
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
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
|
|
|
|
|
|
|
/* admins only */
|
2016-08-23 02:37:07 +02:00
|
|
|
if(!IsOperAdmin(&source))
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one(&source, form_str(ERR_NOPRIVS), me.name, source.name, "admin");
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
2016-08-20 04:51:37 +02:00
|
|
|
if((chptr = chan::get(parv[1], std::nothrow)) == NULL)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one_numeric(&source, ERR_NOSUCHCHANNEL,
|
2007-01-25 07:40:21 +01:00
|
|
|
form_str(ERR_NOSUCHCHANNEL), parv[1]);
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
2016-08-20 02:32:26 +02:00
|
|
|
for(auto &pit : chptr->members.global)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-08-20 02:32:26 +02:00
|
|
|
msptr = &pit.second;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
if(is_chanop(msptr))
|
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one_notice(&source, ":%s Channel is not opless", parv[1]);
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-23 02:37:07 +02:00
|
|
|
msptr = get(chptr->members, source, std::nothrow);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
if(msptr == NULL)
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-08-18 07:33:38 +02:00
|
|
|
msptr->flags |= chan::CHANOP;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-08-24 00:25:09 +02:00
|
|
|
sendto_wallops_flags(umode::WALLOP, &me,
|
2007-01-25 07:40:21 +01:00
|
|
|
"OPME called for [%s] by %s!%s@%s",
|
2016-08-23 02:37:07 +02:00
|
|
|
parv[1], source.name, source.username, source.host);
|
2007-01-25 07:40:21 +01:00
|
|
|
ilog(L_MAIN, "OPME called for [%s] by %s",
|
2016-08-23 02:37:07 +02:00
|
|
|
parv[1], get_oper_name(&source));
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
/* dont send stuff for local channels remotely. */
|
2016-08-18 07:33:38 +02:00
|
|
|
if(chptr->name[0] != '&')
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
sendto_server(NULL, NULL, NOCAPS, NOCAPS,
|
|
|
|
":%s WALLOPS :OPME called for [%s] by %s!%s@%s",
|
2016-08-23 02:37:07 +02:00
|
|
|
me.name, parv[1], source.name, source.username, source.host);
|
|
|
|
sendto_server(NULL, chptr, CAP_TS6, NOCAPS, ":%s PART %s", source.id, parv[1]);
|
2007-08-11 00:31:14 +02:00
|
|
|
sendto_server(NULL, chptr, CAP_TS6, NOCAPS,
|
|
|
|
":%s SJOIN %ld %s + :@%s",
|
2016-08-23 02:37:07 +02:00
|
|
|
me.id, (long) chptr->channelts, parv[1], source.id);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
2016-08-18 07:33:38 +02:00
|
|
|
sendto_channel_local(chan::ALL_MEMBERS, chptr,
|
2016-08-23 02:37:07 +02:00
|
|
|
":%s MODE %s +o %s", me.name, parv[1], source.name);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|