stop-spammers-classic/classes/ss_addto_gcache.php
2025-09-13 16:55:35 -06:00

33 lines
866 B
PHP

<?php
if ( !defined( 'ABSPATH' ) ) {
status_header( 404 );
exit;
}
class ss_addto_gcache {
public function process( $ip, &$stats = array(), &$options = array(), &$post = array() ) {
extract( $stats );
extract( $options );
$now = gmdate( 'Y/m/d H:i:s', time() + ( get_option( 'gmt_offset' ) * 3600 ) );
while ( count( $goodips ) > $ss_sp_good ) {
array_shift( $goodips );
}
$nowtimeout = gmdate( 'Y/m/d H:i:s', time() - ( 4 * 3600 ) + ( get_option( 'gmt_offset' ) * 3600 ) );
$goodips[$ip] = $now;
foreach ( $goodips as $key => $data ) {
if ( $data < $nowtimeout ) {
unset( $goodips[$key] );
}
}
$stats['goodips'] = $goodips;
// if we add to Good Cache we need to delete from Bad Cache
if ( array_key_exists( $ip, $stats['badips'] ) ) {
unset( $stats['badips'] );
}
ss_set_stats( $stats );
return $goodips;
}
}
?>