*** VERSION 5.4.0 ***
[NeonServV5.git] / src / modules / NeonServ.mod / cmd_neonserv_downall.c
1 /* cmd_neonserv_downall.c - NeonServ v5.4
2  * Copyright (C) 2011-2012  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 * no arguments
22 */
23
24 CMD_BIND(neonserv_cmd_downall) {
25     struct ChanUser *chanuser;
26     int botid = client->botid;
27     for(chanuser = getUserChannels(user, NULL); chanuser; chanuser = getUserChannels(user, chanuser)) {
28         chan = chanuser->chan;
29         loadChannelSettings(chan);
30         if(!(chan->flags & CHANFLAG_CHAN_REGISTERED)) continue;
31         printf_mysql_query("SELECT `botid` FROM `bot_channels` LEFT JOIN `bots` ON `bot_channels`.`botid` = `bots`.`id` WHERE `chanid` = '%d' AND `botclass` = '%d'", chan->channel_id, client->botid);
32         if (mysql_fetch_row(mysql_use()) == NULL) continue;
33         int done = 0;
34         client = getChannelBot(chan, botid);
35         if(!client) continue;
36         if((chanuser->flags & CHANUSERFLAG_OPPED)) {
37             putsock(client, "MODE %s -o %s", chan->name, user->nick);
38             done = 1;
39         }
40         if((chanuser->flags & CHANUSERFLAG_VOICED)) {
41             putsock(client, "MODE %s -v %s", chan->name, user->nick);
42             done = 1;
43         }
44         if(done) {
45             //event hack
46             event->chan = chan;
47             logEvent(event);
48         }
49     }
50 }