MediaWiki  1.30.1
populatePPSortKey.php
Go to the documentation of this file.
1 <?php
24 require_once __DIR__ . '/Maintenance.php';
25 
27 
33  public function __construct() {
34  parent::__construct();
35  $this->addDescription( 'Populate the pp_sortkey field' );
36  $this->setBatchSize( 100 );
37  }
38 
39  protected function doDBUpdates() {
40  $dbw = $this->getDB( DB_MASTER );
41 
42  $lastProp = null;
43  $lastPageValue = 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[] = 'pp_page > ' . $dbw->addQuotes( $lastPageValue ) . ' OR ' .
51  '( pp_page = ' . $dbw->addQuotes( $lastPageValue ) .
52  ' AND pp_propname > ' . $dbw->addQuotes( $lastProp ) . ' )';
53  }
54 
55  $res = $dbw->select(
56  'page_props',
57  [ 'pp_propname', 'pp_page', 'pp_sortkey', 'pp_value' ],
58  $conditions,
59  __METHOD__,
60  [
61  'ORDER BY' => 'pp_page, pp_propname',
62  'LIMIT' => $this->mBatchSize
63  ]
64  );
65 
66  if ( $res->numRows() === 0 ) {
67  break;
68  }
69 
70  $this->beginTransaction( $dbw, __METHOD__ );
71 
72  foreach ( $res as $row ) {
73  if ( !is_numeric( $row->pp_value ) ) {
74  continue;
75  }
76  $dbw->update(
77  'page_props',
78  [ 'pp_sortkey' => $row->pp_value ],
79  [
80  'pp_page' => $row->pp_page,
81  'pp_propname' => $row->pp_propname
82  ],
83  __METHOD__
84  );
85  $editedRowCount++;
86  }
87 
88  $this->output( "Updated " . $editedRowCount . " rows\n" );
89  $this->commitTransaction( $dbw, __METHOD__ );
90 
91  // We need to get the last element's page ID
92  $lastPageValue = $row->pp_page;
93  // And the propname...
94  $lastProp = $row->pp_propname;
95  }
96 
97  $this->output( "Populating page_props.pp_sortkey complete.\n" );
98  }
99 
100  protected function getUpdateKey() {
101  return 'populate pp_sortkey';
102  }
103 }
104 
105 $maintClass = 'PopulatePPSortKey';
106 require_once RUN_MAINTENANCE_IF_MAIN;
Maintenance\addDescription
addDescription( $text)
Set the description text.
Definition: Maintenance.php:287
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
PopulatePPSortKey\doDBUpdates
doDBUpdates()
Do the actual work.
Definition: populatePPSortKey.php:39
RUN_MAINTENANCE_IF_MAIN
require_once RUN_MAINTENANCE_IF_MAIN
Definition: maintenance.txt:50
$res
$res
Definition: database.txt:21
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
Wikimedia\Rdbms\IDatabase
Basic database interface for live and lazy-loaded relation database handles.
Definition: IDatabase.php:40
Maintenance\beginTransaction
beginTransaction(IDatabase $dbw, $fname)
Begin a transcation on a DB.
Definition: Maintenance.php:1278
PopulatePPSortKey\getUpdateKey
getUpdateKey()
Get the update key name to go in the update log table.
Definition: populatePPSortKey.php:100
LoggedUpdateMaintenance
Class for scripts that perform database maintenance and want to log the update in updatelog so we can...
Definition: Maintenance.php:1562
DB_MASTER
const DB_MASTER
Definition: defines.php:26
$maintClass
$maintClass
Definition: populatePPSortKey.php:105
Maintenance\commitTransaction
commitTransaction(IDatabase $dbw, $fname)
Commit the transcation on a DB handle and wait for replica DBs to catch up.
Definition: Maintenance.php:1293
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
Maintenance\getDB
getDB( $db, $groups=[], $wiki=false)
Returns a database to be used by current maintenance script.
Definition: Maintenance.php:1251
Maintenance\output
output( $out, $channel=null)
Throw some output to the user.
Definition: Maintenance.php:373
PopulatePPSortKey\__construct
__construct()
Default constructor.
Definition: populatePPSortKey.php:33
PopulatePPSortKey
Usage: populatePPSortKey.php.
Definition: populatePPSortKey.php:32
Maintenance\setBatchSize
setBatchSize( $s=0)
Set the batch size.
Definition: Maintenance.php:314