simplified modcmd system
[NeonServV5.git] / src / bot_DummyServ.c
1 /* bot_DummyServ.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 "bot_DummyServ.h"
19 #include "modcmd.h"
20 #include "IRCParser.h"
21 #include "IRCEvents.h"
22 #include "UserNode.h"
23 #include "ChanNode.h"
24 #include "ChanUser.h"
25 #include "ModeNode.h"
26 #include "BanNode.h"
27 #include "ClientSocket.h"
28 #include "mysqlConn.h"
29 #include "lang.h"
30 #include "HandleInfoHandler.h"
31 #include "WHOHandler.h"
32 #include "DBHelper.h"
33 #include "tools.h"
34 #include "timeq.h"
35 #include "version.h"
36 #include "EventLogger.h"
37 #include "bots.h"
38 #include "cmd_neonserv.h"
39 #include "cmd_neonspam.h"
40
41 #define BOTID 3
42
43 static void dummyserv_bot_ready(struct ClientSocket *client) {
44     MYSQL_RES *res;
45     MYSQL_ROW row;
46     
47     printf_mysql_query("SELECT `automodes` FROM `bots` WHERE `id` = '%d'", client->clientid);
48     res = mysql_use();
49     if ((row = mysql_fetch_row(res)) != NULL) {
50         putsock(client, "MODE %s +%s", client->user->nick, row[0]);
51     }
52     
53     printf_mysql_query("SELECT `channel_name`, `channel_key` FROM `bot_channels` LEFT JOIN `channels` ON `chanid` = `channel_id` WHERE `botid` = '%d' AND `suspended` = '0'", client->clientid);
54     res = mysql_use();
55     
56     while ((row = mysql_fetch_row(res)) != NULL) {
57         putsock(client, "JOIN %s %s", row[0], row[1]);
58     }
59 }
60
61 static void dummyserv_trigger_callback(struct ChanNode *chan, char *trigger) {
62     //this bot doesn't have a trigger
63     strcpy(trigger, "");
64 }
65
66 static void start_bots() {
67     struct UserNode *user;
68     struct ClientSocket *client;
69     MYSQL_RES *res, *res2;
70     MYSQL_ROW row;
71     
72     printf_mysql_query("SELECT `nick`, `ident`, `realname`, `server`, `port`, `pass`, `textbot`, `id`, `queue` FROM `bots` WHERE `botclass` = '%d' AND `active` = '1'", BOTID);
73     res = mysql_use();
74     
75     while ((row = mysql_fetch_row(res)) != NULL) {
76         user = addUser(row[0]);
77         strcpy(user->ident, row[1]);
78         strcpy(user->realname, row[2]);
79         user->flags |= USERFLAG_ISBOT;
80         client = create_socket(row[3], atoi(row[4]), row[5], user);
81         client->flags |= (strcmp(row[6], "0") ? SOCKET_FLAG_PREFERRED : 0);
82         client->flags |= (strcmp(row[8], "0") ? SOCKET_FLAG_USE_QUEUE : 0);
83         client->botid = BOTID;
84         client->clientid = atoi(row[7]);
85         connect_socket(client);
86     }
87     
88     printf_mysql_query("SELECT `command`, `function`, `parameters`, `global_access`, `chan_access` FROM `bot_binds` WHERE `botclass` = '%d'", BOTID);
89     res2 = mysql_use();
90     while ((row = mysql_fetch_row(res2)) != NULL) {
91         if(bind_cmd_to_command(BOTID, row[0], row[1])) {
92             if(row[2] && strcmp(row[2], "")) {
93                 bind_set_parameters(BOTID, row[0], row[2]);
94             }
95             if(row[3]) {
96                 bind_set_global_access(BOTID, row[0], atoi(row[3]));
97             }
98             if(row[4]) {
99                 bind_set_channel_access(BOTID, row[0], row[4]);
100             }
101         }
102     }
103     bind_unbound_required_functions(BOTID);
104 }
105
106 void init_DummyServ() {
107     
108     start_bots();
109     
110     //register events
111     bind_bot_ready(dummyserv_bot_ready);
112     
113     set_trigger_callback(BOTID, dummyserv_trigger_callback);
114 }
115
116 void loop_DummyServ() {
117     
118 }
119
120 void free_DummyServ() {
121     
122 }
123
124 #undef BOTID