added cmd_reconnect
[NeonServV5.git] / src / cmd_global_reconnect.c
1 /* cmd_global_reconnect.c - NeonServ v5.2
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_global.h"
19
20 /*
21 * argv[0]  nick/botid
22 */
23
24 CMD_BIND(global_cmd_reconnect) {
25     int botid;
26     if(argc) {
27         MYSQL_RES *res;
28         MYSQL_ROW row;
29         printf_mysql_query("SELECT `id` FROM `bots` WHERE `nick` = '%s' OR `id` = '%s'", escape_string(argv[0]), escape_string(argv[0]));
30         res = mysql_use();
31         if((row = mysql_fetch_row(res)) == NULL) {
32             reply(getTextBot(), user, "NS_DELBOT_NOT_FOUND", argv[0]);
33             return;
34         }
35         botid = atoi(row[0]);
36         for(client = getBots(0, NULL); client; client = getBots(0, client)) {
37             if(client->clientid == botid) {
38                 disconnect_socket(client);
39                 connect_socket(client);
40                 break;
41             }
42         }
43     } else {
44         disconnect_socket(client);
45         connect_socket(client);
46     }
47     reply(getTextBot(), user, "NS_RECONNECT_DONE");
48     logEvent(event);
49 }