tried to reorder the program structure and build process
[NeonServV5.git] / event_neonserv_invite.c
diff --git a/event_neonserv_invite.c b/event_neonserv_invite.c
deleted file mode 100644 (file)
index c25aff4..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-
-static void neonserv_event_invite(struct ClientSocket *client, struct UserNode *user, char *channel) {
-    MYSQL_RES *res;
-    MYSQL_ROW row;
-    printf_mysql_query("SELECT `botid`, `bot_channels`.`id`, `suspended` FROM `bot_channels` LEFT JOIN `bots` ON `bot_channels`.`botid` = `bots`.`id` LEFT JOIN `channels` ON `chanid` = `channel_id` WHERE `channel_name` = '%s' AND `botclass` = '%d'", escape_string(channel), client->botid);
-    res = mysql_use();
-    if ((row = mysql_fetch_row(res)) == NULL) {
-        reply(client, user, "NS_INVITE_FAIL", channel, client->user->nick);
-        return;
-    }
-    int botid = atoi(row[0]);
-    struct ClientSocket *bot;
-    for(bot = getBots(SOCKET_FLAG_READY, NULL); bot; bot = getBots(SOCKET_FLAG_READY, bot)) {
-        if(bot->clientid == botid)
-            break;
-    }
-    if(bot) {
-        struct ChanNode *chan = getChanByName(channel);
-        if(chan && isUserOnChan(bot->user, chan)) {
-            reply(client, user, "NS_INVITE_ON_CHAN", bot->user->nick, chan->name);
-        } else
-            putsock(bot, "JOIN %s", channel);
-    }
-}
-