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