2d963d59fde98876fbbc85603efa8b5a0ae8db00
[ircu2.10.12-pk.git] / ircd / m_topic.c
1 /*
2  * IRC - Internet Relay Chat, ircd/m_topic.c
3  * Copyright (C) 1990 Jarkko Oikarinen and
4  *                    University of Oulu, Computing Center
5  *
6  * See file AUTHORS in IRC package for additional names of
7  * the programmers.
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 1, or (at your option)
12  * 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., 675 Mass Ave, Cambridge, MA 02139, USA.
22  *
23  * $Id$
24  */
25
26 /*
27  * m_functions execute protocol messages on this server:
28  *
29  *    cptr    is always NON-NULL, pointing to a *LOCAL* client
30  *            structure (with an open socket connected!). This
31  *            identifies the physical socket where the message
32  *            originated (or which caused the m_function to be
33  *            executed--some m_functions may call others...).
34  *
35  *    sptr    is the source of the message, defined by the
36  *            prefix part of the message if present. If not
37  *            or prefix not found, then sptr==cptr.
38  *
39  *            (!IsServer(cptr)) => (cptr == sptr), because
40  *            prefixes are taken *only* from servers...
41  *
42  *            (IsServer(cptr))
43  *                    (sptr == cptr) => the message didn't
44  *                    have the prefix.
45  *
46  *                    (sptr != cptr && IsServer(sptr) means
47  *                    the prefix specified servername. (?)
48  *
49  *                    (sptr != cptr && !IsServer(sptr) means
50  *                    that message originated from a remote
51  *                    user (not local).
52  *
53  *            combining
54  *
55  *            (!IsServer(sptr)) means that, sptr can safely
56  *            taken as defining the target structure of the
57  *            message in this server.
58  *
59  *    *Always* true (if 'parse' and others are working correct):
60  *
61  *    1)      sptr->from == cptr  (note: cptr->from == cptr)
62  *
63  *    2)      MyConnect(sptr) <=> sptr == cptr (e.g. sptr
64  *            *cannot* be a local connection, unless it's
65  *            actually cptr!). [MyConnect(x) should probably
66  *            be defined as (x == x->from) --msa ]
67  *
68  *    parc    number of variable parameter strings (if zero,
69  *            parv is allowed to be NULL)
70  *
71  *    parv    a NULL terminated list of parameter pointers,
72  *
73  *                    parv[0], sender (prefix string), if not present
74  *                            this points to an empty string.
75  *                    parv[1]...parv[parc-1]
76  *                            pointers to additional parameters
77  *                    parv[parc] == NULL, *always*
78  *
79  *            note:   it is guaranteed that parv[0]..parv[parc-1] are all
80  *                    non-NULL pointers.
81  */
82 #if 0
83 /*
84  * No need to include handlers.h here the signatures must match
85  * and we don't need to force a rebuild of all the handlers everytime
86  * we add a new one to the list. --Bleep
87  */
88 #include "handlers.h"
89 #endif /* 0 */
90 #include "channel.h"
91 #include "client.h"
92 #include "hash.h"
93 #include "ircd.h"
94 #include "ircd_reply.h"
95 #include "ircd_string.h"
96 #include "msg.h"
97 #include "numeric.h"
98 #include "numnicks.h"
99 #include "send.h"
100
101 #include <assert.h>
102
103 /*
104  * m_topic - generic message handler
105  *
106  * parv[0]        = sender prefix
107  * parv[1]        = channel
108  * parv[parc - 1] = topic (if parc > 2)
109  */
110 int m_topic(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
111 {
112   struct Channel *chptr;
113   char *topic = 0, *name, *p = 0;
114
115   if (parc < 2)
116     return need_more_params(sptr, "TOPIC");
117
118   if (parc > 2)
119     topic = parv[parc - 1];
120
121   for (; (name = ircd_strtok(&p, parv[1], ",")); parv[1] = 0)
122   {
123     chptr = 0;
124     if (!IsChannelName(name) || !(chptr = FindChannel(name)) ||
125         ((topic || SecretChannel(chptr)) && !find_channel_member(sptr, chptr)))
126     {
127       send_reply(sptr, (chptr ? ERR_NOTONCHANNEL : ERR_NOSUCHCHANNEL),
128                  chptr ? chptr->chname : name);
129       continue;
130     }
131     if (IsModelessChannel(name))
132     {
133       send_reply(sptr, ERR_CHANOPRIVSNEEDED, chptr->chname);
134       continue;
135     }
136     if (IsLocalChannel(name) && !MyUser(sptr))
137       continue;
138
139     if (!topic)                 /* only asking  for topic  */
140     {
141       if (chptr->topic[0] == '\0')
142         send_reply(sptr, RPL_NOTOPIC, chptr->chname);
143       else
144       {
145         send_reply(sptr, RPL_TOPIC, chptr->chname, chptr->topic);
146         send_reply(sptr, RPL_TOPICWHOTIME, chptr->chname, chptr->topic_nick,
147                    chptr->topic_time);
148       }
149     }
150     else if (((chptr->mode.mode & MODE_TOPICLIMIT) == 0 ||
151         is_chan_op(sptr, chptr)) && topic)
152     {
153       /* setting a topic */
154       ircd_strncpy(chptr->topic, topic, TOPICLEN);
155       ircd_strncpy(chptr->topic_nick, sptr->name, NICKLEN);
156       chptr->topic_time = CurrentTime;
157       sendcmdto_serv_butone(sptr, CMD_TOPIC, cptr, "%H :%s", chptr,
158                             chptr->topic);
159       sendcmdto_channel_butserv(sptr, CMD_TOPIC, chptr, "%H :%s", chptr,
160                                 chptr->topic);
161     }
162     else
163       send_reply(sptr, ERR_CHANOPRIVSNEEDED, chptr->chname);
164   }
165   return 0;
166 }
167
168 /*
169  * ms_topic - server message handler
170  *
171  * parv[0]        = sender prefix
172  * parv[1]        = channel
173  * parv[parc - 1] = topic (if parc > 2)
174  */
175 int ms_topic(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
176 {
177   struct Channel *chptr;
178   char *topic = 0, *name, *p = 0;
179
180   if (parc < 2)
181     return need_more_params(sptr, "TOPIC");
182
183   if (parc > 2)
184     topic = parv[parc - 1];
185
186   for (; (name = ircd_strtok(&p, parv[1], ",")); parv[1] = 0)
187   {
188     chptr = 0;
189     if (!IsChannelName(name) || !(chptr = FindChannel(name)) ||
190         ((topic || SecretChannel(chptr)) && !find_channel_member(sptr, chptr)))
191     {
192       send_reply(sptr, (chptr ? ERR_NOTONCHANNEL : ERR_NOSUCHCHANNEL),
193                  chptr ? chptr->chname : name);
194       continue;
195     }
196     if (IsModelessChannel(name))
197     {
198       send_reply(sptr, ERR_CHANOPRIVSNEEDED, chptr->chname);
199       continue;
200     }
201     if (IsLocalChannel(name) && !MyUser(sptr))
202       continue;
203
204     if (!topic)                 /* only asking  for topic  */
205     {
206       if (chptr->topic[0] == '\0')
207         send_reply(sptr, RPL_NOTOPIC, chptr->chname);
208       else
209       {
210         send_reply(sptr, RPL_TOPIC, chptr->chname, chptr->topic);
211         send_reply(sptr, RPL_TOPICWHOTIME, chptr->chname, chptr->topic_nick,
212                    chptr->topic_time);
213       }
214     }
215     else if (((chptr->mode.mode & MODE_TOPICLIMIT) == 0 ||
216         is_chan_op(sptr, chptr)) && topic)
217     {
218       /* setting a topic */
219       ircd_strncpy(chptr->topic, topic, TOPICLEN);
220       ircd_strncpy(chptr->topic_nick, sptr->name, NICKLEN);
221       chptr->topic_time = CurrentTime;
222       sendcmdto_serv_butone(sptr, CMD_TOPIC, cptr, "%H :%s", chptr,
223                             chptr->topic);
224       sendcmdto_channel_butserv(sptr, CMD_TOPIC, chptr, "%H :%s", chptr,
225                                 chptr->topic);
226     }
227     else
228       send_reply(sptr, ERR_CHANOPRIVSNEEDED, chptr->chname);
229   }
230   return 0;
231 }
232
233
234 #if 0
235 /*
236  * m_topic
237  *
238  * parv[0]        = sender prefix
239  * parv[1]        = channel
240  * parv[parc - 1] = topic (if parc > 2)
241  */
242 int m_topic(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
243 {
244   struct Channel *chptr;
245   char *topic = 0, *name, *p = 0;
246
247   if (parc < 2)
248     return need_more_params(sptr, "TOPIC");
249
250   if (parc > 2)
251     topic = parv[parc - 1];
252
253   for (; (name = ircd_strtok(&p, parv[1], ",")); parv[1] = 0)
254   {
255     chptr = 0;
256     if (!IsChannelName(name) || !(chptr = FindChannel(name)) ||
257         ((topic || SecretChannel(chptr)) && !find_channel_member(sptr, chptr)))
258     {
259       sendto_one(sptr, err_str(chptr ? ERR_NOTONCHANNEL : ERR_NOSUCHCHANNEL), /* XXX DEAD */
260           me.name, parv[0], chptr ? chptr->chname : name);
261       continue;
262     }
263     if (IsModelessChannel(name))
264     {
265       sendto_one(sptr, err_str(ERR_CHANOPRIVSNEEDED), me.name, parv[0], /* XXX DEAD */
266           chptr->chname);
267       continue;
268     }
269     if (IsLocalChannel(name) && !MyUser(sptr))
270       continue;
271
272     if (!topic)                 /* only asking  for topic  */
273     {
274       if (chptr->topic[0] == '\0')
275         sendto_one(sptr, rpl_str(RPL_NOTOPIC), me.name, parv[0], chptr->chname); /* XXX DEAD */
276       else
277       {
278         sendto_one(sptr, rpl_str(RPL_TOPIC), /* XXX DEAD */
279             me.name, parv[0], chptr->chname, chptr->topic);
280         sendto_one(sptr, rpl_str(RPL_TOPICWHOTIME), /* XXX DEAD */
281             me.name, parv[0], chptr->chname,
282             chptr->topic_nick, chptr->topic_time);
283       }
284     }
285     else if (((chptr->mode.mode & MODE_TOPICLIMIT) == 0 ||
286         is_chan_op(sptr, chptr)) && topic)
287     {
288       /* setting a topic */
289       ircd_strncpy(chptr->topic, topic, TOPICLEN);
290       ircd_strncpy(chptr->topic_nick, sptr->name, NICKLEN);
291       chptr->topic_time = CurrentTime;
292       sendto_serv_butone(cptr, "%s%s " TOK_TOPIC " %s :%s", /* XXX DEAD */
293           NumNick(sptr), chptr->chname, chptr->topic);
294       sendto_channel_butserv(chptr, sptr, ":%s TOPIC %s :%s", /* XXX DEAD */
295           parv[0], chptr->chname, chptr->topic);
296     }
297     else
298       sendto_one(sptr, err_str(ERR_CHANOPRIVSNEEDED), /* XXX DEAD */
299           me.name, parv[0], chptr->chname);
300   }
301   return 0;
302 }
303 #endif /* 0 */
304