330e82a542dcd83c78cfc8d564965ce97c197b3a
[NeonServV5.git] / src / cmd_neonserv_mdeluser.c
1 /* cmd_neonserv_mdeluser.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]  access (format: minaccess-maxaccess)
22 * argv[1]  pattern
23 */
24
25 CMD_BIND(neonserv_cmd_mdeluser) {
26     if(!checkChannelAccess(user, chan, "channel_candel", 1, 0)) {
27         reply(getTextBot(), user, "NS_ACCESS_DENIED");
28         return;
29     }
30     int min_access, max_access;
31     char *seperator = strstr(argv[0], "-");
32     if(seperator) {
33         *seperator = '\0';
34         seperator++;
35         min_access = atoi(argv[0]);
36         max_access = atoi(seperator);
37         if(max_access > min_access) {
38             reply(getTextBot(), user, "NS_INVALID_ACCESS_RANGE", min_access, max_access);
39             return;
40         }
41     } else {
42         min_access = atoi(argv[0]);
43         max_access = min_access;
44     }
45     if(max_access >= getChannelAccess(user, chan, 1)) {
46         reply(getTextBot(), user, "NS_NO_ACCESS");
47         return;
48     }
49     MYSQL_RES *res;
50     MYSQL_ROW row;
51     int del_count = 0;
52     printf_mysql_query("SELECT `user_user`, `chanuser_id` FROM `chanusers` LEFT JOIN `users` ON `chanuser_uid` = `user_id` WHERE `chanuser_cid` = '%d' AND `chanuser_access` >= '%d' AND `chanuser_access` <= '%d'", chan->channel_id, min_access, max_access);
53     res = mysql_use();
54     while((row = mysql_fetch_row(res)) != NULL) {
55         if(!match(argv[1], row[0])) {
56             del_count++;
57             printf_mysql_query("DELETE FROM `chanusers` WHERE `chanuser_id` = '%s'", row[1]);
58         }
59     }
60     reply(getTextBot(), user, "NS_MDELUSER_DONE", del_count, argv[1], min_access, max_access, chan->name);
61     if(del_count)
62         logEvent(event);
63 }
64