diff -r 1d6e762433fe -r 0acb8d9a3194 modules/log.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/modules/log.php Mon Aug 25 12:34:26 2008 -0400 @@ -0,0 +1,48 @@ +get_channel_name()); + $nick_db = mysql_real_escape_string($message['nick']); + $line_db = mysql_real_escape_string($message['message']); + $day = date('Y-m-d'); + $time = time(); + $m_et = false; + $sql = false; + switch($message['action']) + { + case 'PRIVMSG': + if ( substr($line_db, 0, 5) != '[off]' ) + { + $sql = "INSERT INTO irclog(channel, day, nick, timestamp, line) VALUES + ( '$chan_db', '$day', '$nick_db', '$time', '$line_db' );"; + } + break; + case 'JOIN': + $sql = "INSERT INTO irclog(channel, day, nick, timestamp, line) VALUES + ( '$chan_db', '$day', '', '$time', '$nick_db has joined $chan_db' );"; + break; + case 'PART': + $sql = "INSERT INTO irclog(channel, day, nick, timestamp, line) VALUES + ( '$chan_db', '$day', '', '$time', '$nick_db has left $chan_db' );"; + break; + case 'MODE': + list($mode, $target_nick) = explode(' ', $line_db); + if ( $message['nick'] != 'ChanServ' && $target_nick != $nick ) + { + $sql = "INSERT INTO irclog(channel, day, nick, timestamp, line) VALUES + ( '$chan_db', '$day', '', '$time', '$nick_db set mode $mode on $target_nick' );"; + } + break; + } + if ( $sql ) + { + eb_mysql_query($sql); + } +} +