X-Git-Url: http://git.pk910.de/?a=blobdiff_plain;f=src%2Fbots.c;h=aaddcb705b1e34b89c1bb2dc975d98005e0b3d04;hb=ab202224a669025ff7dbf50549d7ac4a337d7fc7;hp=ef55ef656e1b78b4a3c4c7c9255f647496559e80;hpb=cdebdaa89c585c948a7abbfcda22fed6b029d9da;p=NeonServV5.git diff --git a/src/bots.c b/src/bots.c index ef55ef6..aaddcb7 100644 --- a/src/bots.c +++ b/src/bots.c @@ -117,16 +117,11 @@ static void zero_bots_bot_ready(struct ClientSocket *client) { } } -void init_bots() { - set_bot_alias(0, "0"); - start_zero_bots(); - set_trigger_callback(0, 0, zero_bots_trigger_callback); - bind_bot_ready(zero_bots_bot_ready, 0); - +static TIMEQ_CALLBACK(load_timed_bans) { MYSQL_RES *res; MYSQL_ROW row; - //load all timed bans - printf_mysql_query("SELECT `ban_id`, `ban_timeout` FROM `bans` WHERE `ban_timeout` > 0"); + //load all timed bans for the next 7 days + printf_mysql_query("SELECT `ban_id`, `ban_timeout` FROM `bans` WHERE `ban_timeout` > 0 AND `ban_timeout` < (UNIX_TIMESTAMP() + (86400 * 7))"); res = mysql_use(); char nameBuf[20]; while ((row = mysql_fetch_row(res)) != NULL) { @@ -138,6 +133,17 @@ void init_bots() { printf_mysql_query("DELETE FROM `bans` WHERE `ban_id` = '%s'", row[0]); } } + timeq_add(86400*7, 0, load_timed_bans, NULL); +} + +void init_bots() { + set_bot_alias(0, "0"); + start_zero_bots(); + set_trigger_callback(0, 0, zero_bots_trigger_callback); + bind_bot_ready(zero_bots_bot_ready, 0); + + timeq_add(10, 0, load_timed_bans, NULL); + } struct ClientSocket *getChannelBot(struct ChanNode *chan, int botid) { @@ -145,8 +151,8 @@ struct ClientSocket *getChannelBot(struct ChanNode *chan, int botid) { struct ChanUser *chanuser; for(bot = getBots(SOCKET_FLAG_READY, NULL); bot; bot = getBots(SOCKET_FLAG_READY, bot)) { if(botid && bot->botid != botid) continue; - if((chanuser = getChanUser(bot->user, chan)) != NULL) { - if((chanuser->flags & CHANUSERFLAG_OPPED)) { + if(!chan || (chanuser = getChanUser(bot->user, chan)) != NULL) { + if(chan && (chanuser->flags & CHANUSERFLAG_OPPED)) { use_bot = bot; if(bot->flags & SOCKET_FLAG_PREFERRED) break; } else if(bot->flags & SOCKET_FLAG_PREFERRED)