mediawiki-extensions-AbuseF.../maintenance/purgeOldLogIPData.php
pppery 66f52694a2 Make maintenance scripts use $this->requireExtension()
Bug: T152139
Change-Id: I9c3a6a186275b6554a761de8548bc16f8938d488
2016-12-12 22:42:00 +00:00

62 lines
1.3 KiB
PHP

<?php
if ( getenv( 'MW_INSTALL_PATH' ) ) {
$IP = getenv( 'MW_INSTALL_PATH' );
} else {
$IP = __DIR__ . '/../../..';
}
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 );
$this->requireExtension( 'AbuseFilter' );
}
public function execute() {
global $wgAbuseFilterLogIPMaxAge;
$this->output( "Purging old IP Address data from abuse_filter_log...\n" );
$dbw = wfGetDB( DB_MASTER );
$cutoffUnix = time() - $wgAbuseFilterLogIPMaxAge;
$count = 0;
do {
$ids = $dbw->selectFieldValues(
'abuse_filter_log',
'afl_id',
array(
'afl_ip <> ""',
"afl_timestamp < " . $dbw->addQuotes( $dbw->timestamp( $cutoffUnix ) )
),
__METHOD__,
array( 'LIMIT' => $this->mBatchSize )
);
if ( $ids ) {
$dbw->update(
'abuse_filter_log',
array( 'afl_ip' => '' ),
array( 'afl_id' => $ids ),
__METHOD__
);
$count += $dbw->affectedRows();
$this->output( "$count\n" );
wfWaitForSlaves();
}
} while ( count( $ids ) >= $this->mBatchSize );
$this->output( "$count rows.\n" );
$this->output( "Done.\n" );
}
}
$maintClass = "PurgeOldLogIPData";
require_once RUN_MAINTENANCE_IF_MAIN;