blob: 413df9872814d45755663446692bf1bb5c1d55a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
<?php
/**
* Contains class with job for rebuilding message index.
*
* @file
* @author Niklas Laxström
* @copyright Copyright © 2011-2013, Niklas Laxström
* @license GPL-2.0+
*/
/**
* Job for rebuilding message index.
*
* @ingroup JobQueue
*/
class MessageIndexRebuildJob extends Job {
/**
* @return MessageIndexRebuildJob
*/
public static function newJob() {
$job = new self( Title::newMainPage() );
return $job;
}
function __construct( $title, $params = array(), $id = 0 ) {
parent::__construct( __CLASS__, $title, $params, $id );
}
function run() {
MessageIndex::singleton()->rebuild();
return true;
}
/**
* Usually this job is fast enough to be executed immediately,
* in which case having it go through jobqueue only causes problems
* in installations with errant job queue processing.
* @override
*/
public function insert() {
global $wgTranslateDelayedMessageIndexRebuild;
if ( $wgTranslateDelayedMessageIndexRebuild ) {
return JobQueueGroup::singleton()->push( $this );
} else {
$this->run();
return true;
}
}
}
|