rearranged NeonServ code to be modular
[NeonServV5.git] / src / bot_DummyServ.c
diff --git a/src/bot_DummyServ.c b/src/bot_DummyServ.c
deleted file mode 100644 (file)
index afcb637..0000000
+++ /dev/null
@@ -1,126 +0,0 @@
-/* bot_DummyServ.c - NeonServ v5.3
- * Copyright (C) 2011-2012  Philipp Kreil (pk910)
- * 
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * 
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- * 
- * You should have received a copy of the GNU General Public License 
- * along with this program. If not, see <http://www.gnu.org/licenses/>. 
- */
-
-#include "bot_DummyServ.h"
-#include "modcmd.h"
-#include "IRCParser.h"
-#include "IRCEvents.h"
-#include "UserNode.h"
-#include "ChanNode.h"
-#include "ChanUser.h"
-#include "ModeNode.h"
-#include "BanNode.h"
-#include "ClientSocket.h"
-#include "mysqlConn.h"
-#include "lang.h"
-#include "HandleInfoHandler.h"
-#include "WHOHandler.h"
-#include "DBHelper.h"
-#include "tools.h"
-#include "timeq.h"
-#include "version.h"
-#include "EventLogger.h"
-#include "bots.h"
-#include "cmd_neonserv.h"
-#include "cmd_neonspam.h"
-
-#define BOTID 3
-#define BOTALIAS "DummyServ"
-
-static void dummyserv_bot_ready(struct ClientSocket *client) {
-    MYSQL_RES *res;
-    MYSQL_ROW row;
-    
-    printf_mysql_query("SELECT `automodes` FROM `bots` WHERE `id` = '%d'", client->clientid);
-    res = mysql_use();
-    if ((row = mysql_fetch_row(res)) != NULL) {
-        putsock(client, "MODE %s +%s", client->user->nick, row[0]);
-    }
-    
-    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);
-    res = mysql_use();
-    
-    while ((row = mysql_fetch_row(res)) != NULL) {
-        putsock(client, "JOIN %s %s", row[0], row[1]);
-    }
-}
-
-static void dummyserv_trigger_callback(int clientid, struct ChanNode *chan, char *trigger) {
-    //this bot doesn't have a trigger
-    strcpy(trigger, "");
-}
-
-static void start_bots() {
-    struct ClientSocket *client;
-    MYSQL_RES *res, *res2;
-    MYSQL_ROW row;
-    
-    printf_mysql_query("SELECT `nick`, `ident`, `realname`, `server`, `port`, `pass`, `textbot`, `id`, `queue`, `ssl`, `bind` FROM `bots` WHERE `botclass` = '%d' AND `active` = '1'", BOTID);
-    res = mysql_use();
-    
-    while ((row = mysql_fetch_row(res)) != NULL) {
-        client = create_socket(row[3], atoi(row[4]), row[10], row[5], row[0], row[1], row[2]);
-        client->flags |= (strcmp(row[6], "0") ? SOCKET_FLAG_PREFERRED : 0);
-        client->flags |= (strcmp(row[8], "0") ? SOCKET_FLAG_USE_QUEUE : 0);
-        client->flags |= (strcmp(row[9], "0") ? SOCKET_FLAG_SSL : 0);
-        client->flags |= SOCKET_FLAG_SILENT;
-        client->botid = BOTID;
-        client->clientid = atoi(row[7]);
-        connect_socket(client);
-    }
-    
-    printf_mysql_query("SELECT `command`, `function`, `parameters`, `global_access`, `chan_access`, `flags` FROM `bot_binds` WHERE `botclass` = '%d'", BOTID);
-    res2 = mysql_use();
-    while ((row = mysql_fetch_row(res2)) != NULL) {
-        if(bind_cmd_to_command(BOTID, row[0], row[1])) {
-            if(row[2] && strcmp(row[2], "")) {
-                bind_set_parameters(BOTID, row[0], row[2]);
-            }
-            if(row[3]) {
-                bind_set_global_access(BOTID, row[0], atoi(row[3]));
-            }
-            if(row[4]) {
-                bind_set_channel_access(BOTID, row[0], row[4]);
-            }
-            if(strcmp(row[5], "0"))
-                bind_set_bind_flags(BOTID, row[0], atoi(row[5]));
-        }
-    }
-    bind_unbound_required_functions(BOTID);
-}
-
-void init_DummyServ() {
-    
-    set_bot_alias(BOTID, BOTALIAS);
-    start_bots();
-    
-    //register events
-    bind_bot_ready(dummyserv_bot_ready);
-    
-    set_trigger_callback(BOTID, dummyserv_trigger_callback);
-}
-
-void loop_DummyServ() {
-    
-}
-
-void free_DummyServ() {
-    
-}
-
-#undef BOTID
-#undef BOTALIAS