2007-01-25 07:40:21 +01:00
|
|
|
/*
|
|
|
|
* ircd-ratbox: A slightly useful ircd.
|
|
|
|
* m_topic.c: Sets a channel topic.
|
|
|
|
*
|
|
|
|
* Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
|
|
|
|
* Copyright (C) 1996-2002 Hybrid Development Team
|
|
|
|
* Copyright (C) 2002-2005 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 2 of the License, 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
* USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "stdinc.h"
|
|
|
|
#include "channel.h"
|
|
|
|
#include "client.h"
|
|
|
|
#include "hash.h"
|
2008-04-20 07:47:38 +02:00
|
|
|
#include "match.h"
|
2007-01-25 07:40:21 +01:00
|
|
|
#include "ircd.h"
|
|
|
|
#include "numeric.h"
|
|
|
|
#include "send.h"
|
2008-12-03 00:16:05 +01:00
|
|
|
#include "s_newconf.h"
|
2007-01-25 07:40:21 +01:00
|
|
|
#include "s_conf.h"
|
|
|
|
#include "s_serv.h"
|
|
|
|
#include "msg.h"
|
|
|
|
#include "parse.h"
|
|
|
|
#include "modules.h"
|
|
|
|
#include "packet.h"
|
2010-08-29 01:26:00 +02:00
|
|
|
#include "tgchange.h"
|
2013-09-10 07:35:56 +02:00
|
|
|
#include "logger.h"
|
2016-01-14 00:17:14 +01:00
|
|
|
#include "inline/stringops.h"
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-03-07 09:27:32 +01:00
|
|
|
static const char topic_desc[] =
|
|
|
|
"Provides the TOPIC command to set, remove, and inspect channel topics";
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2016-03-09 08:37:03 +01:00
|
|
|
static void m_topic(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
|
|
|
|
static void ms_topic(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
|
2016-03-09 08:29:41 +01:00
|
|
|
|
2007-01-25 07:40:21 +01:00
|
|
|
struct Message topic_msgtab = {
|
2016-02-19 23:42:40 +01:00
|
|
|
"TOPIC", 0, 0, 0, 0,
|
2007-01-25 07:40:21 +01:00
|
|
|
{mg_unreg, {m_topic, 2}, {m_topic, 2}, {ms_topic, 5}, mg_ignore, {m_topic, 2}}
|
|
|
|
};
|
|
|
|
|
|
|
|
mapi_clist_av1 topic_clist[] = { &topic_msgtab, NULL };
|
2016-03-07 09:27:32 +01:00
|
|
|
DECLARE_MODULE_AV2(topic, NULL, NULL, topic_clist, NULL, NULL, NULL, NULL, topic_desc);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* m_topic
|
|
|
|
* parv[1] = channel name
|
|
|
|
* parv[2] = new topic, if setting topic
|
|
|
|
*/
|
2016-03-09 08:37:03 +01:00
|
|
|
static void
|
2016-02-11 03:54:17 +01:00
|
|
|
m_topic(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
struct Channel *chptr = NULL;
|
|
|
|
struct membership *msptr;
|
|
|
|
char *p = NULL;
|
2008-12-03 00:16:05 +01:00
|
|
|
const char *name;
|
|
|
|
int operspy = 0;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
if((p = strchr(parv[1], ',')))
|
|
|
|
*p = '\0';
|
|
|
|
|
2008-12-03 00:16:05 +01:00
|
|
|
name = parv[1];
|
|
|
|
|
|
|
|
if(IsOperSpy(source_p) && parv[1][0] == '!')
|
|
|
|
{
|
|
|
|
name++;
|
|
|
|
operspy = 1;
|
|
|
|
|
|
|
|
if(EmptyString(name))
|
|
|
|
{
|
|
|
|
sendto_one(source_p, form_str(ERR_NEEDMOREPARAMS),
|
|
|
|
me.name, source_p->name, "TOPIC");
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2008-12-03 00:16:05 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-01-25 07:40:21 +01:00
|
|
|
if(MyClient(source_p) && !IsFloodDone(source_p))
|
|
|
|
flood_endgrace(source_p);
|
|
|
|
|
2008-12-03 00:16:05 +01:00
|
|
|
chptr = find_channel(name);
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
if(chptr == NULL)
|
|
|
|
{
|
|
|
|
sendto_one_numeric(source_p, ERR_NOSUCHCHANNEL,
|
2008-12-03 00:16:05 +01:00
|
|
|
form_str(ERR_NOSUCHCHANNEL), name);
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* setting topic */
|
|
|
|
if(parc > 2)
|
|
|
|
{
|
|
|
|
msptr = find_channel_membership(chptr, source_p);
|
|
|
|
|
|
|
|
if(msptr == NULL)
|
|
|
|
{
|
|
|
|
sendto_one_numeric(source_p, ERR_NOTONCHANNEL,
|
2008-12-03 00:16:05 +01:00
|
|
|
form_str(ERR_NOTONCHANNEL), name);
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
|
2010-08-29 01:26:00 +02:00
|
|
|
if(MyClient(source_p) && !is_chanop_voiced(msptr) &&
|
|
|
|
!IsOper(source_p) &&
|
|
|
|
!add_channel_target(source_p, chptr))
|
|
|
|
{
|
|
|
|
sendto_one(source_p, form_str(ERR_TARGCHANGE),
|
|
|
|
me.name, source_p->name, chptr->chname);
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2010-08-29 01:26:00 +02:00
|
|
|
}
|
|
|
|
|
2010-04-15 00:46:33 +02:00
|
|
|
if(((chptr->mode.mode & MODE_TOPICLIMIT) == 0 ||
|
2016-01-14 05:16:44 +01:00
|
|
|
get_channel_access(source_p, chptr, msptr, MODE_ADD, NULL) >= CHFL_CHANOP) &&
|
2010-04-15 00:46:33 +02:00
|
|
|
(!MyClient(source_p) ||
|
|
|
|
can_send(chptr, source_p, msptr)))
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
2016-01-14 00:17:14 +01:00
|
|
|
char topic[TOPICLEN + 1];
|
2007-01-25 07:40:21 +01:00
|
|
|
char topic_info[USERHOST_REPLYLEN];
|
2016-01-14 00:17:14 +01:00
|
|
|
rb_strlcpy(topic, parv[2], sizeof(topic));
|
2016-02-10 02:25:32 +01:00
|
|
|
sprintf(topic_info, "%s!%s@%s",
|
2007-01-25 07:40:21 +01:00
|
|
|
source_p->name, source_p->username, source_p->host);
|
2016-01-14 00:17:14 +01:00
|
|
|
|
|
|
|
if (ConfigChannel.strip_topic_colors)
|
|
|
|
strip_colour(topic);
|
|
|
|
|
|
|
|
set_channel_topic(chptr, topic, topic_info, rb_current_time());
|
2007-01-25 07:40:21 +01:00
|
|
|
|
|
|
|
sendto_server(client_p, chptr, CAP_TS6, NOCAPS,
|
|
|
|
":%s TOPIC %s :%s",
|
|
|
|
use_id(source_p), chptr->chname,
|
|
|
|
chptr->topic == NULL ? "" : chptr->topic);
|
|
|
|
sendto_channel_local(ALL_MEMBERS,
|
|
|
|
chptr, ":%s!%s@%s TOPIC %s :%s",
|
|
|
|
source_p->name, source_p->username,
|
|
|
|
source_p->host, chptr->chname,
|
|
|
|
chptr->topic == NULL ? "" : chptr->topic);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
sendto_one(source_p, form_str(ERR_CHANOPRIVSNEEDED),
|
2009-04-09 23:45:35 +02:00
|
|
|
get_id(&me, source_p),
|
|
|
|
get_id(source_p, source_p), name);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
else if(MyClient(source_p))
|
|
|
|
{
|
2008-12-03 00:16:05 +01:00
|
|
|
if(operspy)
|
|
|
|
report_operspy(source_p, "TOPIC", chptr->chname);
|
|
|
|
if(!IsMember(source_p, chptr) && SecretChannel(chptr) &&
|
|
|
|
!operspy)
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
sendto_one_numeric(source_p, ERR_NOTONCHANNEL,
|
2008-12-03 00:16:05 +01:00
|
|
|
form_str(ERR_NOTONCHANNEL), name);
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
if(chptr->topic == NULL)
|
|
|
|
sendto_one(source_p, form_str(RPL_NOTOPIC),
|
2008-12-03 00:16:05 +01:00
|
|
|
me.name, source_p->name, name);
|
2007-01-25 07:40:21 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
sendto_one(source_p, form_str(RPL_TOPIC),
|
|
|
|
me.name, source_p->name, chptr->chname, chptr->topic);
|
|
|
|
|
|
|
|
sendto_one(source_p, form_str(RPL_TOPICWHOTIME),
|
|
|
|
me.name, source_p->name, chptr->chname,
|
2011-11-13 00:22:09 +01:00
|
|
|
chptr->topic_info,
|
|
|
|
(unsigned long)chptr->topic_time);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ms_topic
|
|
|
|
* parv[1] = channel name
|
|
|
|
* parv[2] = topic_info
|
|
|
|
* parv[3] = topic_info time
|
|
|
|
* parv[4] = new channel topic
|
|
|
|
*
|
|
|
|
* Let servers always set a topic
|
|
|
|
*/
|
2016-03-09 08:37:03 +01:00
|
|
|
static void
|
2016-02-11 03:54:17 +01:00
|
|
|
ms_topic(struct MsgBuf *msgbuf_p, struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
|
2007-01-25 07:40:21 +01:00
|
|
|
{
|
|
|
|
struct Channel *chptr = NULL;
|
|
|
|
|
2011-06-25 11:17:37 +02:00
|
|
|
if((chptr = find_channel(parv[1])) == NULL)
|
2016-03-09 08:37:03 +01:00
|
|
|
return;
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2011-06-25 11:17:37 +02:00
|
|
|
set_channel_topic(chptr, parv[4], parv[2], atoi(parv[3]));
|
2007-01-25 07:40:21 +01:00
|
|
|
|
2011-06-25 11:17:37 +02:00
|
|
|
sendto_channel_local(ALL_MEMBERS, chptr, ":%s TOPIC %s :%s",
|
2014-03-03 05:25:47 +01:00
|
|
|
source_p->name, parv[1],
|
2011-06-25 11:17:37 +02:00
|
|
|
chptr->topic == NULL ? "" : chptr->topic);
|
2007-01-25 07:40:21 +01:00
|
|
|
}
|