a54f92ab7971f71a51099881e89a38ea9778a74d
[NeonServV5.git] / src / cmd_neonserv_voiceall.c
1 /* cmd_neonserv_voiceall.c - NeonServ v5.1
2  * Copyright (C) 2011  Philipp Kreil (pk910)
3  * 
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  * 
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  * 
14  * You should have received a copy of the GNU General Public License 
15  * along with this program. If not, see <http://www.gnu.org/licenses/>. 
16  */
17
18 #include "cmd_neonserv.h"
19
20 /*
21 * argv[0]    (optional) nick mask
22 */
23 static USERLIST_CALLBACK(neonserv_cmd_voiceall_userlist_lookup);
24 static void neonserv_cmd_voiceall_async1(struct ClientSocket *client, struct ClientSocket *textclient, struct UserNode *user, struct ChanNode *chan, struct Event *event, char *nickmask);
25
26 struct neonserv_cmd_voiceall_cache {
27     struct ClientSocket *client, *textclient;
28     struct UserNode *user;
29     struct Event *event;
30     char *nickmask;
31 };
32
33 CMD_BIND(neonserv_cmd_voiceall) {
34     struct neonserv_cmd_voiceall_cache *cache = malloc(sizeof(*cache));
35     if (!cache) {
36         perror("malloc() failed");
37         return;
38     }
39     cache->client = client;
40     cache->textclient = getTextBot();
41     cache->user = user;
42     cache->event = event;
43     if(argc > 0) {
44         cache->nickmask = strdup(argv[0]);
45     } else
46         cache->nickmask = NULL;
47     get_userlist_if_invisible(chan, neonserv_cmd_voiceall_userlist_lookup, cache);
48 }
49
50 static USERLIST_CALLBACK(neonserv_cmd_voiceall_userlist_lookup) {
51     struct neonserv_cmd_voiceall_cache *cache = data;
52     neonserv_cmd_voiceall_async1(cache->client, cache->textclient, cache->user, chan, cache->event, cache->nickmask);
53     if(cache->nickmask)
54         free(cache->nickmask);
55     free(cache);
56 }
57
58 static void neonserv_cmd_voiceall_async1(struct ClientSocket *client, struct ClientSocket *textclient, struct UserNode *user, struct ChanNode *chan, struct Event *event, char *nickmask) {
59     int done_users = 0;
60     struct ChanUser *chanuser;
61     struct ModeBuffer *modeBuf;
62     modeBuf = initModeBuffer(client, chan);
63     for(chanuser = getChannelUsers(chan, NULL); chanuser; chanuser = getChannelUsers(chan, chanuser)) {
64         if(nickmask && match(nickmask, chanuser->user->nick)) continue;
65         if(chanuser->flags & CHANUSERFLAG_VOICED) continue;
66         modeBufferVoice(modeBuf, chanuser->user->nick);
67         done_users++;
68     }
69     freeModeBuffer(modeBuf);
70     reply(textclient, user, "NS_VOICEALL_DONE", done_users, chan->name);
71     if(done_users)
72         logEvent(event);
73 }