Another year is about to end... So we have to update these damn copyright information :P
[NeonServV5.git] / src / cmd_global_addbot.c
1 /* cmd_global_addbot.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]  nick
22 * argv[1]  class
23 */
24
25 CMD_BIND(global_cmd_addbot) {
26     MYSQL_RES *res;
27     int botid;
28     if((botid = resolve_botalias(argv[1])) == -1) {
29         reply(getTextBot(), user, "NS_SETBOT_INVALID_CLASS", argv[1]);
30         return;
31     }
32     printf_mysql_query("SELECT `id` FROM `bots` WHERE `nick` = '%s'", escape_string(argv[0]));
33     res = mysql_use();
34     if(mysql_fetch_row(res)) {
35         reply(getTextBot(), user, "NS_ADDBOT_EXISTING", argv[0]);
36         return;
37     }
38     printf_mysql_query("INSERT INTO `bots` (`nick`, `botclass`) VALUES ('%s', '%d')", escape_string(argv[0]), botid);
39     botid = (int) mysql_insert_id(mysql_conn);
40     reply(getTextBot(), user, "NS_ADDBOT_DONE", argv[0], botid);
41     logEvent(event);
42 }
43