2013-08-27 17:00:27 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
if ( getenv( 'MW_INSTALL_PATH' ) ) {
|
|
|
|
$IP = getenv( 'MW_INSTALL_PATH' );
|
|
|
|
} else {
|
|
|
|
$IP = dirname( __FILE__ ) . '/../../..';
|
|
|
|
}
|
|
|
|
require_once( "$IP/maintenance/Maintenance.php" );
|
|
|
|
|
|
|
|
class PurgeOldLogIPData extends Maintenance {
|
|
|
|
public function __construct() {
|
|
|
|
parent::__construct();
|
|
|
|
$this->mDescription = "Purge old IP Address data from AbuseFilter logs";
|
|
|
|
$this->setBatchSize( 200 );
|
|
|
|
}
|
|
|
|
|
|
|
|
public function execute() {
|
|
|
|
global $wgAbuseFilterLogIPMaxAge;
|
|
|
|
|
2014-01-03 17:54:59 +00:00
|
|
|
$this->output( "Purging old IP Address data from abuse_filter_log...\n" );
|
2013-08-27 17:00:27 +00:00
|
|
|
$dbw = wfGetDB( DB_MASTER );
|
|
|
|
|
|
|
|
$count = 0;
|
|
|
|
while ( true ) {
|
|
|
|
$dbw->begin();
|
2014-01-03 17:54:59 +00:00
|
|
|
$dbw->update(
|
2013-08-27 17:00:27 +00:00
|
|
|
'abuse_filter_log',
|
|
|
|
array( 'afl_ip' => '' ),
|
|
|
|
array(
|
|
|
|
'afl_ip <> ""',
|
|
|
|
"afl_timestamp < " . $dbw->addQuotes( $dbw->timestamp( time() - $wgAbuseFilterLogIPMaxAge ) )
|
|
|
|
),
|
|
|
|
__METHOD__,
|
|
|
|
array( 'LIMIT' => $this->mBatchSize )
|
|
|
|
);
|
|
|
|
$count += $dbw->affectedRows();
|
|
|
|
$dbw->commit();
|
2014-01-03 17:54:59 +00:00
|
|
|
if ( $dbw->affectedRows() < $this->mBatchSize ) {
|
2013-08-27 17:00:27 +00:00
|
|
|
break; // all updated
|
|
|
|
}
|
2014-01-03 17:54:59 +00:00
|
|
|
$this->output( "$count\n" );
|
2013-08-27 17:00:27 +00:00
|
|
|
|
|
|
|
wfWaitForSlaves();
|
|
|
|
}
|
|
|
|
|
2014-01-03 17:54:59 +00:00
|
|
|
$this->output( "$count rows.\n" );
|
2013-08-27 17:00:27 +00:00
|
|
|
|
|
|
|
$this->output( "Done.\n" );
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
$maintClass = "PurgeOldLogIPData";
|
|
|
|
require_once( RUN_MAINTENANCE_IF_MAIN );
|