]> jfr.im git - irc/rqf/shadowircd.git/blob - modules/m_tb.c
Removal of ancient SVN ID's part one
[irc/rqf/shadowircd.git] / modules / m_tb.c
1 /* modules/m_tb.c
2 *
3 * Copyright (C) 2003 Lee Hardy <lee@leeh.co.uk>
4 * Copyright (C) 2003-2005 ircd-ratbox development team
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met:
9 *
10 * 1.Redistributions of source code must retain the above copyright notice,
11 * this list of conditions and the following disclaimer.
12 * 2.Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3.The name of the author may not be used to endorse or promote products
16 * derived from this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
22 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
26 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
27 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGE.
29 *
30 */
31
32 #include "stdinc.h"
33 #include "send.h"
34 #include "channel.h"
35 #include "client.h"
36 #include "common.h"
37 #include "config.h"
38 #include "ircd.h"
39 #include "match.h"
40 #include "s_conf.h"
41 #include "msg.h"
42 #include "modules.h"
43 #include "hash.h"
44 #include "s_serv.h"
45
46 static int ms_tb(struct Client *client_p, struct Client *source_p, int parc, const char *parv[]);
47 static int ms_etb(struct Client *client_p, struct Client *source_p, int parc, const char *parv[]);
48
49 struct Message tb_msgtab = {
50 "TB", 0, 0, 0, MFLG_SLOW,
51 {mg_unreg, mg_ignore, mg_ignore, {ms_tb, 4}, mg_ignore, mg_ignore}
52 };
53
54 struct Message etb_msgtab = {
55 "ETB", 0, 0, 0, MFLG_SLOW,
56 {mg_unreg, mg_ignore, {ms_etb, 5}, {ms_etb, 5}, mg_ignore, mg_ignore}
57 };
58
59 mapi_clist_av1 tb_clist[] = { &tb_msgtab, &etb_msgtab, NULL };
60 DECLARE_MODULE_AV1(tb, NULL, NULL, tb_clist, NULL, NULL, "$Revision: 1349 $");
61
62 /* m_tb()
63 *
64 * parv[1] - channel
65 * parv[2] - topic ts
66 * parv[3] - optional topicwho/topic
67 * parv[4] - topic
68 */
69 static int
70 ms_tb(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
71 {
72 struct Channel *chptr;
73 const char *newtopic;
74 const char *newtopicwho;
75 time_t newtopicts;
76 struct Client *fakesource_p;
77
78 chptr = find_channel(parv[1]);
79
80 if(chptr == NULL)
81 return 0;
82
83 newtopicts = atol(parv[2]);
84
85 /* Hide connecting server on netburst -- jilles */
86 if (ConfigServerHide.flatten_links && !HasSentEob(source_p))
87 fakesource_p = &me;
88 else
89 fakesource_p = source_p;
90
91 if(parc == 5)
92 {
93 newtopic = parv[4];
94 newtopicwho = parv[3];
95 }
96 else
97 {
98 newtopic = parv[3];
99 newtopicwho = fakesource_p->name;
100 }
101
102 if (EmptyString(newtopic))
103 return 0;
104
105 if(chptr->topic == NULL || chptr->topic_time > newtopicts)
106 {
107 /* its possible the topicts is a few seconds out on some
108 * servers, due to lag when propagating it, so if theyre the
109 * same topic just drop the message --fl
110 */
111 if(chptr->topic != NULL && strcmp(chptr->topic, newtopic) == 0)
112 return 0;
113
114 set_channel_topic(chptr, newtopic, newtopicwho, newtopicts);
115 sendto_channel_local(ALL_MEMBERS, chptr, ":%s TOPIC %s :%s",
116 fakesource_p->name, chptr->chname, newtopic);
117 sendto_server(client_p, chptr, CAP_TB|CAP_TS6, NOCAPS,
118 ":%s TB %s %ld %s%s:%s",
119 use_id(source_p), chptr->chname, (long) chptr->topic_time,
120 ConfigChannel.burst_topicwho ? chptr->topic_info : "",
121 ConfigChannel.burst_topicwho ? " " : "", chptr->topic);
122 }
123
124 return 0;
125 }
126
127 /* ms_etb()
128 *
129 * parv[1] - channel ts
130 * parv[2] - channel
131 * parv[3] - topic ts
132 * parv[4] - topicwho
133 * parv[5] - topic
134 */
135 static int
136 ms_etb(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
137 {
138 struct Channel *chptr;
139 const char *newtopic;
140 const char *newtopicwho;
141 time_t channelts, newtopicts;
142 struct Client *fakesource_p, *source_server_p;
143 int textchange, can_use_tb, member;
144
145 channelts = atol(parv[1]);
146 chptr = find_channel(parv[2]);
147
148 if(chptr == NULL)
149 return 0;
150
151 newtopicts = atol(parv[3]);
152
153 /* Hide connecting server on netburst -- jilles */
154 if (IsServer(source_p) && ConfigServerHide.flatten_links &&
155 !HasSentEob(source_p))
156 fakesource_p = &me;
157 else
158 fakesource_p = source_p;
159
160 newtopicwho = parv[4];
161 newtopic = parv[parc - 1];
162
163 if(chptr->topic == NULL || chptr->channelts > channelts ||
164 (chptr->channelts == channelts && chptr->topic_time < newtopicts))
165 {
166 textchange = chptr->topic == NULL || strcmp(chptr->topic, newtopic);
167 can_use_tb = textchange && !EmptyString(newtopic) &&
168 (chptr->topic == NULL || chptr->topic_time > newtopicts);
169
170 set_channel_topic(chptr, newtopic, newtopicwho, newtopicts);
171 newtopic = chptr->topic ? chptr->topic : "";
172 if (chptr->topic_info)
173 newtopicwho = chptr->topic_info;
174
175 /* Do not send a textually identical topic to clients,
176 * but do propagate the new topicts/topicwho to servers.
177 */
178 if(textchange)
179 {
180 if (IsPerson(fakesource_p))
181 sendto_channel_local(ALL_MEMBERS, chptr,
182 ":%s!%s@%s TOPIC %s :%s",
183 fakesource_p->name,
184 fakesource_p->username,
185 fakesource_p->host,
186 chptr->chname,
187 newtopic);
188 else
189 sendto_channel_local(ALL_MEMBERS, chptr,
190 ":%s TOPIC %s :%s",
191 fakesource_p->name,
192 chptr->chname, newtopic);
193 }
194 /* Propagate channelts as given, because an older channelts
195 * forces any change.
196 */
197 sendto_server(client_p, chptr, CAP_EOPMOD|CAP_TS6, NOCAPS,
198 ":%s ETB %ld %s %ld %s :%s",
199 use_id(source_p), (long)channelts, chptr->chname,
200 (long)newtopicts, newtopicwho, newtopic);
201 source_server_p = IsServer(source_p) ? source_p : source_p->servptr;
202 if (can_use_tb)
203 sendto_server(client_p, chptr, CAP_TB|CAP_TS6, CAP_EOPMOD,
204 ":%s TB %s %ld %s :%s",
205 use_id(source_server_p),
206 chptr->chname, (long)newtopicts,
207 newtopicwho, newtopic);
208 else if (IsPerson(source_p) && textchange)
209 {
210 member = IsMember(source_p, chptr);
211 if (!member)
212 sendto_server(client_p, chptr, CAP_TS6, CAP_EOPMOD,
213 ":%s SJOIN %ld %s + :@%s",
214 use_id(source_server_p),
215 (long)chptr->channelts,
216 chptr->chname, use_id(source_p));
217 if (EmptyString(newtopic) ||
218 newtopicts >= rb_current_time() - 60)
219 sendto_server(client_p, chptr, CAP_TS6, CAP_EOPMOD,
220 ":%s TOPIC %s :%s",
221 use_id(source_p),
222 chptr->chname, newtopic);
223 else
224 {
225 sendto_server(client_p, chptr, CAP_TS6, CAP_EOPMOD,
226 ":%s TOPIC %s :%s",
227 use_id(source_p),
228 chptr->chname, "");
229 sendto_server(client_p, chptr, CAP_TB|CAP_TS6, CAP_EOPMOD,
230 ":%s TB %s %ld %s :%s",
231 use_id(source_server_p),
232 chptr->chname, (long)newtopicts,
233 newtopicwho, newtopic);
234 }
235 if (!member)
236 sendto_server(client_p, chptr, CAP_TS6, CAP_EOPMOD,
237 ":%s PART %s :Topic set for %s",
238 use_id(source_p),
239 chptr->chname, newtopicwho);
240 }
241 else if (textchange)
242 {
243 /* Should not send :server ETB if not all servers
244 * support EOPMOD.
245 */
246 sendto_server(client_p, chptr, CAP_TS6, CAP_EOPMOD,
247 ":%s NOTICE %s :*** Notice -- Dropping topic change for %s",
248 me.id, chptr->chname, chptr->chname);
249 }
250 }
251
252 return 0;
253 }