42045c4c8959700d4ccc4e2d629bd50b9a334c91
[NeonServV5.git] / src / cmd_neonserv_unregister.c
1 /* cmd_neonserv_unregister.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] - channel
22 */
23 CMD_BIND(neonserv_cmd_unregister) {
24     MYSQL_RES *res;
25     MYSQL_ROW row;
26     char *channel = argv[0];
27     if(!is_valid_chan(channel)) {
28         reply(getTextBot(), user, "NS_INVALID_CHANNEL_NAME", argv[0]);
29         return;
30     }
31     int chanid;
32     printf_mysql_query("SELECT `channel_id` FROM `channels` WHERE `channel_name` = '%s'", escape_string(channel));
33     res = mysql_use();
34     if ((row = mysql_fetch_row(res)) != NULL) {
35         chanid = atoi(row[0]);
36     } else {
37         reply(getTextBot(), user, "NS_UNREGISTER_NOT_REGISTERED", argv[0], client->user->nick);
38         return;
39     }
40     printf_mysql_query("SELECT `botid`, `bot_channels`.`id`, `suspended` FROM `bot_channels` LEFT JOIN `bots` ON `bot_channels`.`botid` = `bots`.`id` WHERE `chanid` = '%d' AND `botclass` = '%d'", chanid, client->botid);
41     res = mysql_use();
42     if ((row = mysql_fetch_row(res)) == NULL) {
43         reply(getTextBot(), user, "NS_UNREGISTER_NOT_REGISTERED", argv[0], client->user->nick);
44         return;
45     }
46     int botid = atoi(row[0]);
47     struct ClientSocket *bot;
48     for(bot = getBots(SOCKET_FLAG_READY, NULL); bot; bot = getBots(SOCKET_FLAG_READY, bot)) {
49         if(bot->clientid == botid)
50             break;
51     }
52     if(bot && strcmp(row[2], "1")) {
53         putsock(bot, "PART %s :Channel unregistered.", channel);
54     }
55     printf_mysql_query("DELETE FROM `bot_channels` WHERE `id` = '%s'", row[1]);
56     reply(getTextBot(), user, "NS_UNREGISTER_DONE", channel);
57     logEvent(event);
58 }