Merge "Add tags for undo edits"
[lhc/web/wiklou.git] / maintenance / populateBacklinkNamespace.php
1 <?php
2 /**
3 * Optional upgrade script to populate *_from_namespace fields
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 * @ingroup Maintenance
22 */
23
24 require_once __DIR__ . '/Maintenance.php';
25
26 /**
27 * Maintenance script to populate *_from_namespace fields
28 *
29 * @ingroup Maintenance
30 */
31 class PopulateBacklinkNamespace extends LoggedUpdateMaintenance {
32 public function __construct() {
33 parent::__construct();
34 $this->addDescription( 'Populate the *_from_namespace fields' );
35 $this->addOption( 'lastUpdatedId', "Highest page_id with updated links", false, true );
36 }
37
38 protected function getUpdateKey() {
39 return 'populate *_from_namespace';
40 }
41
42 protected function updateSkippedMessage() {
43 return '*_from_namespace column of backlink tables already populated.';
44 }
45
46 public function doDBUpdates() {
47 $force = $this->getOption( 'force' );
48
49 $db = $this->getDB( DB_MASTER );
50
51 $this->output( "Updating *_from_namespace fields in links tables.\n" );
52
53 $start = $this->getOption( 'lastUpdatedId' );
54 if ( !$start ) {
55 $start = $db->selectField( 'page', 'MIN(page_id)', false, __METHOD__ );
56 }
57 if ( !$start ) {
58 $this->output( "Nothing to do." );
59 return false;
60 }
61 $end = $db->selectField( 'page', 'MAX(page_id)', false, __METHOD__ );
62 $batchSize = $this->getBatchSize();
63
64 # Do remaining chunk
65 $end += $batchSize - 1;
66 $blockStart = $start;
67 $blockEnd = $start + $batchSize - 1;
68 while ( $blockEnd <= $end ) {
69 $this->output( "...doing page_id from $blockStart to $blockEnd\n" );
70 $cond = "page_id BETWEEN " . (int)$blockStart . " AND " . (int)$blockEnd;
71 $res = $db->select( 'page', [ 'page_id', 'page_namespace' ], $cond, __METHOD__ );
72 foreach ( $res as $row ) {
73 $db->update( 'pagelinks',
74 [ 'pl_from_namespace' => $row->page_namespace ],
75 [ 'pl_from' => $row->page_id ],
76 __METHOD__
77 );
78 $db->update( 'templatelinks',
79 [ 'tl_from_namespace' => $row->page_namespace ],
80 [ 'tl_from' => $row->page_id ],
81 __METHOD__
82 );
83 $db->update( 'imagelinks',
84 [ 'il_from_namespace' => $row->page_namespace ],
85 [ 'il_from' => $row->page_id ],
86 __METHOD__
87 );
88 }
89 $blockStart += $batchSize - 1;
90 $blockEnd += $batchSize - 1;
91 wfWaitForSlaves();
92 }
93 return true;
94 }
95 }
96
97 $maintClass = "PopulateBacklinkNamespace";
98 require_once RUN_MAINTENANCE_IF_MAIN;