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