mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-12 09:26:05 +00:00
325708e536
Remove echo_target_page rows associated with the echo_event rows we're deleting, and also add a separate pass that removes any remaining orphaned echo_target_page rows (this can happen if the script was run on the wiki before this logic was added). Bug: T221261 Change-Id: Ic3b590fb3ac3de4c2e38877d26944367b177235a
98 lines
2.8 KiB
PHP
98 lines
2.8 KiB
PHP
<?php
|
|
/**
|
|
* Remove rows from echo_event that don't have corresponding rows in echo_notification or echo_email_batch.
|
|
*
|
|
* @ingroup Maintenance
|
|
*/
|
|
require_once getenv( 'MW_INSTALL_PATH' ) !== false
|
|
? getenv( 'MW_INSTALL_PATH' ) . '/maintenance/Maintenance.php'
|
|
: __DIR__ . '/../../../maintenance/Maintenance.php';
|
|
|
|
/**
|
|
* Maintenance script that removes orphaned event rows
|
|
*
|
|
* @ingroup Maintenance
|
|
*/
|
|
class RemoveOrphanedEvents extends LoggedUpdateMaintenance {
|
|
|
|
public function __construct() {
|
|
parent::__construct();
|
|
|
|
$this->addDescription( "Remove rows from echo_event and echo_target_page that don't have corresponding rows in " .
|
|
"echo_notification or echo_email_batch" );
|
|
|
|
$this->setBatchSize( 500 );
|
|
|
|
$this->requireExtension( 'Echo' );
|
|
}
|
|
|
|
public function getUpdateKey() {
|
|
return __CLASS__;
|
|
}
|
|
|
|
public function doDBUpdates() {
|
|
$dbFactory = MWEchoDbFactory::newFromDefault();
|
|
$dbw = $dbFactory->getEchoDb( DB_MASTER );
|
|
$dbr = $dbFactory->getEchoDb( DB_REPLICA );
|
|
$iterator = new BatchRowIterator(
|
|
$dbr,
|
|
[ 'echo_event', 'echo_notification', 'echo_email_batch' ],
|
|
'event_id',
|
|
$this->mBatchSize
|
|
);
|
|
$iterator->addJoinConditions( [
|
|
'echo_notification' => [ 'LEFT JOIN', 'notification_event=event_id' ],
|
|
'echo_email_batch' => [ 'LEFT JOIN', 'eeb_event_id=event_id' ],
|
|
] );
|
|
$iterator->addConditions( [
|
|
'notification_user' => null,
|
|
'eeb_user_id' => null,
|
|
] );
|
|
|
|
$this->output( "Removing orphaned echo_event rows...\n" );
|
|
|
|
$eventsProcessed = 0;
|
|
$targetsProcessed = 0;
|
|
foreach ( $iterator as $batch ) {
|
|
$ids = [];
|
|
foreach ( $batch as $row ) {
|
|
$ids[] = $row->event_id;
|
|
}
|
|
$dbw->delete( 'echo_event', [ 'event_id' => $ids ] );
|
|
$eventsProcessed += $dbw->affectedRows();
|
|
$dbw->delete( 'echo_target_page', [ 'etp_event' => $ids ] );
|
|
$targetsProcessed += $dbw->affectedRows();
|
|
$this->output( "Deleted $eventsProcessed orphaned events and $targetsProcessed target_page rows.\n" );
|
|
$dbFactory->waitForSlaves();
|
|
}
|
|
|
|
$this->output( "Removing any remaining orphaned echo_target_page rows...\n" );
|
|
$iterator = new BatchRowIterator(
|
|
$dbr,
|
|
[ 'echo_target_page', 'echo_event' ],
|
|
'etp_event',
|
|
$this->mBatchSize
|
|
);
|
|
$iterator->addJoinConditions( [ 'echo_event' => [ 'LEFT JOIN', 'event_id=etp_event' ] ] );
|
|
$iterator->addConditions( [ 'event_type' => null ] );
|
|
$iterator->addOptions( [ 'DISTINCT' ] );
|
|
|
|
$processed = 0;
|
|
foreach ( $iterator as $batch ) {
|
|
$ids = [];
|
|
foreach ( $batch as $row ) {
|
|
$ids[] = $row->etp_event;
|
|
}
|
|
$dbw->delete( 'echo_target_page', [ 'etp_event' => $ids ] );
|
|
$processed += $dbw->affectedRows();
|
|
$this->output( "Deleted $processed orphaned target_page rows.\n" );
|
|
$dbFactory->waitForSlaves();
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|
|
|
|
$maintClass = RemoveOrphanedEvents::class;
|
|
require_once RUN_MAINTENANCE_IF_MAIN;
|