]> arthur.barton.de Git - ngircd-alex.git/blob - src/ngircd/irc-op.c
Allow KICK to handle comma-delimited lists (of channels, nicks).
[ngircd-alex.git] / src / ngircd / irc-op.c
1 /*
2  * ngIRCd -- The Next Generation IRC Daemon
3  * Copyright (c)2001-2005 by Alexander Barton (alex@barton.de)
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  * Please read the file COPYING, README and AUTHORS for more information.
10  *
11  * Channel operator commands
12  */
13
14
15 #include "portab.h"
16
17 #include "imp.h"
18 #include <assert.h>
19 #include <string.h>
20 #include <stdio.h>
21
22 #include "defines.h"
23 #include "conn.h"
24 #include "client.h"
25 #include "channel.h"
26 #include "irc-write.h"
27 #include "lists.h"
28 #include "log.h"
29 #include "messages.h"
30 #include "parse.h"
31
32 #include "exp.h"
33 #include "irc-op.h"
34
35
36 static bool
37 try_kick(CLIENT* from, const char *nick, const char *channel, const char *reason)
38 {
39         CLIENT *target = Client_Search(nick);
40
41         if (!target)
42                 return IRC_WriteStrClient(from, ERR_NOSUCHNICK_MSG, Client_ID(from), nick);
43
44         Channel_Kick(target, from, channel, reason);
45         return true;
46 }
47
48
49 GLOBAL bool
50 IRC_KICK(CLIENT *Client, REQUEST *Req)
51 {
52         CLIENT *from;
53         char *itemList = Req->argv[0];
54         const char* currentNick, *currentChannel, *reason;
55         unsigned int channelCount = 1;
56         unsigned int nickCount = 1;
57
58         assert( Client != NULL );
59         assert( Req != NULL );
60
61         if ((Req->argc < 2) || (Req->argc > 3))
62                 return IRC_WriteStrClient(Client, ERR_NEEDMOREPARAMS_MSG,
63                                         Client_ID(Client), Req->command);
64
65         while (*itemList) {
66                 if (*itemList == ',') {
67                         *itemList = '\0';
68                         channelCount++;
69                 }
70                 itemList++;
71         }
72
73         itemList = Req->argv[1];
74         while (*itemList) {
75                 if (*itemList == ',') {
76                         *itemList = '\0';
77                         nickCount++;
78                 }
79                 itemList++;
80         }
81
82         if (Client_Type(Client) == CLIENT_SERVER)
83                 from = Client_Search(Req->prefix);
84         else
85                 from = Client;
86
87         if (!from)
88                 return IRC_WriteStrClient(Client, ERR_NOSUCHNICK_MSG,
89                                         Client_ID(Client), Req->prefix);
90
91         reason = Req->argc == 3 ? Req->argv[2] : Client_ID(from);
92         currentNick = Req->argv[1];
93         currentChannel = Req->argv[0];
94         if (channelCount == 1) {
95                 while (nickCount > 0) {
96                         if (!try_kick(from, currentNick, currentChannel, reason))
97                                 return false;
98
99                         while (*currentNick)
100                                 currentNick++;
101
102                         currentNick++;
103                         nickCount--;
104                 }
105         } else if (channelCount == nickCount) {
106                 while (nickCount > 0) {
107                         if (!try_kick(from, currentNick, currentChannel, reason))
108                                 return false;
109
110                         while (*currentNick)
111                                 currentNick++;
112
113                         while (*currentChannel)
114                                 currentChannel++;
115
116                         currentNick++;
117                         currentChannel++;
118                         nickCount--;
119                 }
120         } else {
121                 return IRC_WriteStrClient(Client, ERR_NEEDMOREPARAMS_MSG,
122                                         Client_ID(Client), Req->command);
123         }
124         return true;
125 } /* IRC_KICK */
126
127
128 GLOBAL bool
129 IRC_INVITE(CLIENT *Client, REQUEST *Req)
130 {
131         CHANNEL *chan;
132         CLIENT *target, *from;
133         bool remember = false;
134
135         assert( Client != NULL );
136         assert( Req != NULL );
137
138         if (Req->argc != 2)
139                 return IRC_WriteStrClient(Client, ERR_NEEDMOREPARAMS_MSG,
140                                         Client_ID(Client), Req->command);
141
142         if (Client_Type(Client) == CLIENT_SERVER)
143                 from = Client_Search(Req->prefix);
144         else
145                 from = Client;
146         if (!from)
147                 return IRC_WriteStrClient(Client, ERR_NOSUCHNICK_MSG,
148                                         Client_ID(Client), Req->prefix);
149
150         /* Search user */
151         target = Client_Search(Req->argv[0]);
152         if (!target || (Client_Type(target) != CLIENT_USER))
153                 return IRC_WriteStrClient(from, ERR_NOSUCHNICK_MSG,
154                                 Client_ID(Client), Req->argv[0]);
155
156         chan = Channel_Search(Req->argv[1]);
157         if (chan) {
158                 /* Channel exists. Is the user a valid member of the channel? */
159                 if (!Channel_IsMemberOf(chan, from))
160                         return IRC_WriteStrClient(from, ERR_NOTONCHANNEL_MSG, Client_ID(Client), Req->argv[1]);
161
162                 /* Is the channel "invite-only"? */
163                 if (strchr(Channel_Modes(chan), 'i')) {
164                         /* Yes. The user must be channel operator! */
165                         if (!strchr(Channel_UserModes(chan, from), 'o'))
166                                 return IRC_WriteStrClient(from, ERR_CHANOPRIVSNEEDED_MSG,
167                                                 Client_ID(from), Channel_Name(chan));
168                         remember = true;
169                 }
170
171                 /* Is the target user already member of the channel? */
172                 if (Channel_IsMemberOf(chan, target))
173                         return IRC_WriteStrClient(from, ERR_USERONCHANNEL_MSG,
174                                         Client_ID(from), Req->argv[0], Req->argv[1]);
175
176                 /* If the target user is banned on that channel: remember invite */
177                 if (Lists_Check(Channel_GetListBans(chan), target))
178                         remember = true;
179
180                 if (remember) {
181                         /* We must remember this invite */
182                         if (!Channel_AddInvite(chan, Client_Mask(target), true))
183                                 return CONNECTED;
184                 }
185         }
186
187         LogDebug("User \"%s\" invites \"%s\" to \"%s\" ...", Client_Mask(from), Req->argv[0], Req->argv[1]);
188
189         /* Inform target client */
190         IRC_WriteStrClientPrefix(target, from, "INVITE %s %s", Req->argv[0], Req->argv[1]);
191
192         if (Client_Conn(target) > NONE) {
193                 /* The target user is local, so we have to send the status code */
194                 if (!IRC_WriteStrClientPrefix(from, target, RPL_INVITING_MSG,
195                                 Client_ID(from), Req->argv[0], Req->argv[1]))
196                         return DISCONNECTED;
197
198                 if (strchr(Client_Modes(target), 'a') &&
199                         !IRC_WriteStrClient(from, RPL_AWAY_MSG, Client_ID(from),
200                                         Client_ID(target), Client_Away(target)))
201                                 return DISCONNECTED;
202         }
203         return CONNECTED;
204 } /* IRC_INVITE */
205
206
207 /* -eof- */