1cd2433b256666794bfbc8283a5e2947cee9f902
[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 #include "config.h"
83
84 #if 0
85 /*
86  * No need to include handlers.h here the signatures must match
87  * and we don't need to force a rebuild of all the handlers everytime
88  * we add a new one to the list. --Bleep
89  */
90 #include "handlers.h"
91 #endif /* 0 */
92 #include "channel.h"
93 #include "client.h"
94 #include "hash.h"
95 #include "ircd.h"
96 #include "ircd_reply.h"
97 #include "ircd_string.h"
98 #include "msg.h"
99 #include "numeric.h"
100 #include "numnicks.h"
101 #include "send.h"
102
103 #include <assert.h>
104
105 static void do_settopic(struct Client *sptr, struct Client *cptr, 
106                         struct Channel *chptr,char *topic)
107 {
108    int newtopic;
109    /* if +n and not @'d, return an error and ignore the topic */
110    if ((chptr->mode.mode & MODE_TOPICLIMIT) != 0 && !is_chan_op(sptr, chptr)) 
111    {
112       send_reply(sptr, ERR_CHANOPRIVSNEEDED, chptr->chname);
113       return;
114    }
115    /* Note if this is just a refresh of an old topic, and don't
116     * send it to all the clients to save bandwidth.  We still send
117     * it to other servers as they may have split and lost the topic.
118     */
119    newtopic=ircd_strncmp(chptr->topic,topic,TOPICLEN)!=0;
120    /* setting a topic */
121    ircd_strncpy(chptr->topic, topic, TOPICLEN);
122    ircd_strncpy(chptr->topic_nick, cli_name(sptr), NICKLEN);
123    chptr->topic_time = CurrentTime;
124    /* Fixed in 2.10.11: Don't propergate local topics */
125    if (!IsLocalChannel(chptr->chname))
126      sendcmdto_serv_butone(sptr, CMD_TOPIC, cptr, "%H :%s", chptr,
127                            chptr->topic);
128    if (newtopic)
129       sendcmdto_channel_butserv(sptr, CMD_TOPIC, chptr, "%H :%s", chptr,
130                                   chptr->topic);
131       /* if this is the same topic as before we send it to the person that
132        * set it (so they knew it went through ok), but don't bother sending
133        * it to everyone else on the channel to save bandwidth
134        */
135     else if (MyUser(sptr))
136       sendcmdto_one(sptr, CMD_TOPIC, sptr, "%H :%s", chptr, chptr->topic);      
137 }
138
139 /*
140  * m_topic - generic message handler
141  *
142  * parv[0]        = sender prefix
143  * parv[1]        = channel
144  * parv[parc - 1] = topic (if parc > 2)
145  */
146 int m_topic(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
147 {
148   struct Channel *chptr;
149   char *topic = 0, *name, *p = 0;
150
151   if (parc < 2)
152     return need_more_params(sptr, "TOPIC");
153
154   if (parc > 2)
155     topic = parv[parc - 1];
156
157   for (; (name = ircd_strtok(&p, parv[1], ",")); parv[1] = 0)
158   {
159     chptr = 0;
160     /* Does the channel exist */
161     if (!IsChannelName(name) || !(chptr = FindChannel(name)))
162     {
163         send_reply(sptr,ERR_NOSUCHCHANNEL,name);
164         continue;
165     }
166     /* Trying to check a topic outside a secret channel */
167     if ((topic || SecretChannel(chptr)) && !find_channel_member(sptr, chptr))
168     {
169       send_reply(sptr, ERR_NOTONCHANNEL, chptr->chname);
170       continue;
171     }
172     /* Modeless Channels don't have topics */
173     if (IsModelessChannel(name))
174     {
175       send_reply(sptr, ERR_CHANOPRIVSNEEDED, chptr->chname);
176       continue;
177     }
178
179     if (!topic)                 /* only asking for topic */
180     {
181       if (chptr->topic[0] == '\0')
182         send_reply(sptr, RPL_NOTOPIC, chptr->chname);
183       else
184       {
185         send_reply(sptr, RPL_TOPIC, chptr->chname, chptr->topic);
186         send_reply(sptr, RPL_TOPICWHOTIME, chptr->chname, chptr->topic_nick,
187                    chptr->topic_time);
188       }
189     }
190     else 
191      do_settopic(sptr,cptr,chptr,topic);
192   }
193   return 0;
194 }
195
196 /*
197  * ms_topic - generic message handler
198  *
199  * parv[0]        = sender prefix
200  * parv[1]        = channel
201  * parv[parc - 1] = topic
202  */
203 int ms_topic(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
204 {
205   struct Channel *chptr;
206   char *topic = 0, *name, *p = 0;
207
208   if (parc < 3)
209     return need_more_params(sptr, "TOPIC");
210
211   topic = parv[parc - 1];
212
213   for (; (name = ircd_strtok(&p, parv[1], ",")); parv[1] = 0)
214   {
215     chptr = 0;
216     /* Does the channel exist */
217     if (!IsChannelName(name) || !(chptr = FindChannel(name)))
218     {
219         send_reply(sptr,ERR_NOSUCHCHANNEL,name);
220         continue;
221     }
222     /* Modeless Channels don't have topics */
223     if (IsModelessChannel(name))
224     {
225       protocol_violation(sptr,"Attempted to topic modeless channel");
226       send_reply(sptr, ERR_CHANOPRIVSNEEDED, chptr->chname);
227       continue;
228     }
229
230     /* Ignore requests for topics from remote servers */
231     if (IsLocalChannel(name) && !MyUser(sptr))
232     {
233       protocol_violation(sptr,"Topic request");
234       continue;
235     }
236
237     do_settopic(sptr,cptr,chptr,topic);
238   }
239   return 0;
240 }