MediaWiki  1.34.0
LinkBatch.php
Go to the documentation of this file.
1 <?php
27 
34 class LinkBatch {
38  public $data = [];
39 
43  protected $caller;
44 
48  public function __construct( $arr = [] ) {
49  foreach ( $arr as $item ) {
50  $this->addObj( $item );
51  }
52  }
53 
62  public function setCaller( $caller ) {
63  $this->caller = $caller;
64 
65  return $this;
66  }
67 
71  public function addObj( $linkTarget ) {
72  if ( is_object( $linkTarget ) ) {
73  $this->add( $linkTarget->getNamespace(), $linkTarget->getDBkey() );
74  } else {
75  wfDebug( "Warning: LinkBatch::addObj got invalid LinkTarget object\n" );
76  }
77  }
78 
83  public function add( $ns, $dbkey ) {
84  if ( $ns < 0 || $dbkey === '' ) {
85  return; // T137083
86  }
87  if ( !array_key_exists( $ns, $this->data ) ) {
88  $this->data[$ns] = [];
89  }
90 
91  $this->data[$ns][strtr( $dbkey, ' ', '_' )] = 1;
92  }
93 
100  public function setArray( $array ) {
101  $this->data = $array;
102  }
103 
109  public function isEmpty() {
110  return $this->getSize() == 0;
111  }
112 
118  public function getSize() {
119  return count( $this->data );
120  }
121 
127  public function execute() {
128  $linkCache = MediaWikiServices::getInstance()->getLinkCache();
129 
130  return $this->executeInto( $linkCache );
131  }
132 
140  protected function executeInto( &$cache ) {
141  $res = $this->doQuery();
142  $this->doGenderQuery();
143  $ids = $this->addResultToCache( $cache, $res );
144 
145  return $ids;
146  }
147 
158  public function addResultToCache( $cache, $res ) {
159  if ( !$res ) {
160  return [];
161  }
162 
163  $titleFormatter = MediaWikiServices::getInstance()->getTitleFormatter();
164  // For each returned entry, add it to the list of good links, and remove it from $remaining
165 
166  $ids = [];
167  $remaining = $this->data;
168  foreach ( $res as $row ) {
169  $title = new TitleValue( (int)$row->page_namespace, $row->page_title );
170  $cache->addGoodLinkObjFromRow( $title, $row );
171  $pdbk = $titleFormatter->getPrefixedDBkey( $title );
172  $ids[$pdbk] = $row->page_id;
173  unset( $remaining[$row->page_namespace][$row->page_title] );
174  }
175 
176  // The remaining links in $data are bad links, register them as such
177  foreach ( $remaining as $ns => $dbkeys ) {
178  foreach ( $dbkeys as $dbkey => $unused ) {
179  $title = new TitleValue( (int)$ns, (string)$dbkey );
180  $cache->addBadLinkObj( $title );
181  $pdbk = $titleFormatter->getPrefixedDBkey( $title );
182  $ids[$pdbk] = 0;
183  }
184  }
185 
186  return $ids;
187  }
188 
193  public function doQuery() {
194  if ( $this->isEmpty() ) {
195  return false;
196  }
197 
198  // This is similar to LinkHolderArray::replaceInternal
199  $dbr = wfGetDB( DB_REPLICA );
200  $table = 'page';
201  $fields = array_merge(
203  [ 'page_namespace', 'page_title' ]
204  );
205 
206  $conds = $this->constructSet( 'page', $dbr );
207 
208  // Do query
209  $caller = __METHOD__;
210  if ( strval( $this->caller ) !== '' ) {
211  $caller .= " (for {$this->caller})";
212  }
213  $res = $dbr->select( $table, $fields, $conds, $caller );
214 
215  return $res;
216  }
217 
223  public function doGenderQuery() {
224  if ( $this->isEmpty() ) {
225  return false;
226  }
227  $services = MediaWikiServices::getInstance();
228 
229  if ( !$services->getContentLanguage()->needsGenderDistinction() ) {
230  return false;
231  }
232 
233  $genderCache = $services->getGenderCache();
234  $genderCache->doLinkBatch( $this->data, $this->caller );
235 
236  return true;
237  }
238 
246  public function constructSet( $prefix, $db ) {
247  return $db->makeWhereFrom2d( $this->data, "{$prefix}_namespace", "{$prefix}_title" );
248  }
249 }
LinkBatch\doGenderQuery
doGenderQuery()
Do (and cache) {{GENDER:...}} information for userpages in this LinkBatch.
Definition: LinkBatch.php:223
LinkBatch
Class representing a list of titles The execute() method checks them all for existence and adds them ...
Definition: LinkBatch.php:34
LinkBatch\add
add( $ns, $dbkey)
Definition: LinkBatch.php:83
MediaWiki\MediaWikiServices
MediaWikiServices is the service locator for the application scope of MediaWiki.
Definition: MediaWikiServices.php:117
LinkBatch\setCaller
setCaller( $caller)
Use ->setCaller( METHOD ) to indicate which code is using this class.
Definition: LinkBatch.php:62
LinkBatch\addObj
addObj( $linkTarget)
Definition: LinkBatch.php:71
$res
$res
Definition: testCompression.php:52
LinkBatch\setArray
setArray( $array)
Set the link list to a given 2-d array First key is the namespace, second is the DB key,...
Definition: LinkBatch.php:100
LinkCache\getSelectFields
static getSelectFields()
Fields that LinkCache needs to select.
Definition: LinkCache.php:219
Wikimedia\Rdbms\IDatabase
Basic database interface for live and lazy-loaded relation database handles.
Definition: IDatabase.php:38
LinkBatch\execute
execute()
Do the query and add the results to the LinkCache object.
Definition: LinkBatch.php:127
$dbr
$dbr
Definition: testCompression.php:50
LinkBatch\getSize
getSize()
Returns the size of the batch.
Definition: LinkBatch.php:118
Wikimedia\Rdbms\IResultWrapper
Result wrapper for grabbing data queried from an IDatabase object.
Definition: IResultWrapper.php:24
LinkBatch\constructSet
constructSet( $prefix, $db)
Construct a WHERE clause which will match all the given titles.
Definition: LinkBatch.php:246
wfGetDB
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
Definition: GlobalFunctions.php:2575
LinkBatch\__construct
__construct( $arr=[])
Definition: LinkBatch.php:48
$title
$title
Definition: testCompression.php:34
DB_REPLICA
const DB_REPLICA
Definition: defines.php:25
wfDebug
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
Definition: GlobalFunctions.php:913
LinkBatch\$caller
$caller
For debugging which method is using this class.
Definition: LinkBatch.php:43
LinkBatch\$data
$data
2-d array, first index namespace, second index dbkey, value arbitrary
Definition: LinkBatch.php:38
LinkBatch\doQuery
doQuery()
Perform the existence test query, return a result wrapper with page_id fields.
Definition: LinkBatch.php:193
LinkBatch\executeInto
executeInto(&$cache)
Do the query and add the results to a given LinkCache object Return an array mapping PDBK to ID.
Definition: LinkBatch.php:140
LinkBatch\isEmpty
isEmpty()
Returns true if no pages have been added, false otherwise.
Definition: LinkBatch.php:109
$cache
$cache
Definition: mcc.php:33
MediaWiki\Linker\LinkTarget
Definition: LinkTarget.php:26
LinkBatch\addResultToCache
addResultToCache( $cache, $res)
Add a result wrapper containing IDs and titles to a LinkCache object.
Definition: LinkBatch.php:158
TitleValue
Represents a page (or page fragment) title within MediaWiki.
Definition: TitleValue.php:36