/* 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. */ using namespace ircd; static const char opme_desc[] = "Allow admins to op themselves on opless channels"; static void mo_opme(struct MsgBuf *msgbuf_p, client::client &client, client::client &source, int parc, const char *parv[]); struct Message opme_msgtab = { "OPME", 0, 0, 0, 0, {mg_unreg, mg_not_oper, mg_ignore, mg_ignore, mg_ignore, {mo_opme, 2}} }; mapi_clist_av1 opme_clist[] = { &opme_msgtab, NULL }; DECLARE_MODULE_AV2(opme, NULL, NULL, opme_clist, NULL, NULL, NULL, NULL, opme_desc); /* ** mo_opme ** parv[1] = channel */ static void mo_opme(struct MsgBuf *msgbuf_p, client::client &client, client::client &source, int parc, const char *parv[]) { chan::chan *chptr; chan::membership *msptr; rb_dlink_node *ptr; /* admins only */ if(!IsOperAdmin(&source)) { sendto_one(&source, form_str(ERR_NOPRIVS), me.name, source.name, "admin"); return; } if((chptr = chan::get(parv[1], std::nothrow)) == NULL) { sendto_one_numeric(&source, ERR_NOSUCHCHANNEL, form_str(ERR_NOSUCHCHANNEL), parv[1]); return; } for(auto &pit : chptr->members.global) { msptr = &pit.second; if(is_chanop(msptr)) { sendto_one_notice(&source, ":%s Channel is not opless", parv[1]); return; } } msptr = get(chptr->members, source, std::nothrow); if(msptr == NULL) return; msptr->flags |= chan::CHANOP; sendto_wallops_flags(umode::WALLOP, &me, "OPME called for [%s] by %s!%s@%s", parv[1], source.name, source.username, source.host); ilog(L_MAIN, "OPME called for [%s] by %s", parv[1], get_oper_name(&source)); /* dont send stuff for local channels remotely. */ if(chptr->name[0] != '&') { sendto_server(NULL, NULL, NOCAPS, NOCAPS, ":%s WALLOPS :OPME called for [%s] by %s!%s@%s", me.name, parv[1], source.name, source.username, source.host); sendto_server(NULL, chptr, CAP_TS6, NOCAPS, ":%s PART %s", source.id, parv[1]); sendto_server(NULL, chptr, CAP_TS6, NOCAPS, ":%s SJOIN %ld %s + :@%s", me.id, (long) chptr->channelts, parv[1], source.id); } sendto_channel_local(chan::ALL_MEMBERS, chptr, ":%s MODE %s +o %s", me.name, parv[1], source.name); }