Revision: Remove some unnecessary temporary variables for returns
[mediawiki.git] / maintenance / attachLatest.php
blobcd038eaa4e30dc9b80a61b3cf9d7bc70ee0b6934
1 <?php
2 /**
3 * Corrects wrong values in the `page_latest` field in the database.
5 * Copyright © 2005 Brion Vibber <brion@pobox.com>
6 * https://www.mediawiki.org/
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 * http://www.gnu.org/copyleft/gpl.html
23 * @file
24 * @ingroup Maintenance
27 use MediaWiki\MediaWikiServices;
28 use MediaWiki\Revision\RevisionLookup;
30 require_once __DIR__ . '/Maintenance.php';
32 /**
33 * Maintenance script to correct wrong values in the `page_latest` field
34 * in the database.
36 * @ingroup Maintenance
38 class AttachLatest extends Maintenance {
39 public function __construct() {
40 parent::__construct();
41 $this->addOption( "fix", "Actually fix the entries, will dry run otherwise" );
42 $this->addOption( "regenerate-all",
43 "Regenerate the page_latest field for all records in table page" );
44 $this->addDescription( 'Fix page_latest entries in the page table' );
47 public function execute() {
48 $this->output( "Looking for pages with page_latest set to 0...\n" );
49 $dbw = $this->getDB( DB_MASTER );
50 $conds = [ 'page_latest' => 0 ];
51 if ( $this->hasOption( 'regenerate-all' ) ) {
52 $conds = '';
54 $result = $dbw->select( 'page',
55 [ 'page_id', 'page_namespace', 'page_title' ],
56 $conds,
57 __METHOD__ );
59 $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
60 $dbDomain = $lbFactory->getLocalDomainID();
62 $n = 0;
63 foreach ( $result as $row ) {
64 $pageId = intval( $row->page_id );
65 $title = Title::makeTitle( $row->page_namespace, $row->page_title );
66 $name = $title->getPrefixedText();
67 $latestTime = $dbw->selectField( 'revision',
68 'MAX(rev_timestamp)',
69 [ 'rev_page' => $pageId ],
70 __METHOD__ );
71 if ( !$latestTime ) {
72 $this->output( "$dbDomain $pageId [[$name]] can't find latest rev time?!\n" );
73 continue;
76 $revRecord = MediaWikiServices::getInstance()
77 ->getRevisionLookup()
78 ->getRevisionByTimestamp( $title, $latestTime, RevisionLookup::READ_LATEST );
79 if ( $revRecord === null ) {
80 $this->output(
81 "$dbDomain $pageId [[$name]] latest time $latestTime, can't find revision id\n"
83 continue;
86 $id = $revRecord->getId();
87 $this->output( "$dbDomain $pageId [[$name]] latest time $latestTime, rev id $id\n" );
88 if ( $this->hasOption( 'fix' ) ) {
89 $page = WikiPage::factory( $title );
90 $page->updateRevisionOn( $dbw, $revRecord );
91 $lbFactory->waitForReplication();
93 $n++;
95 $this->output( "Done! Processed $n pages.\n" );
96 if ( !$this->hasOption( 'fix' ) ) {
97 $this->output( "This was a dry run; rerun with --fix to update page_latest.\n" );
102 $maintClass = AttachLatest::class;
103 require_once RUN_MAINTENANCE_IF_MAIN;