14use Wikimedia\Timestamp\TimestampFormat as TS;
17require_once __DIR__ .
'/Maintenance.php';
36 parent::__construct();
37 $this->
addDescription(
'Script for periodic off-peak updating of the search index' );
38 $this->
addOption(
's',
'Starting timestamp',
false,
true );
39 $this->
addOption(
'e',
'Ending timestamp',
false,
true );
42 'File for saving/loading timestamps, searchUpdate.WIKI_ID.pos by default',
48 'Deprecated, has no effect (formerly lock time)',
56 return Maintenance::DB_ADMIN;
60 $dbDomain = WikiMap::getCurrentWikiDbDomain()->getId();
61 $posFile = $this->
getOption(
'p',
'searchUpdate.' . rawurlencode( $dbDomain ) .
'.pos' );
65 } elseif ( is_readable( $posFile ) ) {
66 $start = file_get_contents( $posFile );
71 $this->doUpdateSearchIndex( $start, $end );
72 $file = fopen( $posFile,
'w' );
73 if ( $file !==
false ) {
74 fwrite( $file, $end );
77 $this->
error(
"*** Couldn't write to the $posFile!\n" );
81 private function doUpdateSearchIndex(
string $start,
string $end ) {
88 $this->
output(
"Updating searchindex between $start and $end\n" );
90 # Select entries from recentchanges which are on top and between the specified times
91 $start = $dbw->timestamp( $start );
92 $end = $dbw->timestamp( $end );
94 $res = $dbw->newSelectQueryBuilder()
95 ->select(
'rc_cur_id' )
96 ->from(
'recentchanges' )
97 ->join(
'page',
null,
'rc_cur_id=page_id AND rc_this_oldid=page_latest' )
99 $dbw->expr(
'rc_source',
'!=', RecentChange::SRC_LOG ),
100 $dbw->expr(
'rc_timestamp',
'>=', $start ),
101 $dbw->expr(
'rc_timestamp',
'<=', $end ),
103 ->caller( __METHOD__ )->fetchResultSet();
105 foreach ( $res as $row ) {
106 $this->updateSearchIndexForPage( (
int)$row->rc_cur_id );
108 $this->
output(
"Done\n" );
116 private function updateSearchIndexForPage(
int $pageId ) {
119 ->getRevisionLookup()
120 ->getRevisionByPageId( $pageId, 0, IDBAccessObject::READ_LATEST );
123 $titleObj = Title::newFromPageIdentity( $rev->getPage() );
124 $title = $titleObj->getPrefixedDBkey();
125 $this->
output(
"$title..." );
127 $u =
new SearchUpdate( $pageId, $titleObj, $rev->getContent( SlotRecord::MAIN ) );
138require_once RUN_MAINTENANCE_IF_MAIN;
wfTimestampNow()
Convenience function; returns MediaWiki timestamp for the present time.
wfTimestamp( $outputtype=TS::UNIX, $ts=0)
Get a timestamp string in one of various formats.
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
output( $out, $channel=null)
Throw some output to the user.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
hasOption( $name)
Checks to see if a particular option was set.
getOption( $name, $default=null)
Get an option, or return the default.
error( $err, $die=0)
Throw an error to the user.
getServiceContainer()
Returns the main service container.
getPrimaryDB(string|false $virtualDomain=false)
addDescription( $text)
Set the description text.
Periodic off-peak updating of the search index.
getDbType()
Does the script need different DB access? By default, we give Maintenance scripts normal rights to th...
execute()
Do the actual work.
__construct()
Default constructor.
$wgDisableSearchUpdate
Config variable stub for the DisableSearchUpdate setting, for use by phpdoc and IDEs.