MediaWiki REL1_40
populatePPSortKey.php
Go to the documentation of this file.
1<?php
24require_once __DIR__ . '/Maintenance.php';
25
31 public function __construct() {
32 parent::__construct();
33 $this->addDescription( 'Populate the pp_sortkey field' );
34 $this->setBatchSize( 100 );
35 }
36
37 protected function doDBUpdates() {
38 $dbw = $this->getDB( DB_PRIMARY );
39
40 $lastProp = null;
41 $lastPageValue = 0;
42
43 $lastRowCount = 0;
44 $editedRowCount = 0;
45
46 $this->output( "Populating page_props.pp_sortkey...\n" );
47 while ( true ) {
48 $conditions = [ 'pp_sortkey IS NULL' ];
49 if ( $lastPageValue !== 0 ) {
50 $conditions[] = $dbw->buildComparison( '>', [
51 'pp_page' => $lastPageValue,
52 'pp_propname' => $lastProp,
53 ] );
54 }
55
56 $res = $dbw->select(
57 'page_props',
58 [ 'pp_propname', 'pp_page', 'pp_sortkey', 'pp_value' ],
59 $conditions,
60 __METHOD__,
61 [
62 'ORDER BY' => [ 'pp_page', 'pp_propname' ],
63 'LIMIT' => $this->getBatchSize()
64 ]
65 );
66
67 if ( $res->numRows() === 0 ) {
68 break;
69 }
70
71 $this->beginTransaction( $dbw, __METHOD__ );
72
73 foreach ( $res as $row ) {
74 if ( !is_numeric( $row->pp_value ) ) {
75 continue;
76 }
77 $dbw->update(
78 'page_props',
79 [ 'pp_sortkey' => $row->pp_value ],
80 [
81 'pp_page' => $row->pp_page,
82 'pp_propname' => $row->pp_propname
83 ],
84 __METHOD__
85 );
86 $editedRowCount++;
87 }
88
89 if ( $editedRowCount !== $lastRowCount ) {
90 $this->output( "Updated " . $editedRowCount . " rows\n" );
91 $lastRowCount = $editedRowCount;
92 }
93
94 $this->commitTransaction( $dbw, __METHOD__ );
95
96 // We need to get the last element's page ID
97 // @phan-suppress-next-line PhanPossiblyUndeclaredVariable rows contains at least one item
98 $lastPageValue = $row->pp_page;
99 // And the propname...
100 // @phan-suppress-next-line PhanPossiblyUndeclaredVariable rows contains at least one item
101 $lastProp = $row->pp_propname;
102 }
103
104 $this->output( "Populating page_props.pp_sortkey complete.\n" );
105 $this->output( "Updated a total of $editedRowCount rows\n" );
106 return true;
107 }
108
109 protected function getUpdateKey() {
110 return 'populate pp_sortkey';
111 }
112}
113
114$maintClass = PopulatePPSortKey::class;
115require_once RUN_MAINTENANCE_IF_MAIN;
getDB()
Class for scripts that perform database maintenance and want to log the update in updatelog so we can...
beginTransaction(IDatabase $dbw, $fname)
Begin a transaction on a DB.
commitTransaction(IDatabase $dbw, $fname)
Commit the transaction on a DB handle and wait for replica DBs to catch up.
output( $out, $channel=null)
Throw some output to the user.
getBatchSize()
Returns batch size.
addDescription( $text)
Set the description text.
setBatchSize( $s=0)
Usage: populatePPSortKey.php.
__construct()
Default constructor.
doDBUpdates()
Do the actual work.
getUpdateKey()
Get the update key name to go in the update log table.
const DB_PRIMARY
Definition defines.php:28