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