]> jfr.im git - irc/rqf/shadowircd.git/blame - modules/m_topic.c
Add oper:override priv to the .confs
[irc/rqf/shadowircd.git] / modules / m_topic.c
CommitLineData
212380e3 1/*
2 * ircd-ratbox: A slightly useful ircd.
3 * m_topic.c: Sets a channel topic.
4 *
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2005 ircd-ratbox development team
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 * USA
23 *
24 * $Id: m_topic.c 254 2005-09-21 23:35:12Z nenolod $
25 */
26
27#include "stdinc.h"
212380e3 28#include "channel.h"
29#include "client.h"
30#include "hash.h"
13ae2f4b 31#include "match.h"
212380e3 32#include "ircd.h"
33#include "numeric.h"
34#include "send.h"
73788f79 35#include "s_newconf.h"
212380e3 36#include "s_conf.h"
37#include "s_serv.h"
38#include "msg.h"
39#include "parse.h"
40#include "modules.h"
41#include "packet.h"
42
43static int m_topic(struct Client *, struct Client *, int, const char **);
44static int ms_topic(struct Client *, struct Client *, int, const char **);
45
46struct Message topic_msgtab = {
47 "TOPIC", 0, 0, 0, MFLG_SLOW,
48 {mg_unreg, {m_topic, 2}, {m_topic, 2}, {ms_topic, 5}, mg_ignore, {m_topic, 2}}
49};
50
51mapi_clist_av1 topic_clist[] = { &topic_msgtab, NULL };
52DECLARE_MODULE_AV1(topic, NULL, NULL, topic_clist, NULL, NULL, "$Revision: 254 $");
53
54/*
55 * m_topic
212380e3 56 * parv[1] = channel name
57 * parv[2] = new topic, if setting topic
58 */
59static int
60m_topic(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
61{
62 struct Channel *chptr = NULL;
63 struct membership *msptr;
64 char *p = NULL;
73788f79
JT
65 const char *name;
66 int operspy = 0;
212380e3 67
68 if((p = strchr(parv[1], ',')))
69 *p = '\0';
70
73788f79
JT
71 name = parv[1];
72
73 if(IsOperSpy(source_p) && parv[1][0] == '!')
74 {
75 name++;
76 operspy = 1;
77
78 if(EmptyString(name))
79 {
80 sendto_one(source_p, form_str(ERR_NEEDMOREPARAMS),
81 me.name, source_p->name, "TOPIC");
82 return 0;
83 }
84 }
85
212380e3 86 if(MyClient(source_p) && !IsFloodDone(source_p))
87 flood_endgrace(source_p);
88
73788f79 89 if(!IsChannelName(name))
212380e3 90 {
91 sendto_one_numeric(source_p, ERR_NOSUCHCHANNEL,
73788f79 92 form_str(ERR_NOSUCHCHANNEL), name);
212380e3 93 return 0;
94 }
95
73788f79 96 chptr = find_channel(name);
212380e3 97
98 if(chptr == NULL)
99 {
100 sendto_one_numeric(source_p, ERR_NOSUCHCHANNEL,
73788f79 101 form_str(ERR_NOSUCHCHANNEL), name);
212380e3 102 return 0;
103 }
104
105 /* setting topic */
106 if(parc > 2)
107 {
108 msptr = find_channel_membership(chptr, source_p);
109
110 if(msptr == NULL)
111 {
112 sendto_one_numeric(source_p, ERR_NOTONCHANNEL,
73788f79 113 form_str(ERR_NOTONCHANNEL), name);
212380e3 114 return 0;
115 }
116
d1c7eccf 117 if((chptr->mode.mode & MODE_TOPICLIMIT) == 0 || is_any_op(msptr) || IsOverride(source_p))
212380e3 118 {
119 char topic_info[USERHOST_REPLYLEN];
45b9f1cb
JH
120
121 if(ConfigChannel.host_in_topic)
122 rb_sprintf(topic_info, "%s!%s@%s",
123 source_p->name, source_p->username, source_p->host);
124 else
125 rb_strlcpy(topic_info, source_p->name, sizeof(topic_info));
126
9f6bbe3c 127 set_channel_topic(chptr, parv[2], topic_info, rb_current_time());
212380e3 128
129 sendto_server(client_p, chptr, CAP_TS6, NOCAPS,
130 ":%s TOPIC %s :%s",
131 use_id(source_p), chptr->chname,
132 chptr->topic == NULL ? "" : chptr->topic);
212380e3 133 sendto_channel_local(ALL_MEMBERS,
134 chptr, ":%s!%s@%s TOPIC %s :%s",
135 source_p->name, source_p->username,
136 source_p->host, chptr->chname,
137 chptr->topic == NULL ? "" : chptr->topic);
138 }
139 else
140 sendto_one(source_p, form_str(ERR_CHANOPRIVSNEEDED),
c925bc77
JT
141 get_id(&me, source_p),
142 get_id(source_p, source_p), name);
212380e3 143 }
144 else if(MyClient(source_p))
145 {
73788f79
JT
146 if(operspy)
147 report_operspy(source_p, "TOPIC", chptr->chname);
148 if(!IsMember(source_p, chptr) && SecretChannel(chptr) &&
149 !operspy)
212380e3 150 {
151 sendto_one_numeric(source_p, ERR_NOTONCHANNEL,
73788f79 152 form_str(ERR_NOTONCHANNEL), name);
212380e3 153 return 0;
154 }
155 if(chptr->topic == NULL)
156 sendto_one(source_p, form_str(RPL_NOTOPIC),
73788f79 157 me.name, source_p->name, name);
212380e3 158 else
159 {
160 sendto_one(source_p, form_str(RPL_TOPIC),
161 me.name, source_p->name, chptr->chname, chptr->topic);
162
163 sendto_one(source_p, form_str(RPL_TOPICWHOTIME),
164 me.name, source_p->name, chptr->chname,
165 chptr->topic_info, chptr->topic_time);
166 }
167 }
168
169 return 0;
170}
171
172/*
173 * ms_topic
212380e3 174 * parv[1] = channel name
175 * parv[2] = topic_info
176 * parv[3] = topic_info time
177 * parv[4] = new channel topic
178 *
179 * Let servers always set a topic
180 */
181static int
182ms_topic(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
183{
184 struct Channel *chptr = NULL;
185
186 if(IsChannelName(parv[1]))
187 {
188 if((chptr = find_channel(parv[1])) == NULL)
189 return 0;
190
191 set_channel_topic(chptr, parv[4], parv[2], atoi(parv[3]));
192
193 sendto_channel_local(ALL_MEMBERS, chptr, ":%s TOPIC %s :%s",
194 source_p->name, parv[1],
195 chptr->topic == NULL ? "" : chptr->topic);
196 }
197
198 return 0;
199}