mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-13 17:57:21 +00:00
ceac7e38d7
No need to define own class property Change-Id: I9c71eaee6086b3d079648ee8dba41b7600c464a1
93 lines
2.1 KiB
PHP
93 lines
2.1 KiB
PHP
<?php
|
|
/**
|
|
* Remove invalid events from echo_event and echo_notification
|
|
*
|
|
* @ingroup Maintenance
|
|
*/
|
|
|
|
require_once getenv( 'MW_INSTALL_PATH' ) !== false
|
|
? getenv( 'MW_INSTALL_PATH' ) . '/maintenance/Maintenance.php'
|
|
: __DIR__ . '/../../../maintenance/Maintenance.php';
|
|
|
|
/**
|
|
* Maintenance script that removes invalid notifications
|
|
*
|
|
* @ingroup Maintenance
|
|
*/
|
|
class RemoveInvalidNotification extends Maintenance {
|
|
|
|
/** @var string[] */
|
|
protected $invalidEventType = [ 'article-linked' ];
|
|
|
|
public function __construct() {
|
|
parent::__construct();
|
|
|
|
$this->addDescription( "Removes invalid notifications from the database." );
|
|
$this->setBatchSize( 500 );
|
|
$this->requireExtension( 'Echo' );
|
|
}
|
|
|
|
public function execute() {
|
|
$lbFactory = MWEchoDbFactory::newFromDefault();
|
|
if ( !$this->invalidEventType ) {
|
|
$this->output( "There is nothing to process\n" );
|
|
|
|
return;
|
|
}
|
|
|
|
$dbw = $lbFactory->getEchoDb( DB_MASTER );
|
|
$dbr = $lbFactory->getEchoDb( DB_REPLICA );
|
|
|
|
$batchSize = $this->getBatchSize();
|
|
$count = $batchSize;
|
|
|
|
while ( $count == $batchSize ) {
|
|
$res = $dbr->select(
|
|
[ 'echo_event' ],
|
|
[ 'event_id' ],
|
|
[
|
|
'event_type' => $this->invalidEventType,
|
|
],
|
|
__METHOD__,
|
|
[ 'LIMIT' => $batchSize ]
|
|
);
|
|
|
|
$event = [];
|
|
$count = 0;
|
|
foreach ( $res as $row ) {
|
|
// @phan-suppress-next-line PhanPossiblyUndeclaredVariable
|
|
if ( !in_array( $row->event_id, $event ) ) {
|
|
$event[] = $row->event_id;
|
|
}
|
|
$count++;
|
|
}
|
|
|
|
if ( $event ) {
|
|
$this->beginTransaction( $dbw, __METHOD__ );
|
|
|
|
$dbw->delete(
|
|
'echo_event',
|
|
[ 'event_id' => $event ],
|
|
__METHOD__
|
|
);
|
|
$dbw->delete(
|
|
'echo_notification',
|
|
[ 'notification_event' => $event ],
|
|
__METHOD__
|
|
);
|
|
|
|
$this->commitTransaction( $dbw, __METHOD__ );
|
|
|
|
$this->output( "processing " . count( $event ) . " invalid events\n" );
|
|
$lbFactory->waitForReplicas();
|
|
}
|
|
|
|
// Cleanup is not necessary for
|
|
// 1. echo_email_batch, invalid notification is removed during the cron
|
|
}
|
|
}
|
|
}
|
|
|
|
$maintClass = RemoveInvalidNotification::class; // Tells it to run the class
|
|
require_once RUN_MAINTENANCE_IF_MAIN;
|