added NeonHelp bot (without any functions, yet)
[NeonServV5.git] / src / bots.c
index 6f64c5e1cb0ebfb2c3f99f81288f9955898b2459..b30b5332767396b863d980d973cb302fa5b8b1a6 100644 (file)
@@ -1,4 +1,4 @@
-/* bots.c - NeonServ v5.1
+/* bots.c - NeonServ v5.2
  * Copyright (C) 2011  Philipp Kreil (pk910)
  * 
  * This program is free software: you can redistribute it and/or modify
 #include "UserNode.h"
 #include "ChanNode.h"
 #include "ChanUser.h"
+#include "version.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;
 
 void init_bots() {
     init_NeonServ();
     init_NeonSpam();
+    init_DummyServ();
+    init_NeonHelp();
     
     MYSQL_RES *res;
     MYSQL_ROW row;
@@ -50,11 +63,15 @@ void init_bots() {
 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) {
@@ -93,3 +110,85 @@ TIMEQ_CALLBACK(channel_ban_timeout) {
     }
     free(str_banid);
 }
+
+static int general_ctcp(char *buffer, char *command, char *text);
+
+void general_event_privctcp(struct UserNode *user, struct UserNode *target, char *command, char *text) {
+    char ctcpBuf[MAXLEN];
+    if(general_ctcp(ctcpBuf, command, text)) {
+        struct ClientSocket *bot;
+        for(bot = getBots(SOCKET_FLAG_READY, NULL); bot; bot = getBots(SOCKET_FLAG_READY, bot)) {
+            if(bot->user == target) break;
+        }
+        if(bot)
+            putsock(bot, "NOTICE %s :\001%s\001", user->nick, ctcpBuf);
+    }
+}
+
+static int general_ctcp(char *buffer, char *command, char *text) {
+    if(!stricmp(command, "VERSION")) {
+        sprintf(buffer, "VERSION NeonServ v%s.%d by pk910 (%s)", NEONSERV_VERSION, patchlevel, (strcmp(revision, "") ? revision : "-"));
+        return 1;
+    }
+    if(!stricmp(command, "FINGER")) {
+        sprintf(buffer, "FINGER NeonServ v%s.%d (%s) build %s lines C code using " COMPILER " (see +netinfo)", NEONSERV_VERSION, patchlevel, (strcmp(revision, "") ? revision : "-"), codelines);
+        return 1;
+    }
+    if(!stricmp(command, "PING")) {
+        sprintf(buffer, "PING %s", (text ? text : "0"));
+        return 1;
+    }
+    if(!stricmp(command, "TIME")) {
+        time_t rawtime;
+        struct tm *timeinfo;
+        char timeBuf[80];
+        time(&rawtime);
+        timeinfo = localtime(&rawtime);
+        strftime(timeBuf, 80, "%c", timeinfo);
+        sprintf(buffer, "TIME %s", timeBuf);
+        return 1;
+    }
+    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 0;
+}