]> jfr.im git - irc/rqf/shadowircd.git/blame - modules/m_tb.c
Update TODO
[irc/rqf/shadowircd.git] / modules / m_tb.c
CommitLineData
212380e3 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 * $Id: m_tb.c 1349 2006-05-17 17:37:46Z jilles $
31 */
32
33#include "stdinc.h"
212380e3 34#include "send.h"
35#include "channel.h"
36#include "client.h"
37#include "common.h"
38#include "config.h"
39#include "ircd.h"
13ae2f4b 40#include "match.h"
212380e3 41#include "s_conf.h"
42#include "msg.h"
43#include "modules.h"
44#include "hash.h"
45#include "s_serv.h"
46
47static int ms_tb(struct Client *client_p, struct Client *source_p, int parc, const char *parv[]);
48
49struct 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
54mapi_clist_av1 tb_clist[] = { &tb_msgtab, NULL };
55DECLARE_MODULE_AV1(tb, NULL, NULL, tb_clist, NULL, NULL, "$Revision: 1349 $");
56
57/* m_tb()
58 *
59 * parv[1] - channel
60 * parv[2] - topic ts
61 * parv[3] - optional topicwho/topic
62 * parv[4] - topic
63 */
64static int
65ms_tb(struct Client *client_p, struct Client *source_p, int parc, const char *parv[])
66{
67 struct Channel *chptr;
68 const char *newtopic;
69 const char *newtopicwho;
70 time_t newtopicts;
71 struct Client *fakesource_p;
72
73 chptr = find_channel(parv[1]);
74
75 if(chptr == NULL)
76 return 0;
77
78 newtopicts = atol(parv[2]);
79
80 /* Hide connecting server on netburst -- jilles */
81 if (ConfigServerHide.flatten_links && !HasSentEob(source_p))
82 fakesource_p = &me;
83 else
84 fakesource_p = source_p;
85
86 if(parc == 5)
87 {
88 newtopic = parv[4];
89 newtopicwho = parv[3];
90 }
91 else
92 {
93 newtopic = parv[3];
94 newtopicwho = fakesource_p->name;
95 }
96
97 if (EmptyString(newtopic))
98 return 0;
99
100 if(chptr->topic == NULL || chptr->topic_time > newtopicts)
101 {
102 /* its possible the topicts is a few seconds out on some
103 * servers, due to lag when propagating it, so if theyre the
104 * same topic just drop the message --fl
105 */
106 if(chptr->topic != NULL && strcmp(chptr->topic, newtopic) == 0)
107 return 0;
108
109 set_channel_topic(chptr, newtopic, newtopicwho, newtopicts);
110 sendto_channel_local(ALL_MEMBERS, chptr, ":%s TOPIC %s :%s",
111 fakesource_p->name, chptr->chname, newtopic);
112 sendto_server(client_p, chptr, CAP_TB|CAP_TS6, NOCAPS,
113 ":%s TB %s %ld %s%s:%s",
114 use_id(source_p), chptr->chname, (long) chptr->topic_time,
115 ConfigChannel.burst_topicwho ? chptr->topic_info : "",
116 ConfigChannel.burst_topicwho ? " " : "", chptr->topic);
212380e3 117 }
118
119 return 0;
120}