97ef4f9a8fc8ee60191b98a4aa62d33d90d4d830
[NeonServV5.git] / src / modules / global.mod / cmd_global_unregister.c
1 /* cmd_global_unregister.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_global.h"
19 #include "../botid.h"
20
21 /*
22 * argv[0] - channel
23 */
24 CMD_BIND(global_cmd_unregister) {
25     MYSQL_RES *res;
26     MYSQL_ROW row;
27     char *channel;
28     if(argc)
29         channel = argv[0];
30     else
31         channel = (chan ? chan->name : "");
32     if(!is_valid_chan(channel)) {
33         reply(getTextBot(), user, "NS_INVALID_CHANNEL_NAME", channel);
34         return;
35     }
36     int chanid;
37     printf_mysql_query("SELECT `channel_id`, `channel_nodelete` FROM `channels` WHERE `channel_name` = '%s'", escape_string(channel));
38     res = mysql_use();
39     if ((row = mysql_fetch_row(res)) != NULL) {
40         chanid = atoi(row[0]);
41     } else {
42         reply(getTextBot(), user, "NS_UNREGISTER_NOT_REGISTERED", channel, client->user->nick);
43         return;
44     }
45     if(client->botid == NEONSERV_BOTID && !strcmp(row[1], "1")) {
46         reply(getTextBot(), user, "NS_UNREGISTER_NODELETE", channel);
47         return;
48     }
49     int sync_neonspam_unreg = get_int_field("General/sync_neonspam_unreg");
50     if(client->botid == 0)
51         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` = '0' AND `botid` = '%d'", chanid, client->clientid);
52     else
53         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);
54     res = mysql_use();
55     if ((row = mysql_fetch_row(res)) == NULL) {
56         reply(getTextBot(), user, "NS_UNREGISTER_NOT_REGISTERED", channel, client->user->nick);
57         return;
58     }
59     int botid = atoi(row[0]);
60     struct ClientSocket *bot;
61     for(bot = getBots(SOCKET_FLAG_READY, NULL); bot; bot = getBots(SOCKET_FLAG_READY, bot)) {
62         if(bot->clientid == botid)
63             break;
64     }
65     printf_mysql_query("DELETE FROM `bot_channels` WHERE `id` = '%s'", row[1]);
66     reply(getTextBot(), user, "NS_UNREGISTER_DONE", channel);
67     if(bot && strcmp(row[2], "1")) {
68         putsock(bot, "PART %s :Channel unregistered.", channel);
69     }
70     if(client->botid == NEONSERV_BOTID && sync_neonspam_unreg) {
71         printf_mysql_query("SELECT `botid`, `bot_channels`.`id`, `suspended` FROM `bot_channels` LEFT JOIN `bots` ON `bot_channels`.`botid` = `bots`.`id` LEFT JOIN `channels` ON `chanid` = `channel_id` WHERE `channel_name` = '%s' AND `botclass` = '%d'", escape_string(channel), NEONSPAM_BOTID);
72         res = mysql_use();
73         if ((row = mysql_fetch_row(res)) == NULL) {
74             return;
75         }
76         botid = atoi(row[0]);
77         for(bot = getBots(SOCKET_FLAG_READY, NULL); bot; bot = getBots(SOCKET_FLAG_READY, bot)) {
78             if(bot->clientid == botid)
79                 break;
80         }
81         printf_mysql_query("DELETE FROM `bot_channels` WHERE `id` = '%s'", row[1]);
82         if(bot && strcmp(row[2], "1")) {
83             putsock(bot, "PART %s :Channel unregistered.", channel);
84         }
85     }
86     logEvent(event);
87 }