Another year is about to end... So we have to update these damn copyright information :P
[NeonServV5.git] / src / cmd_global_unregister.c
1 /* cmd_global_unregister.c - NeonServ v5.3
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_global.h"
19
20 /*
21 * argv[0] - channel
22 */
23 CMD_BIND(global_cmd_unregister) {
24     MYSQL_RES *res;
25     MYSQL_ROW row;
26     char *channel;
27     if(argc)
28         channel = argv[0];
29     else
30         channel = (chan ? chan->name : "");
31     if(!is_valid_chan(channel)) {
32         reply(getTextBot(), user, "NS_INVALID_CHANNEL_NAME", argv[0]);
33         return;
34     }
35     int chanid;
36     printf_mysql_query("SELECT `channel_id` FROM `channels` WHERE `channel_name` = '%s'", escape_string(channel));
37     res = mysql_use();
38     if ((row = mysql_fetch_row(res)) != NULL) {
39         chanid = atoi(row[0]);
40     } else {
41         reply(getTextBot(), user, "NS_UNREGISTER_NOT_REGISTERED", argv[0], client->user->nick);
42         return;
43     }
44     if(client->botid == 0)
45         printf_mysql_query("SELECT `botid`, `bot_channels`.`id`, `suspended`, `bots`.`id` FROM `bot_channels` LEFT JOIN `bots` ON `bot_channels`.`botid` = `bots`.`id` WHERE `chanid` = '%d' AND `botclass` = '0' AND `botid` = '%d'", chanid, client->clientid);
46     else
47         printf_mysql_query("SELECT `botid`, `bot_channels`.`id`, `suspended`, `bots`.`id` FROM `bot_channels` LEFT JOIN `bots` ON `bot_channels`.`botid` = `bots`.`id` WHERE `chanid` = '%d' AND `botclass` = '%d'", chanid, client->botid);
48     res = mysql_use();
49     if ((row = mysql_fetch_row(res)) == NULL) {
50         reply(getTextBot(), user, "NS_UNREGISTER_NOT_REGISTERED", argv[0], client->user->nick);
51         return;
52     }
53     int botid = atoi(row[0]);
54     int clientid = atoi(row[3]);
55     struct ClientSocket *bot;
56     for(bot = getBots(SOCKET_FLAG_READY, NULL); bot; bot = getBots(SOCKET_FLAG_READY, bot)) {
57         if(bot->clientid == botid && (!botid || bot->clientid == clientid))
58             break;
59     }
60     if(bot && strcmp(row[2], "1")) {
61         putsock(bot, "PART %s :Channel unregistered.", channel);
62     }
63     printf_mysql_query("DELETE FROM `bot_channels` WHERE `id` = '%s'", row[1]);
64     reply(getTextBot(), user, "NS_UNREGISTER_DONE", channel);
65     logEvent(event);
66 }