Another year is about to end... So we have to update these damn copyright information :P
[NeonServV5.git] / src / bot_DummyServ.c
1 /* bot_DummyServ.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 "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 #define BOTALIAS "DummyServ"
43
44 static void dummyserv_bot_ready(struct ClientSocket *client) {
45     MYSQL_RES *res;
46     MYSQL_ROW row;
47     
48     printf_mysql_query("SELECT `automodes` FROM `bots` WHERE `id` = '%d'", client->clientid);
49     res = mysql_use();
50     if ((row = mysql_fetch_row(res)) != NULL) {
51         putsock(client, "MODE %s +%s", client->user->nick, row[0]);
52     }
53     
54     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);
55     res = mysql_use();
56     
57     while ((row = mysql_fetch_row(res)) != NULL) {
58         putsock(client, "JOIN %s %s", row[0], row[1]);
59     }
60 }
61
62 static void dummyserv_trigger_callback(int clientid, struct ChanNode *chan, char *trigger) {
63     //this bot doesn't have a trigger
64     strcpy(trigger, "");
65 }
66
67 static void start_bots() {
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`, `ssl`, `bind` FROM `bots` WHERE `botclass` = '%d' AND `active` = '1'", BOTID);
73     res = mysql_use();
74     
75     while ((row = mysql_fetch_row(res)) != NULL) {
76         client = create_socket(row[3], atoi(row[4]), row[10], row[5], row[0], row[1], row[2]);
77         client->flags |= (strcmp(row[6], "0") ? SOCKET_FLAG_PREFERRED : 0);
78         client->flags |= (strcmp(row[8], "0") ? SOCKET_FLAG_USE_QUEUE : 0);
79         client->flags |= (strcmp(row[9], "0") ? SOCKET_FLAG_SSL : 0);
80         client->botid = BOTID;
81         client->clientid = atoi(row[7]);
82         connect_socket(client);
83     }
84     
85     printf_mysql_query("SELECT `command`, `function`, `parameters`, `global_access`, `chan_access`, `flags` FROM `bot_binds` WHERE `botclass` = '%d'", BOTID);
86     res2 = mysql_use();
87     while ((row = mysql_fetch_row(res2)) != NULL) {
88         if(bind_cmd_to_command(BOTID, row[0], row[1])) {
89             if(row[2] && strcmp(row[2], "")) {
90                 bind_set_parameters(BOTID, row[0], row[2]);
91             }
92             if(row[3]) {
93                 bind_set_global_access(BOTID, row[0], atoi(row[3]));
94             }
95             if(row[4]) {
96                 bind_set_channel_access(BOTID, row[0], row[4]);
97             }
98             if(strcmp(row[5], "0"))
99                 bind_set_bind_flags(BOTID, row[0], atoi(row[5]));
100         }
101     }
102     bind_unbound_required_functions(BOTID);
103 }
104
105 void init_DummyServ() {
106     
107     set_bot_alias(BOTID, BOTALIAS);
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
125 #undef BOTALIAS