added OpenSSL handler
[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`, `ssl` 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->flags |= (strcmp(row[9], "0") ? SOCKET_FLAG_SSL : 0);
75         client->botid = BOTID;
76         client->clientid = atoi(row[7]);
77         connect_socket(client);
78     }
79     
80     printf_mysql_query("SELECT `command`, `function`, `parameters`, `global_access`, `chan_access` FROM `bot_binds` WHERE `botclass` = '%d'", BOTID);
81     res2 = mysql_use();
82     while ((row = mysql_fetch_row(res2)) != NULL) {
83         if(bind_cmd_to_command(BOTID, row[0], row[1])) {
84             if(row[2] && strcmp(row[2], "")) {
85                 bind_set_parameters(BOTID, row[0], row[2]);
86             }
87             if(row[3]) {
88                 bind_set_global_access(BOTID, row[0], atoi(row[3]));
89             }
90             if(row[4]) {
91                 bind_set_channel_access(BOTID, row[0], row[4]);
92             }
93         }
94     }
95     bind_unbound_required_functions(BOTID);
96 }
97
98 void init_NeonHelp() {
99     
100     set_bot_alias(BOTID, BOTALIAS);
101     start_bots();
102     
103     //register events
104     bind_bot_ready(neonhelp_bot_ready);
105     
106     set_trigger_callback(BOTID, neonhelp_trigger_callback);
107 }
108
109 void loop_NeonHelp() {
110     
111 }
112
113 void free_NeonHelp() {
114     
115 }
116
117 #undef BOTID
118 #undef BOTALIAS