mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-12 09:26:05 +00:00
5df153591d
Change-Id: Iaa5fc89750b2a4bbe5d52bb9e75c2ac90fc3304b
68 lines
1.5 KiB
PHP
68 lines
1.5 KiB
PHP
<?php
|
|
|
|
$IP = getenv( 'MW_INSTALL_PATH' );
|
|
if ( $IP === false ) {
|
|
$IP = dirname( __FILE__ ) . '/../../..';
|
|
}
|
|
require_once( "$IP/maintenance/Maintenance.php" );
|
|
|
|
/**
|
|
* A maintenance script that processes email digest
|
|
*/
|
|
class ProcessEchoEmailBatch extends Maintenance {
|
|
|
|
/**
|
|
* Max number of records to process at a time
|
|
* @var int
|
|
*/
|
|
protected $batchSize = 300;
|
|
|
|
public function __construct() {
|
|
parent::__construct();
|
|
$this->mDescription = "Process email digest";
|
|
}
|
|
|
|
public function execute() {
|
|
global $wgEchoCluster;
|
|
|
|
$this->output( "Started processing... \n" );
|
|
|
|
$startUserId = 0;
|
|
$count = $this->batchSize;
|
|
|
|
while ( $count === $this->batchSize ) {
|
|
$count = 0;
|
|
|
|
$res = MWEchoEmailBatch::getUsersToNotify( $startUserId, $this->batchSize );
|
|
|
|
$updated = false;
|
|
foreach ( $res as $row ) {
|
|
$userId = intval( $row->eeb_user_id );
|
|
if ( $userId && $userId > $startUserId ) {
|
|
$emailBatch = MWEchoEmailBatch::newFromUserId( $userId );
|
|
if ( $emailBatch ) {
|
|
$this->output( "processing user_Id " . $userId . " \n" );
|
|
$emailBatch->process();
|
|
}
|
|
$startUserId = $userId;
|
|
$updated = true;
|
|
}
|
|
$count++;
|
|
}
|
|
wfWaitForSlaves( false, false, $wgEchoCluster );
|
|
// This is required since we are updating user properties in main wikidb
|
|
wfWaitForSlaves();
|
|
|
|
// double check to make sure that the id is updated
|
|
if ( !$updated ) {
|
|
break;
|
|
}
|
|
}
|
|
|
|
$this->output( "Completed \n" );
|
|
}
|
|
}
|
|
|
|
$maintClass = "ProcessEchoEmailBatch";
|
|
require_once( DO_MAINTENANCE );
|