77167a2ac84ebc38783457f83bcb2701bbcaf3c8
[NeonServV5.git] / src / cmd_neonserv_upall.c
1 /* cmd_neonserv_upall.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 * no arguments
22 */
23
24 CMD_BIND(neonserv_cmd_upall) {
25     MYSQL_RES *res, *default_res;
26     MYSQL_ROW row, default_row;
27     struct ChanUser *chanuser;
28     int userid, chan_getop, chan_getvoice, caccess;
29     printf_mysql_query("SELECT `user_id` FROM `users` WHERE `user_user` = '%s'", user->auth);
30     res = mysql_use();
31     if ((row = mysql_fetch_row(res)) == NULL)
32         return;
33     userid = atoi(row[0]);
34     printf_mysql_query("SELECT `chanuser_access`, `channel_getop`, `channel_getvoice`, `channel_name`, `channel_id` FROM `chanusers` LEFT JOIN `channels` ON `chanuser_cid` = `channel_id` WHERE `chanuser_uid` = '%d'", userid);
35     res = mysql_use();
36     while ((row = mysql_fetch_row(res)) != NULL) {
37         chan = getChanByName(row[3]);
38         if(!chan) continue;
39         printf_mysql_query("SELECT `botid` FROM `bot_channels` LEFT JOIN `bots` ON `bot_channels`.`botid` = `bots`.`id` WHERE `chanid` = '%s' AND `botclass` = '%d'", row[4], client->botid);
40         if (mysql_fetch_row(mysql_use()) == NULL) continue;
41         if(!(chanuser = getChanUser(user, chan))) continue;
42         if(!row[1] || !row[2]) {
43             printf_mysql_query("SELECT `channel_getop`, `channel_getvoice` FROM `channels` WHERE `channel_name` = 'defaults'");
44             default_res = mysql_use();
45             if ((default_row = mysql_fetch_row(default_res)) == NULL) return;
46             chan_getop = (row[1] ? atoi(row[1]) : atoi(default_row[0]));
47             chan_getvoice = (row[2] ? atoi(row[2]) : atoi(default_row[1]));
48         } else {
49             chan_getop = atoi(row[1]);
50             chan_getvoice = atoi(row[2]);
51         }
52         caccess = atoi(row[0]);
53         int done = 0;
54         if(caccess >= chan_getop) {
55             if(!(chanuser->flags & CHANUSERFLAG_OPPED)) {
56                 putsock(client, "MODE %s +o %s", chan->name, user->nick);
57                 done = 1;
58             }
59         } else if(caccess >= chan_getvoice) {
60             if(!(chanuser->flags & CHANUSERFLAG_VOICED)) {
61                 putsock(client, "MODE %s +v %s", chan->name, user->nick);
62                 done = 1;
63             }
64         }
65         if(done) {
66             event->chan = chan;
67             logEvent(event);
68         }
69     }
70 }