Another year is about to end... So we have to update these damn copyright information :P
[NeonServV5.git] / src / bots.c
index b5cba8a18fefa9b213c7f3914df8fa0a9f6d4818..3efc27ef813e13641ef29bcb218d128281f271cc 100644 (file)
@@ -1,5 +1,5 @@
-/* bots.c - NeonServ v5.2
- * Copyright (C) 2011  Philipp Kreil (pk910)
+/* bots.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
 #include "ChanNode.h"
 #include "ChanUser.h"
 #include "version.h"
+#include "modcmd.h"
+#include "DBHelper.h"
 
 #include "bot_NeonServ.h"
 #include "bot_NeonSpam.h"
 #include "bot_DummyServ.h"
+#include "bot_NeonHelp.h"
+
+struct cmd_bot_alias {
+    int botid;
+    char *alias;
+    struct cmd_bot_alias *next;
+};
+
+static struct cmd_bot_alias *bot_aliases = NULL;
+
+static void start_zero_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` = '0' AND `active` = '1'");
+    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->botid = 0;
+        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` = '0' AND `botid` = '%d'", client->clientid);
+        res2 = mysql_use();
+        while ((row = mysql_fetch_row(res2)) != NULL) {
+            if(bind_botwise_cmd_to_command(0, client->clientid, row[0], row[1])) {
+                if(row[2] && strcmp(row[2], "")) {
+                    bind_botwise_set_parameters(0, client->clientid, row[0], row[2]);
+                }
+                if(row[3]) {
+                    bind_botwise_set_global_access(0, client->clientid, row[0], atoi(row[3]));
+                }
+                if(row[4]) {
+                    bind_botwise_set_channel_access(0, client->clientid, row[0], row[4]);
+                }
+                if(strcmp(row[5], "0"))
+                    bind_botwise_set_bind_flags(0, client->clientid, row[0], atoi(row[5]));
+            }
+        }
+        bind_botwise_unbound_required_functions(0, client->clientid);
+    }
+}
+
+static void zero_bots_trigger_callback(int clientid, struct ChanNode *chan, char *trigger) {
+    MYSQL_RES *res;
+    MYSQL_ROW row;
+    loadChannelSettings(chan);
+    if(!(chan->flags & CHANFLAG_CHAN_REGISTERED)) {
+        strcpy(trigger, "+");
+        return;
+    }
+    printf_mysql_query("SELECT `trigger`, `defaulttrigger` FROM `bot_channels` LEFT JOIN `bots` ON `botid` = `bots`.`id` WHERE `chanid` = '%d' AND `botclass` = '0' AND `botid` = '%d'", chan->channel_id, clientid);
+    res = mysql_use();
+    row = mysql_fetch_row(res);
+    if(row[0] && *row[0])
+        strcpy(trigger, row[0]);
+    else
+        strcpy(trigger, ((row[1] && *row[1]) ? row[1] : "+"));
+}
 
 void init_bots() {
     init_NeonServ();
     init_NeonSpam();
     init_DummyServ();
+    init_NeonHelp();
+    
+    set_bot_alias(0, "0");
+    start_zero_bots();
+    set_trigger_callback(0, zero_bots_trigger_callback);
     
     MYSQL_RES *res;
     MYSQL_ROW row;
@@ -54,12 +125,14 @@ void loop_bots() {
     loop_NeonServ();
     loop_NeonSpam();
     loop_DummyServ();
+    loop_NeonHelp();
 }
 
 void free_bots() {
     free_NeonServ();
     free_NeonSpam();
     free_DummyServ();
+    free_NeonHelp();
 }
 
 struct ClientSocket *getChannelBot(struct ChanNode *chan, int botid) {
@@ -82,6 +155,24 @@ struct ClientSocket *getChannelBot(struct ChanNode *chan, int botid) {
     return use_bot;
 }
 
+void requestOp(struct UserNode *user, struct ChanNode *chan) {
+    struct ClientSocket *bot;
+    struct ChanUser *chanuser = getChanUser(user, chan);
+    char opped = 0;
+    if(!chanuser) return;
+    if((chanuser->flags & CHANUSERFLAG_OPPED)) return;
+    for(bot = getBots(SOCKET_FLAG_READY, NULL); bot; bot = getBots(SOCKET_FLAG_READY, bot)) {
+        if((chanuser = getChanUser(bot->user, chan)) != NULL && (chanuser->flags & CHANUSERFLAG_OPPED)) {
+            opped = 1;
+            putsock(bot, "MODE %s +o %s", chan->name, user->nick);
+            break;
+        }
+    }
+    if(!opped) {
+        //self op?
+    }
+}
+
 TIMEQ_CALLBACK(channel_ban_timeout) {
     char *str_banid = data;
     MYSQL_RES *res;
@@ -138,3 +229,45 @@ static int general_ctcp(char *buffer, char *command, char *text) {
     }
     return 0;
 }
+
+void set_bot_alias(int botid, char *alias) {
+    struct cmd_bot_alias *botalias, *existing_alias = NULL;
+    for(botalias = bot_aliases; botalias; botalias = botalias->next) {
+        if(!stricmp(botalias->alias, alias))
+            return;
+        if(botalias->botid == botid)
+            existing_alias = botalias;
+    }
+    if(existing_alias) {
+        free(existing_alias->alias);
+        existing_alias->alias = strdup(alias);
+        return;
+    }
+    botalias = malloc(sizeof(*botalias));
+    if (!botalias) {
+        perror("malloc() failed");
+        return;
+    }
+    botalias->botid = botid;
+    botalias->alias = strdup(alias);
+    botalias->next = bot_aliases;
+    bot_aliases = botalias;
+}
+
+const char *resolve_botid(int botid) {
+    struct cmd_bot_alias *botalias;
+    for(botalias = bot_aliases; botalias; botalias = botalias->next) {
+        if(botalias->botid == botid)
+            return botalias->alias;
+    }
+    return NULL;
+}
+
+int resolve_botalias(const char *alias) {
+    struct cmd_bot_alias *botalias;
+    for(botalias = bot_aliases; botalias; botalias = botalias->next) {
+        if(!stricmp(botalias->alias, alias))
+            return botalias->botid;
+    }
+    return -1;
+}