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_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(sptr, CMD_TOPIC, chptr, "%H :%s", chptr,
122                                   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     /* Modeless Channels don't have topics */
165     if (IsModelessChannel(name))
166     {
167       send_reply(sptr, ERR_CHANOPRIVSNEEDED, chptr->chname);
168       continue;
169     }
170
171     if (!topic)                 /* only asking for topic */
172     {
173       if (chptr->topic[0] == '\0')
174         send_reply(sptr, RPL_NOTOPIC, chptr->chname);
175       else
176       {
177         send_reply(sptr, RPL_TOPIC, chptr->chname, chptr->topic);
178         send_reply(sptr, RPL_TOPICWHOTIME, chptr->chname, chptr->topic_nick,
179                    chptr->topic_time);
180       }
181     }
182     else 
183      do_settopic(sptr,cptr,chptr,topic);
184   }
185   return 0;
186 }
187
188 /*
189  * ms_topic - generic message handler
190  *
191  * parv[0]        = sender prefix
192  * parv[1]        = channel
193  * parv[parc - 1] = topic
194  */
195 int ms_topic(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
196 {
197   struct Channel *chptr;
198   char *topic = 0, *name, *p = 0;
199
200   if (parc < 3)
201     return need_more_params(sptr, "TOPIC");
202
203   topic = parv[parc - 1];
204
205   for (; (name = ircd_strtok(&p, parv[1], ",")); parv[1] = 0)
206   {
207     chptr = 0;
208     /* Does the channel exist */
209     if (!IsChannelName(name) || !(chptr = FindChannel(name)))
210     {
211         send_reply(sptr,ERR_NOSUCHCHANNEL,name);
212         continue;
213     }
214     /* Modeless Channels don't have topics */
215     if (IsModelessChannel(name))
216     {
217       protocol_violation(sptr,"Attempted to topic modeless channel");
218       send_reply(sptr, ERR_CHANOPRIVSNEEDED, chptr->chname);
219       continue;
220     }
221
222     /* Ignore requests for topics from remote servers */
223     if (IsLocalChannel(name) && !MyUser(sptr))
224     {
225       protocol_violation(sptr,"Topic request");
226       continue;
227     }
228
229     do_settopic(sptr,cptr,chptr,topic);
230   }
231   return 0;
232 }