Easier to use addWikiText() in wrapWikiMsg()
[lhc/web/wiklou.git] / includes / parser / LinkHolderArray.php
1 <?php
2 /**
3 * Holder of replacement pairs for wiki links
4 *
5 * @file
6 */
7
8 /**
9 * @ingroup Parser
10 */
11 class LinkHolderArray {
12 var $internals = array(), $interwikis = array();
13 var $size = 0;
14 var $parent;
15
16 function __construct( $parent ) {
17 $this->parent = $parent;
18 }
19
20 /**
21 * Reduce memory usage to reduce the impact of circular references
22 */
23 function __destruct() {
24 foreach ( $this as $name => $value ) {
25 unset( $this->$name );
26 }
27 }
28
29 /**
30 * Merge another LinkHolderArray into this one
31 */
32 function merge( $other ) {
33 foreach ( $other->internals as $ns => $entries ) {
34 $this->size += count( $entries );
35 if ( !isset( $this->internals[$ns] ) ) {
36 $this->internals[$ns] = $entries;
37 } else {
38 $this->internals[$ns] += $entries;
39 }
40 }
41 $this->interwikis += $other->interwikis;
42 }
43
44 /**
45 * Returns true if the memory requirements of this object are getting large
46 */
47 function isBig() {
48 global $wgLinkHolderBatchSize;
49 return $this->size > $wgLinkHolderBatchSize;
50 }
51
52 /**
53 * Clear all stored link holders.
54 * Make sure you don't have any text left using these link holders, before you call this
55 */
56 function clear() {
57 $this->internals = array();
58 $this->interwikis = array();
59 $this->size = 0;
60 }
61
62 /**
63 * Make a link placeholder. The text returned can be later resolved to a real link with
64 * replaceLinkHolders(). This is done for two reasons: firstly to avoid further
65 * parsing of interwiki links, and secondly to allow all existence checks and
66 * article length checks (for stub links) to be bundled into a single query.
67 *
68 */
69 function makeHolder( $nt, $text = '', $query = '', $trail = '', $prefix = '' ) {
70 wfProfileIn( __METHOD__ );
71 if ( ! is_object($nt) ) {
72 # Fail gracefully
73 $retVal = "<!-- ERROR -->{$prefix}{$text}{$trail}";
74 } else {
75 # Separate the link trail from the rest of the link
76 list( $inside, $trail ) = Linker::splitTrail( $trail );
77
78 $entry = array(
79 'title' => $nt,
80 'text' => $prefix.$text.$inside,
81 'pdbk' => $nt->getPrefixedDBkey(),
82 );
83 if ( $query !== '' ) {
84 $entry['query'] = $query;
85 }
86
87 if ( $nt->isExternal() ) {
88 // Use a globally unique ID to keep the objects mergable
89 $key = $this->parent->nextLinkID();
90 $this->interwikis[$key] = $entry;
91 $retVal = "<!--IWLINK $key-->{$trail}";
92 } else {
93 $key = $this->parent->nextLinkID();
94 $ns = $nt->getNamespace();
95 $this->internals[$ns][$key] = $entry;
96 $retVal = "<!--LINK $ns:$key-->{$trail}";
97 }
98 $this->size++;
99 }
100 wfProfileOut( __METHOD__ );
101 return $retVal;
102 }
103
104 /**
105 * Get the stub threshold
106 */
107 function getStubThreshold() {
108 if ( !isset( $this->stubThreshold ) ) {
109 $this->stubThreshold = $this->parent->getUser()->getStubThreshold();
110 }
111 return $this->stubThreshold;
112 }
113
114 /**
115 * FIXME: update documentation. makeLinkObj() is deprecated.
116 * Replace <!--LINK--> link placeholders with actual links, in the buffer
117 * Placeholders created in Skin::makeLinkObj()
118 * Returns an array of link CSS classes, indexed by PDBK.
119 */
120 function replace( &$text ) {
121 wfProfileIn( __METHOD__ );
122
123 $colours = $this->replaceInternal( $text );
124 $this->replaceInterwiki( $text );
125
126 wfProfileOut( __METHOD__ );
127 return $colours;
128 }
129
130 /**
131 * Replace internal links
132 */
133 protected function replaceInternal( &$text ) {
134 if ( !$this->internals ) {
135 return;
136 }
137
138 wfProfileIn( __METHOD__ );
139 global $wgContLang;
140
141 $colours = array();
142 $sk = $this->parent->getOptions()->getSkin( $this->parent->mTitle );
143 $linkCache = LinkCache::singleton();
144 $output = $this->parent->getOutput();
145
146 wfProfileIn( __METHOD__.'-check' );
147 $dbr = wfGetDB( DB_SLAVE );
148 $page = $dbr->tableName( 'page' );
149 $threshold = $this->getStubThreshold();
150
151 # Sort by namespace
152 ksort( $this->internals );
153
154 $linkcolour_ids = array();
155
156 # Generate query
157 $query = false;
158 $current = null;
159 foreach ( $this->internals as $ns => $entries ) {
160 foreach ( $entries as $entry ) {
161 $title = $entry['title'];
162 $pdbk = $entry['pdbk'];
163
164 # Skip invalid entries.
165 # Result will be ugly, but prevents crash.
166 if ( is_null( $title ) ) {
167 continue;
168 }
169
170 # Check if it's a static known link, e.g. interwiki
171 if ( $title->isAlwaysKnown() ) {
172 $colours[$pdbk] = '';
173 } elseif ( $ns == NS_SPECIAL ) {
174 $colours[$pdbk] = 'new';
175 } elseif ( ( $id = $linkCache->getGoodLinkID( $pdbk ) ) != 0 ) {
176 $colours[$pdbk] = $sk->getLinkColour( $title, $threshold );
177 $output->addLink( $title, $id );
178 $linkcolour_ids[$id] = $pdbk;
179 } elseif ( $linkCache->isBadLink( $pdbk ) ) {
180 $colours[$pdbk] = 'new';
181 } else {
182 # Not in the link cache, add it to the query
183 if ( !isset( $current ) ) {
184 $current = $ns;
185 $query = "SELECT page_id, page_namespace, page_title, page_is_redirect, page_len, page_latest";
186 $query .= " FROM $page WHERE (page_namespace=$ns AND page_title IN(";
187 } elseif ( $current != $ns ) {
188 $current = $ns;
189 $query .= ")) OR (page_namespace=$ns AND page_title IN(";
190 } else {
191 $query .= ', ';
192 }
193
194 $query .= $dbr->addQuotes( $title->getDBkey() );
195 }
196 }
197 }
198 if ( $query ) {
199 $query .= '))';
200
201 $res = $dbr->query( $query, __METHOD__ );
202
203 # Fetch data and form into an associative array
204 # non-existent = broken
205 foreach ( $res as $s ) {
206 $title = Title::makeTitle( $s->page_namespace, $s->page_title );
207 $pdbk = $title->getPrefixedDBkey();
208 $linkCache->addGoodLinkObj( $s->page_id, $title, $s->page_len, $s->page_is_redirect, $s->page_latest );
209 $output->addLink( $title, $s->page_id );
210 # FIXME: convoluted data flow
211 # The redirect status and length is passed to getLinkColour via the LinkCache
212 # Use formal parameters instead
213 $colours[$pdbk] = $sk->getLinkColour( $title, $threshold );
214 //add id to the extension todolist
215 $linkcolour_ids[$s->page_id] = $pdbk;
216 }
217 unset( $res );
218 }
219 if ( count($linkcolour_ids) ) {
220 //pass an array of page_ids to an extension
221 wfRunHooks( 'GetLinkColours', array( $linkcolour_ids, &$colours ) );
222 }
223 wfProfileOut( __METHOD__.'-check' );
224
225 # Do a second query for different language variants of links and categories
226 if($wgContLang->hasVariants()) {
227 $this->doVariants( $colours );
228 }
229
230 # Construct search and replace arrays
231 wfProfileIn( __METHOD__.'-construct' );
232 $replacePairs = array();
233 foreach ( $this->internals as $ns => $entries ) {
234 foreach ( $entries as $index => $entry ) {
235 $pdbk = $entry['pdbk'];
236 $title = $entry['title'];
237 $query = isset( $entry['query'] ) ? $entry['query'] : '';
238 $key = "$ns:$index";
239 $searchkey = "<!--LINK $key-->";
240 if ( !isset( $colours[$pdbk] ) || $colours[$pdbk] == 'new' ) {
241 $linkCache->addBadLinkObj( $title );
242 $colours[$pdbk] = 'new';
243 $output->addLink( $title, 0 );
244 // FIXME: replace deprecated makeBrokenLinkObj() by link()
245 $replacePairs[$searchkey] = $sk->makeBrokenLinkObj( $title,
246 $entry['text'],
247 $query );
248 } else {
249 // FIXME: replace deprecated makeColouredLinkObj() by link()
250 $replacePairs[$searchkey] = $sk->makeColouredLinkObj( $title, $colours[$pdbk],
251 $entry['text'],
252 $query );
253 }
254 }
255 }
256 $replacer = new HashtableReplacer( $replacePairs, 1 );
257 wfProfileOut( __METHOD__.'-construct' );
258
259 # Do the thing
260 wfProfileIn( __METHOD__.'-replace' );
261 $text = preg_replace_callback(
262 '/(<!--LINK .*?-->)/',
263 $replacer->cb(),
264 $text);
265
266 wfProfileOut( __METHOD__.'-replace' );
267 wfProfileOut( __METHOD__ );
268 }
269
270 /**
271 * Replace interwiki links
272 */
273 protected function replaceInterwiki( &$text ) {
274 if ( empty( $this->interwikis ) ) {
275 return;
276 }
277
278 wfProfileIn( __METHOD__ );
279 # Make interwiki link HTML
280 $sk = $this->parent->getOptions()->getSkin( $this->parent->mTitle );
281 $output = $this->parent->getOutput();
282 $replacePairs = array();
283 foreach( $this->interwikis as $key => $link ) {
284 $replacePairs[$key] = $sk->link( $link['title'], $link['text'] );
285 $output->addInterwikiLink( $link['title'] );
286 }
287 $replacer = new HashtableReplacer( $replacePairs, 1 );
288
289 $text = preg_replace_callback(
290 '/<!--IWLINK (.*?)-->/',
291 $replacer->cb(),
292 $text );
293 wfProfileOut( __METHOD__ );
294 }
295
296 /**
297 * Modify $this->internals and $colours according to language variant linking rules
298 */
299 protected function doVariants( &$colours ) {
300 global $wgContLang;
301 $linkBatch = new LinkBatch();
302 $variantMap = array(); // maps $pdbkey_Variant => $keys (of link holders)
303 $output = $this->parent->getOutput();
304 $linkCache = LinkCache::singleton();
305 $sk = $this->parent->getOptions()->getSkin( $this->parent->mTitle );
306 $threshold = $this->getStubThreshold();
307 $titlesToBeConverted = '';
308 $titlesAttrs = array();
309
310 // Concatenate titles to a single string, thus we only need auto convert the
311 // single string to all variants. This would improve parser's performance
312 // significantly.
313 foreach ( $this->internals as $ns => $entries ) {
314 foreach ( $entries as $index => $entry ) {
315 $pdbk = $entry['pdbk'];
316 // we only deal with new links (in its first query)
317 if ( !isset( $colours[$pdbk] ) ) {
318 $title = $entry['title'];
319 $titleText = $title->getText();
320 $titlesAttrs[] = array(
321 'ns' => $ns,
322 'key' => "$ns:$index",
323 'titleText' => $titleText,
324 );
325 // separate titles with \0 because it would never appears
326 // in a valid title
327 $titlesToBeConverted .= $titleText . "\0";
328 }
329 }
330 }
331
332 // Now do the conversion and explode string to text of titles
333 $titlesAllVariants = $wgContLang->autoConvertToAllVariants( $titlesToBeConverted );
334 $allVariantsName = array_keys( $titlesAllVariants );
335 foreach ( $titlesAllVariants as &$titlesVariant ) {
336 $titlesVariant = explode( "\0", $titlesVariant );
337 }
338 $l = count( $titlesAttrs );
339 // Then add variants of links to link batch
340 for ( $i = 0; $i < $l; $i ++ ) {
341 foreach ( $allVariantsName as $variantName ) {
342 $textVariant = $titlesAllVariants[$variantName][$i];
343 extract( $titlesAttrs[$i] );
344 if($textVariant != $titleText){
345 $variantTitle = Title::makeTitle( $ns, $textVariant );
346 if( is_null( $variantTitle ) ) {
347 continue;
348 }
349 $linkBatch->addObj( $variantTitle );
350 $variantMap[$variantTitle->getPrefixedDBkey()][] = $key;
351 }
352 }
353 }
354
355 // process categories, check if a category exists in some variant
356 $categoryMap = array(); // maps $category_variant => $category (dbkeys)
357 $varCategories = array(); // category replacements oldDBkey => newDBkey
358 foreach( $output->getCategoryLinks() as $category ){
359 $variants = $wgContLang->autoConvertToAllVariants( $category );
360 foreach($variants as $variant){
361 if($variant != $category){
362 $variantTitle = Title::newFromDBkey( Title::makeName(NS_CATEGORY,$variant) );
363 if(is_null($variantTitle)) continue;
364 $linkBatch->addObj( $variantTitle );
365 $categoryMap[$variant] = $category;
366 }
367 }
368 }
369
370
371 if(!$linkBatch->isEmpty()){
372 // construct query
373 $dbr = wfGetDB( DB_SLAVE );
374 $varRes = $dbr->select( 'page',
375 array( 'page_id', 'page_namespace', 'page_title', 'page_is_redirect', 'page_len' ),
376 $linkBatch->constructSet( 'page', $dbr ),
377 __METHOD__
378 );
379
380 $linkcolour_ids = array();
381
382 // for each found variants, figure out link holders and replace
383 foreach ( $varRes as $s ) {
384
385 $variantTitle = Title::makeTitle( $s->page_namespace, $s->page_title );
386 $varPdbk = $variantTitle->getPrefixedDBkey();
387 $vardbk = $variantTitle->getDBkey();
388
389 $holderKeys = array();
390 if( isset( $variantMap[$varPdbk] ) ) {
391 $holderKeys = $variantMap[$varPdbk];
392 $linkCache->addGoodLinkObj( $s->page_id, $variantTitle, $s->page_len, $s->page_is_redirect );
393 $output->addLink( $variantTitle, $s->page_id );
394 }
395
396 // loop over link holders
397 foreach( $holderKeys as $key ) {
398 list( $ns, $index ) = explode( ':', $key, 2 );
399 $entry =& $this->internals[$ns][$index];
400 $pdbk = $entry['pdbk'];
401
402 if(!isset($colours[$pdbk])){
403 // found link in some of the variants, replace the link holder data
404 $entry['title'] = $variantTitle;
405 $entry['pdbk'] = $varPdbk;
406
407 // set pdbk and colour
408 # FIXME: convoluted data flow
409 # The redirect status and length is passed to getLinkColour via the LinkCache
410 # Use formal parameters instead
411 $colours[$varPdbk] = $sk->getLinkColour( $variantTitle, $threshold );
412 $linkcolour_ids[$s->page_id] = $pdbk;
413 }
414 }
415
416 // check if the object is a variant of a category
417 if(isset($categoryMap[$vardbk])){
418 $oldkey = $categoryMap[$vardbk];
419 if($oldkey != $vardbk)
420 $varCategories[$oldkey]=$vardbk;
421 }
422 }
423 wfRunHooks( 'GetLinkColours', array( $linkcolour_ids, &$colours ) );
424
425 // rebuild the categories in original order (if there are replacements)
426 if(count($varCategories)>0){
427 $newCats = array();
428 $originalCats = $output->getCategories();
429 foreach($originalCats as $cat => $sortkey){
430 // make the replacement
431 if( array_key_exists($cat,$varCategories) )
432 $newCats[$varCategories[$cat]] = $sortkey;
433 else $newCats[$cat] = $sortkey;
434 }
435 $output->setCategoryLinks($newCats);
436 }
437 }
438 }
439
440 /**
441 * Replace <!--LINK--> link placeholders with plain text of links
442 * (not HTML-formatted).
443 *
444 * @param $text String
445 * @return String
446 */
447 function replaceText( $text ) {
448 wfProfileIn( __METHOD__ );
449
450 $text = preg_replace_callback(
451 '/<!--(LINK|IWLINK) (.*?)-->/',
452 array( &$this, 'replaceTextCallback' ),
453 $text );
454
455 wfProfileOut( __METHOD__ );
456 return $text;
457 }
458
459 /**
460 * Callback for replaceText()
461 *
462 * @param $matches Array
463 * @return string
464 * @private
465 */
466 function replaceTextCallback( $matches ) {
467 $type = $matches[1];
468 $key = $matches[2];
469 if( $type == 'LINK' ) {
470 list( $ns, $index ) = explode( ':', $key, 2 );
471 if( isset( $this->internals[$ns][$index]['text'] ) ) {
472 return $this->internals[$ns][$index]['text'];
473 }
474 } elseif( $type == 'IWLINK' ) {
475 if( isset( $this->interwikis[$key]['text'] ) ) {
476 return $this->interwikis[$key]['text'];
477 }
478 }
479 return $matches[0];
480 }
481 }