ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/modules/m_topic.c
Revision: 5540
Committed: Thu Feb 12 13:27:29 2015 UTC (10 years, 6 months ago) by michael
Content type: text/x-csrc
File size: 6264 byte(s)
Log Message:
- m_topic.c: white space changes

File Contents

# Content
1 /*
2 * ircd-hybrid: an advanced, lightweight Internet Relay Chat Daemon (ircd)
3 *
4 * Copyright (c) 1997-2015 ircd-hybrid development team
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
19 * USA
20 */
21
22 /*! \file m_topic.c
23 * \brief Includes required functions for processing the TOPIC command.
24 * \version $Id$
25 */
26
27 #include "stdinc.h"
28 #include "list.h"
29 #include "channel.h"
30 #include "channel_mode.h"
31 #include "client.h"
32 #include "conf.h"
33 #include "hash.h"
34 #include "irc_string.h"
35 #include "ircd.h"
36 #include "numeric.h"
37 #include "send.h"
38 #include "parse.h"
39 #include "modules.h"
40 #include "packet.h"
41
42
43 /*! \brief TOPIC command handler
44 *
45 * \param source_p Pointer to allocated Client struct from which the message
46 * originally comes from. This can be a local or remote client.
47 * \param parc Integer holding the number of supplied arguments.
48 * \param parv Argument vector where parv[0] .. parv[parc-1] are non-NULL
49 * pointers.
50 * \note Valid arguments for this command are:
51 * - parv[0] = command
52 * - parv[1] = channel name
53 * - parv[2] = topic text, if setting topic
54 */
55 static int
56 m_topic(struct Client *source_p, int parc, char *parv[])
57 {
58 struct Channel *chptr = NULL;
59
60 if (EmptyString(parv[1]))
61 {
62 sendto_one_numeric(source_p, &me, ERR_NEEDMOREPARAMS, "TOPIC");
63 return 0;
64 }
65
66 if (!IsFloodDone(source_p))
67 flood_endgrace(source_p);
68
69 if ((chptr = hash_find_channel(parv[1])) == NULL)
70 {
71 sendto_one_numeric(source_p, &me, ERR_NOSUCHCHANNEL, parv[1]);
72 return 0;
73 }
74
75 /* setting topic */
76 if (parc > 2)
77 {
78 const struct Membership *member = NULL;
79
80 if ((member = find_channel_link(source_p, chptr)) == NULL)
81 {
82 sendto_one_numeric(source_p, &me, ERR_NOTONCHANNEL, chptr->name);
83 return 0;
84 }
85
86 if (!(chptr->mode.mode & MODE_TOPICLIMIT) ||
87 has_member_flags(member, CHFL_CHANOP|CHFL_HALFOP))
88 {
89 char topic_info[USERHOST_REPLYLEN];
90
91 snprintf(topic_info, sizeof(topic_info), "%s!%s@%s", source_p->name,
92 source_p->username, source_p->host);
93 channel_set_topic(chptr, parv[2], topic_info, CurrentTime, 1);
94
95 sendto_server(source_p, 0, 0, ":%s TOPIC %s :%s",
96 source_p->id, chptr->name,
97 chptr->topic);
98 sendto_channel_local(0, chptr, ":%s!%s@%s TOPIC %s :%s",
99 source_p->name,
100 source_p->username,
101 source_p->host,
102 chptr->name, chptr->topic);
103 }
104 else
105 sendto_one_numeric(source_p, &me, ERR_CHANOPRIVSNEEDED, chptr->name);
106 }
107 else /* only asking for topic */
108 {
109 if (!SecretChannel(chptr) || IsMember(source_p, chptr))
110 {
111 if (chptr->topic[0] == '\0')
112 sendto_one_numeric(source_p, &me, RPL_NOTOPIC, chptr->name);
113 else
114 {
115 sendto_one_numeric(source_p, &me, RPL_TOPIC,
116 chptr->name, chptr->topic);
117 sendto_one_numeric(source_p, &me, RPL_TOPICWHOTIME, chptr->name,
118 chptr->topic_info,
119 chptr->topic_time);
120 }
121 }
122 else
123 sendto_one_numeric(source_p, &me, ERR_NOTONCHANNEL, chptr->name);
124 }
125
126 return 0;
127 }
128
129
130 /*! \brief TOPIC command handler
131 *
132 * \param source_p Pointer to allocated Client struct from which the message
133 * originally comes from. This can be a local or remote client.
134 * \param parc Integer holding the number of supplied arguments.
135 * \param parv Argument vector where parv[0] .. parv[parc-1] are non-NULL
136 * pointers.
137 * \note Valid arguments for this command are:
138 * - parv[0] = command
139 * - parv[1] = channel name
140 * - parv[2] = topic text
141 */
142 static int
143 ms_topic(struct Client *source_p, int parc, char *parv[])
144 {
145 struct Channel *chptr = NULL;
146 char topic_info[USERHOST_REPLYLEN];
147
148 if (EmptyString(parv[1]))
149 {
150 sendto_one_numeric(source_p, &me, ERR_NEEDMOREPARAMS, "TOPIC");
151 return 0;
152 }
153
154 if ((chptr = hash_find_channel(parv[1])) == NULL)
155 {
156 sendto_one_numeric(source_p, &me, ERR_NOSUCHCHANNEL, parv[1]);
157 return 0;
158 }
159
160 if (!IsClient(source_p))
161 strlcpy(topic_info, source_p->name, sizeof(topic_info));
162 else
163 snprintf(topic_info, sizeof(topic_info), "%s!%s@%s", source_p->name,
164 source_p->username, source_p->host);
165 channel_set_topic(chptr, parv[2], topic_info, CurrentTime, 0);
166
167 sendto_server(source_p, 0, 0, ":%s TOPIC %s :%s",
168 source_p->id, chptr->name,
169 chptr->topic);
170
171 if (!IsClient(source_p))
172 sendto_channel_local(0, chptr, ":%s TOPIC %s :%s",
173 (IsHidden(source_p) || ConfigServerHide.hide_servers) ? me.name : source_p->name,
174 chptr->name, chptr->topic);
175
176 else
177 sendto_channel_local(0, chptr, ":%s!%s@%s TOPIC %s :%s",
178 source_p->name,
179 source_p->username,
180 source_p->host,
181 chptr->name, chptr->topic);
182 return 0;
183 }
184
185
186 static struct Message topic_msgtab =
187 {
188 "TOPIC", NULL, 0, 0, 2, MAXPARA, MFLG_SLOW, 0,
189 { m_unregistered, m_topic, ms_topic, m_ignore, m_topic, m_ignore }
190 };
191
192 static void
193 module_init(void)
194 {
195 mod_add_cmd(&topic_msgtab);
196 }
197
198 static void
199 module_exit(void)
200 {
201 mod_del_cmd(&topic_msgtab);
202 }
203
204 struct module module_entry =
205 {
206 .node = { NULL, NULL, NULL },
207 .name = NULL,
208 .version = "$Revision$",
209 .handle = NULL,
210 .modinit = module_init,
211 .modexit = module_exit,
212 .flags = 0
213 };

Properties

Name Value
svn:eol-style native
svn:keywords Id Revision