added NeonHelp bot (without any functions, yet)
[NeonServV5.git] / src / bots.c
1 /* bots.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 "bots.h"
19 #include "timeq.h"
20 #include "mysqlConn.h"
21 #include "ClientSocket.h"
22 #include "UserNode.h"
23 #include "ChanNode.h"
24 #include "ChanUser.h"
25 #include "version.h"
26
27 #include "bot_NeonServ.h"
28 #include "bot_NeonSpam.h"
29 #include "bot_DummyServ.h"
30 #include "bot_NeonHelp.h"
31
32 struct cmd_bot_alias {
33     int botid;
34     char *alias;
35     struct cmd_bot_alias *next;
36 };
37
38 static struct cmd_bot_alias *bot_aliases = NULL;
39
40 void init_bots() {
41     init_NeonServ();
42     init_NeonSpam();
43     init_DummyServ();
44     init_NeonHelp();
45     
46     MYSQL_RES *res;
47     MYSQL_ROW row;
48     //load all timed bans
49     printf_mysql_query("SELECT `ban_id`, `ban_timeout` FROM `bans` WHERE `ban_timeout` > 0");
50     res = mysql_use();
51     char nameBuf[20];
52     while ((row = mysql_fetch_row(res)) != NULL) {
53         if(atol(row[1]) - time(0) > 0) {
54             sprintf(nameBuf, "ban_%s", row[0]);
55             timeq_add_name(nameBuf, atol(row[1]) - time(0), channel_ban_timeout, strdup(row[0]));
56         } else {
57             //timed out
58             printf_mysql_query("DELETE FROM `bans` WHERE `ban_id` = '%s'", row[0]);
59         }
60     }
61 }
62
63 void loop_bots() {
64     loop_NeonServ();
65     loop_NeonSpam();
66     loop_DummyServ();
67     loop_NeonHelp();
68 }
69
70 void free_bots() {
71     free_NeonServ();
72     free_NeonSpam();
73     free_DummyServ();
74     free_NeonHelp();
75 }
76
77 struct ClientSocket *getChannelBot(struct ChanNode *chan, int botid) {
78     struct ClientSocket *bot, *use_bot = NULL, *second_bot = NULL, *third_bot = NULL;
79     struct ChanUser *chanuser;
80     for(bot = getBots(SOCKET_FLAG_READY, NULL); bot; bot = getBots(SOCKET_FLAG_READY, bot)) {
81         if(botid && bot->botid != botid) continue;
82         if((chanuser = getChanUser(bot->user, chan)) != NULL) {
83             if((chanuser->flags & CHANUSERFLAG_OPPED)) {
84                 use_bot = bot;
85                 if(bot->flags & SOCKET_FLAG_PREFERRED) break;
86             } else if(bot->flags & SOCKET_FLAG_PREFERRED)
87                 second_bot = bot;
88             else
89                 third_bot = bot;
90         }
91     }
92     if(!use_bot) use_bot = second_bot;
93     if(!use_bot) use_bot = third_bot;
94     return use_bot;
95 }
96
97 TIMEQ_CALLBACK(channel_ban_timeout) {
98     char *str_banid = data;
99     MYSQL_RES *res;
100     MYSQL_ROW row;
101     printf_mysql_query("SELECT `ban_mask`, `channel_name` FROM `bans` LEFT JOIN `channels` ON `ban_channel` = `channel_id` WHERE `ban_id` = '%s'", str_banid);
102     res = mysql_use();
103     struct ChanNode *chan;
104     if((row = mysql_fetch_row(res)) != NULL && (chan = getChanByName(row[1])) != NULL) {
105         struct ClientSocket *use_bot = getChannelBot(chan, 0);
106         if(use_bot) {
107             putsock(use_bot, "MODE %s -b %s", chan->name, row[0]);
108         }
109         printf_mysql_query("DELETE FROM `bans` WHERE `ban_id` = '%s'", str_banid);
110     }
111     free(str_banid);
112 }
113
114 static int general_ctcp(char *buffer, char *command, char *text);
115
116 void general_event_privctcp(struct UserNode *user, struct UserNode *target, char *command, char *text) {
117     char ctcpBuf[MAXLEN];
118     if(general_ctcp(ctcpBuf, command, text)) {
119         struct ClientSocket *bot;
120         for(bot = getBots(SOCKET_FLAG_READY, NULL); bot; bot = getBots(SOCKET_FLAG_READY, bot)) {
121             if(bot->user == target) break;
122         }
123         if(bot)
124             putsock(bot, "NOTICE %s :\001%s\001", user->nick, ctcpBuf);
125     }
126 }
127
128 static int general_ctcp(char *buffer, char *command, char *text) {
129     if(!stricmp(command, "VERSION")) {
130         sprintf(buffer, "VERSION NeonServ v%s.%d by pk910 (%s)", NEONSERV_VERSION, patchlevel, (strcmp(revision, "") ? revision : "-"));
131         return 1;
132     }
133     if(!stricmp(command, "FINGER")) {
134         sprintf(buffer, "FINGER NeonServ v%s.%d (%s) build %s lines C code using " COMPILER " (see +netinfo)", NEONSERV_VERSION, patchlevel, (strcmp(revision, "") ? revision : "-"), codelines);
135         return 1;
136     }
137     if(!stricmp(command, "PING")) {
138         sprintf(buffer, "PING %s", (text ? text : "0"));
139         return 1;
140     }
141     if(!stricmp(command, "TIME")) {
142         time_t rawtime;
143         struct tm *timeinfo;
144         char timeBuf[80];
145         time(&rawtime);
146         timeinfo = localtime(&rawtime);
147         strftime(timeBuf, 80, "%c", timeinfo);
148         sprintf(buffer, "TIME %s", timeBuf);
149         return 1;
150     }
151     return 0;
152 }
153
154 void set_bot_alias(int botid, char *alias) {
155     struct cmd_bot_alias *botalias, *existing_alias = NULL;
156     for(botalias = bot_aliases; botalias; botalias = botalias->next) {
157         if(!stricmp(botalias->alias, alias))
158             return;
159         if(botalias->botid == botid)
160             existing_alias = botalias;
161     }
162     if(existing_alias) {
163         free(existing_alias->alias);
164         existing_alias->alias = strdup(alias);
165         return;
166     }
167     botalias = malloc(sizeof(*botalias));
168     if (!botalias) {
169         perror("malloc() failed");
170         return;
171     }
172     botalias->botid = botid;
173     botalias->alias = strdup(alias);
174     botalias->next = bot_aliases;
175     bot_aliases = botalias;
176 }
177
178 const char *resolve_botid(int botid) {
179     struct cmd_bot_alias *botalias;
180     for(botalias = bot_aliases; botalias; botalias = botalias->next) {
181         if(botalias->botid == botid)
182             return botalias->alias;
183     }
184     return NULL;
185 }
186
187 int resolve_botalias(const char *alias) {
188     struct cmd_bot_alias *botalias;
189     for(botalias = bot_aliases; botalias; botalias = botalias->next) {
190         if(!stricmp(botalias->alias, alias))
191             return botalias->botid;
192     }
193     return 0;
194 }