2007-01-25 07:40:21 +01:00
|
|
|
/* contrib/m_ojoin.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 ojoin_desc[] = "Allow admins to forcibly join channels with the OJOIN command";
|
|
|
|
|
2016-08-23 02:37:07 +02:00
|
|
|
static void mo_ojoin(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 ojoin_msgtab = {
|
2016-02-19 23:42:40 +01:00
|
|
|
"OJOIN", 0, 0, 0, 0,
|
2007-01-25 07:40:21 +01:00
|
|
|
{mg_unreg, mg_not_oper, mg_ignore, mg_ignore, mg_ignore, {mo_ojoin, 2}}
|
|
|
|
};
|
|
|
|
|
|
|
|
mapi_clist_av1 ojoin_clist[] = { &ojoin_msgtab, NULL };
|
|
|
|
|
2016-03-07 10:40:51 +01:00
|
|
|
DECLARE_MODULE_AV2(ojoin, NULL, NULL, ojoin_clist, NULL, NULL, NULL, NULL, ojoin_desc);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
** mo_ojoin
|
|
|
|
** parv[1] = channel
|
|
|
|
*/
|
2016-03-09 08:37:03 +01:00
|
|
|
static void
|
2016-08-23 02:37:07 +02:00
|
|
|
mo_ojoin(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;
|
2007-01-25 07:40:21 +01:00
|
|
|
int move_me = 0;
|
|
|
|
|
|
|
|
/* 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
|
|
|
}
|
|
|
|
|
2013-04-21 04:23:27 +02:00
|
|
|
if(*parv[1] == '@' || *parv[1] == '+')
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
parv[1]++;
|
|
|
|
move_me = 1;
|
|
|
|
}
|
|
|
|
|
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-23 02:37:07 +02:00
|
|
|
if(is_member(chptr, &source))
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one_notice(&source, ":Please part %s before using OJOIN", parv[1]);
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if(move_me == 1)
|
|
|
|
parv[1]--;
|
|
|
|
|
2016-08-24 00:25:09 +02:00
|
|
|
sendto_wallops_flags(umode::WALLOP, &me,
|
2007-01-25 07:40:21 +01:00
|
|
|
"OJOIN 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, "OJOIN 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
|
|
|
/* only sends stuff for #channels remotely */
|
|
|
|
sendto_server(NULL, chptr, NOCAPS, NOCAPS,
|
|
|
|
":%s WALLOPS :OJOIN called for %s by %s!%s@%s",
|
|
|
|
me.name, parv[1],
|
2016-08-23 02:37:07 +02:00
|
|
|
source.name, source.username, source.host);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
if(*parv[1] == '@')
|
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
add(*chptr, source, chan::CHANOP);
|
|
|
|
sendto_server(&client, chptr, CAP_TS6, NOCAPS,
|
2007-08-11 00:31:14 +02:00
|
|
|
":%s SJOIN %ld %s + :@%s",
|
2016-08-23 02:37:07 +02:00
|
|
|
me.id, (long) chptr->channelts, chptr->name.c_str(), source.id);
|
|
|
|
send_join(*chptr, source);
|
2016-08-18 07:33:38 +02:00
|
|
|
sendto_channel_local(chan::ALL_MEMBERS, chptr, ":%s MODE %s +o %s",
|
2016-08-23 02:37:07 +02:00
|
|
|
me.name, chptr->name.c_str(), source.name);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
else if(*parv[1] == '+')
|
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
add(*chptr, source, chan::VOICE);
|
|
|
|
sendto_server(&client, chptr, CAP_TS6, NOCAPS,
|
2007-08-11 00:31:14 +02:00
|
|
|
":%s SJOIN %ld %s + :+%s",
|
2016-08-23 02:37:07 +02:00
|
|
|
me.id, (long) chptr->channelts, chptr->name.c_str(), source.id);
|
|
|
|
send_join(*chptr, source);
|
2016-08-18 07:33:38 +02:00
|
|
|
sendto_channel_local(chan::ALL_MEMBERS, chptr, ":%s MODE %s +v %s",
|
2016-08-23 02:37:07 +02:00
|
|
|
me.name, chptr->name.c_str(), source.name);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
add(*chptr, source, chan::PEON);
|
|
|
|
sendto_server(&client, chptr, CAP_TS6, NOCAPS,
|
2007-08-11 00:31:14 +02:00
|
|
|
":%s JOIN %ld %s +",
|
2016-08-23 02:37:07 +02:00
|
|
|
source.id, (long) chptr->channelts, chptr->name.c_str());
|
|
|
|
send_join(*chptr, source);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* send the topic... */
|
2016-08-18 07:33:38 +02:00
|
|
|
if(chptr->topic)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-08-23 02:37:07 +02:00
|
|
|
sendto_one(&source, form_str(RPL_TOPIC), me.name,
|
|
|
|
source.name, chptr->name.c_str(), chptr->topic.text.c_str());
|
|
|
|
sendto_one(&source, form_str(RPL_TOPICWHOTIME), me.name,
|
|
|
|
source.name, chptr->name.c_str(), chptr->topic.info.c_str(), chptr->topic.time);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
2016-08-23 02:37:07 +02:00
|
|
|
source.localClient->last_join_time = rb_current_time();
|
|
|
|
channel_member_names(chptr, &source, 1);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|