Merge "Minor CSS cleanup for Vector and Monobook skins"
[lhc/web/wiklou.git] / includes / specials / SpecialAllpages.php
1 <?php
2 /**
3 * Implements Special:Allpages
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 SpecialPage
22 */
23
24 /**
25 * Implements Special:Allpages
26 *
27 * @ingroup SpecialPage
28 */
29 class SpecialAllpages extends IncludableSpecialPage {
30
31 /**
32 * Maximum number of pages to show on single subpage.
33 *
34 * @var int $maxPerPage
35 */
36 protected $maxPerPage = 345;
37
38 /**
39 * Maximum number of pages to show on single index subpage.
40 *
41 * @var int $maxLineCount
42 */
43 protected $maxLineCount = 100;
44
45 /**
46 * Maximum number of chars to show for an entry.
47 *
48 * @var int $maxPageLength
49 */
50 protected $maxPageLength = 70;
51
52 /**
53 * Determines, which message describes the input field 'nsfrom'.
54 *
55 * @var string $nsfromMsg
56 */
57 protected $nsfromMsg = 'allpagesfrom';
58
59 /**
60 * Constructor
61 *
62 * @param string $name name of the special page, as seen in links and URLs (default: 'Allpages')
63 */
64 function __construct( $name = 'Allpages' ) {
65 parent::__construct( $name );
66 }
67
68 /**
69 * Entry point : initialise variables and call subfunctions.
70 *
71 * @param string $par becomes "FOO" when called like Special:Allpages/FOO (default NULL)
72 */
73 function execute( $par ) {
74 $request = $this->getRequest();
75 $out = $this->getOutput();
76
77 $this->setHeaders();
78 $this->outputHeader();
79 $out->allowClickjacking();
80
81 # GET values
82 $from = $request->getVal( 'from', null );
83 $to = $request->getVal( 'to', null );
84 $namespace = $request->getInt( 'namespace' );
85 $hideredirects = $request->getBool( 'hideredirects', false );
86
87 $namespaces = $this->getContext()->getLanguage()->getNamespaces();
88
89 $out->setPageTitle(
90 ( $namespace > 0 && in_array( $namespace, array_keys( $namespaces ) ) ) ?
91 $this->msg( 'allinnamespace', str_replace( '_', ' ', $namespaces[$namespace] ) ) :
92 $this->msg( 'allarticles' )
93 );
94 $out->addModuleStyles( 'mediawiki.special' );
95
96 if ( $par !== null ) {
97 $this->showChunk( $namespace, $par, $to, $hideredirects );
98 } elseif ( $from !== null && $to === null ) {
99 $this->showChunk( $namespace, $from, $to, $hideredirects );
100 } else {
101 $this->showToplevel( $namespace, $from, $to, $hideredirects );
102 }
103 }
104
105 /**
106 * HTML for the top form
107 *
108 * @param $namespace Integer: a namespace constant (default NS_MAIN).
109 * @param string $from dbKey we are starting listing at.
110 * @param string $to dbKey we are ending listing at.
111 * @param bool $hideredirects dont show redirects (default FALSE)
112 * @return string
113 */
114 function namespaceForm( $namespace = NS_MAIN, $from = '', $to = '', $hideredirects = false ) {
115 global $wgScript;
116 $t = $this->getTitle();
117
118 $out = Xml::openElement( 'div', array( 'class' => 'namespaceoptions' ) );
119 $out .= Xml::openElement( 'form', array( 'method' => 'get', 'action' => $wgScript ) );
120 $out .= Html::hidden( 'title', $t->getPrefixedText() );
121 $out .= Xml::openElement( 'fieldset' );
122 $out .= Xml::element( 'legend', null, $this->msg( 'allpages' )->text() );
123 $out .= Xml::openElement( 'table', array( 'id' => 'nsselect', 'class' => 'allpages' ) );
124 $out .= "<tr>
125 <td class='mw-label'>" .
126 Xml::label( $this->msg( 'allpagesfrom' )->text(), 'nsfrom' ) .
127 " </td>
128 <td class='mw-input'>" .
129 Xml::input( 'from', 30, str_replace( '_', ' ', $from ), array( 'id' => 'nsfrom' ) ) .
130 " </td>
131 </tr>
132 <tr>
133 <td class='mw-label'>" .
134 Xml::label( $this->msg( 'allpagesto' )->text(), 'nsto' ) .
135 " </td>
136 <td class='mw-input'>" .
137 Xml::input( 'to', 30, str_replace( '_', ' ', $to ), array( 'id' => 'nsto' ) ) .
138 " </td>
139 </tr>
140 <tr>
141 <td class='mw-label'>" .
142 Xml::label( $this->msg( 'namespace' )->text(), 'namespace' ) .
143 " </td>
144 <td class='mw-input'>" .
145 Html::namespaceSelector(
146 array( 'selected' => $namespace ),
147 array( 'name' => 'namespace', 'id' => 'namespace' )
148 ) . ' ' .
149 Xml::checkLabel(
150 $this->msg( 'allpages-hide-redirects' )->text(),
151 'hideredirects',
152 'hideredirects',
153 $hideredirects
154 ) . ' ' .
155 Xml::submitButton( $this->msg( 'allpagessubmit' )->text() ) .
156 " </td>
157 </tr>";
158 $out .= Xml::closeElement( 'table' );
159 $out .= Xml::closeElement( 'fieldset' );
160 $out .= Xml::closeElement( 'form' );
161 $out .= Xml::closeElement( 'div' );
162
163 return $out;
164 }
165
166 /**
167 * @param $namespace Integer (default NS_MAIN)
168 * @param string $from list all pages from this name
169 * @param string $to list all pages to this name
170 * @param bool $hideredirects dont show redirects (default FALSE)
171 */
172 function showToplevel( $namespace = NS_MAIN, $from = '', $to = '', $hideredirects = false ) {
173 $output = $this->getOutput();
174
175 # TODO: Either make this *much* faster or cache the title index points
176 # in the querycache table.
177
178 $dbr = wfGetDB( DB_SLAVE );
179 $out = "";
180 $where = array( 'page_namespace' => $namespace );
181
182 if ( $hideredirects ) {
183 $where['page_is_redirect'] = 0;
184 }
185
186 $from = Title::makeTitleSafe( $namespace, $from );
187 $to = Title::makeTitleSafe( $namespace, $to );
188 $from = ( $from && $from->isLocal() ) ? $from->getDBkey() : null;
189 $to = ( $to && $to->isLocal() ) ? $to->getDBkey() : null;
190
191 if ( isset( $from ) ) {
192 $where[] = 'page_title >= ' . $dbr->addQuotes( $from );
193 }
194
195 if ( isset( $to ) ) {
196 $where[] = 'page_title <= ' . $dbr->addQuotes( $to );
197 }
198
199 global $wgMemc;
200 $key = wfMemcKey( 'allpages', 'ns', $namespace, sha1( $from ), sha1( $to ) );
201 $lines = $wgMemc->get( $key );
202
203 $count = $dbr->estimateRowCount( 'page', '*', $where, __METHOD__ );
204 $maxPerSubpage = intval( $count / $this->maxLineCount );
205 $maxPerSubpage = max( $maxPerSubpage, $this->maxPerPage );
206
207 if ( !is_array( $lines ) ) {
208 $options = array( 'LIMIT' => 1 );
209 $options['ORDER BY'] = 'page_title ASC';
210 $firstTitle = $dbr->selectField( 'page', 'page_title', $where, __METHOD__, $options );
211 $lastTitle = $firstTitle;
212 # This array is going to hold the page_titles in order.
213 $lines = array( $firstTitle );
214 # If we are going to show n rows, we need n+1 queries to find the relevant titles.
215 $done = false;
216 while ( !$done ) {
217 // Fetch the last title of this chunk and the first of the next
218 $chunk = ( $lastTitle === false )
219 ? array()
220 : array( 'page_title >= ' . $dbr->addQuotes( $lastTitle ) );
221 $res = $dbr->select( 'page', /* FROM */
222 'page_title', /* WHAT */
223 array_merge( $where, $chunk ),
224 __METHOD__,
225 array( 'LIMIT' => 2, 'OFFSET' => $maxPerSubpage - 1, 'ORDER BY' => 'page_title ASC' )
226 );
227
228 $s = $dbr->fetchObject( $res );
229 if ( $s ) {
230 array_push( $lines, $s->page_title );
231 } else {
232 // Final chunk, but ended prematurely. Go back and find the end.
233 $endTitle = $dbr->selectField( 'page', 'MAX(page_title)',
234 array_merge( $where, $chunk ),
235 __METHOD__ );
236 array_push( $lines, $endTitle );
237 $done = true;
238 }
239
240 $s = $res->fetchObject();
241 if ( $s ) {
242 array_push( $lines, $s->page_title );
243 $lastTitle = $s->page_title;
244 } else {
245 // This was a final chunk and ended exactly at the limit.
246 // Rare but convenient!
247 $done = true;
248 }
249 $res->free();
250 }
251 $wgMemc->add( $key, $lines, 3600 );
252 }
253
254 // If there are only two or less sections, don't even display them.
255 // Instead, display the first section directly.
256 if ( count( $lines ) <= 2 ) {
257 if ( !empty( $lines ) ) {
258 $this->showChunk( $namespace, $from, $to, $hideredirects );
259 } else {
260 $output->addHTML( $this->namespaceForm( $namespace, $from, $to, $hideredirects ) );
261 }
262
263 return;
264 }
265
266 # At this point, $lines should contain an even number of elements.
267 $out .= Xml::openElement( 'table', array( 'class' => 'allpageslist' ) );
268 while ( count( $lines ) > 0 ) {
269 $inpoint = array_shift( $lines );
270 $outpoint = array_shift( $lines );
271 $out .= $this->showline( $inpoint, $outpoint, $namespace, $hideredirects );
272 }
273 $out .= Xml::closeElement( 'table' );
274 $nsForm = $this->namespaceForm( $namespace, $from, $to, $hideredirects );
275
276 # Is there more?
277 if ( $this->including() ) {
278 $out2 = '';
279 } else {
280 if ( isset( $from ) || isset( $to ) ) {
281 $out2 = Xml::openElement( 'table', array( 'class' => 'mw-allpages-table-form' ) ) .
282 '<tr>
283 <td>' .
284 $nsForm .
285 '</td>
286 <td class="mw-allpages-nav">' .
287 Linker::link( $this->getTitle(), $this->msg( 'allpages' )->escaped(),
288 array(), array(), 'known' ) .
289 "</td>
290 </tr>" .
291 Xml::closeElement( 'table' );
292 } else {
293 $out2 = $nsForm;
294 }
295 }
296 $output->addHTML( $out2 . $out );
297 }
298
299 /**
300 * Show a line of "ABC to DEF" ranges of articles
301 *
302 * @param string $inpoint lower limit of pagenames
303 * @param string $outpoint upper limit of pagenames
304 * @param $namespace Integer (Default NS_MAIN)
305 * @param bool $hideRedirects don't show redirects. Default: false
306 * @return string
307 */
308 function showline( $inpoint, $outpoint, $namespace = NS_MAIN, $hideRedirects = false ) {
309 // Use content language since page titles are considered to use content language
310 global $wgContLang;
311 $inpointf = htmlspecialchars( str_replace( '_', ' ', $inpoint ) );
312 $outpointf = htmlspecialchars( str_replace( '_', ' ', $outpoint ) );
313 // Don't let the length runaway
314 $inpointf = $wgContLang->truncate( $inpointf, $this->maxPageLength );
315 $outpointf = $wgContLang->truncate( $outpointf, $this->maxPageLength );
316
317 $queryParams = array(
318 'from' => $inpoint,
319 'to' => $outpoint,
320 );
321
322 if ( $namespace ) {
323 $queryParams['namespace'] = $namespace;
324 }
325 if ( $hideRedirects ) {
326 $queryParams['hideredirects'] = 1;
327 }
328
329 $link = htmlspecialchars(
330 $this->getTitle()->getLocalURL( $queryParams ) );
331
332 $out = $this->msg( 'alphaindexline' )->rawParams(
333 "<a href=\"$link\">$inpointf</a></td><td>",
334 "</td><td><a href=\"$link\">$outpointf</a>"
335 )->escaped();
336
337 return '<tr><td class="mw-allpages-alphaindexline">' . $out . '</td></tr>';
338 }
339
340 /**
341 * @param int $namespace Namespace (Default NS_MAIN)
342 * @param string $from list all pages from this name (default FALSE)
343 * @param string $to list all pages to this name (default FALSE)
344 * @param bool $hideredirects dont show redirects (default FALSE)
345 */
346 function showChunk( $namespace = NS_MAIN, $from = false, $to = false, $hideredirects = false ) {
347 $output = $this->getOutput();
348
349 $fromList = $this->getNamespaceKeyAndText( $namespace, $from );
350 $toList = $this->getNamespaceKeyAndText( $namespace, $to );
351 $namespaces = $this->getContext()->getLanguage()->getNamespaces();
352 $n = 0;
353
354 if ( !$fromList || !$toList ) {
355 $out = $this->msg( 'allpagesbadtitle' )->parseAsBlock();
356 } elseif ( !in_array( $namespace, array_keys( $namespaces ) ) ) {
357 // Show errormessage and reset to NS_MAIN
358 $out = $this->msg( 'allpages-bad-ns', $namespace )->parse();
359 $namespace = NS_MAIN;
360 } else {
361 list( $namespace, $fromKey, $from ) = $fromList;
362 list( , $toKey, $to ) = $toList;
363
364 $dbr = wfGetDB( DB_SLAVE );
365 $conds = array(
366 'page_namespace' => $namespace,
367 'page_title >= ' . $dbr->addQuotes( $fromKey )
368 );
369
370 if ( $hideredirects ) {
371 $conds['page_is_redirect'] = 0;
372 }
373
374 if ( $toKey !== "" ) {
375 $conds[] = 'page_title <= ' . $dbr->addQuotes( $toKey );
376 }
377
378 $res = $dbr->select( 'page',
379 array( 'page_namespace', 'page_title', 'page_is_redirect', 'page_id' ),
380 $conds,
381 __METHOD__,
382 array(
383 'ORDER BY' => 'page_title',
384 'LIMIT' => $this->maxPerPage + 1,
385 'USE INDEX' => 'name_title',
386 )
387 );
388
389 if ( $res->numRows() > 0 ) {
390 $out = Xml::openElement( 'table', array( 'class' => 'mw-allpages-table-chunk' ) );
391 while ( ( $n < $this->maxPerPage ) && ( $s = $res->fetchObject() ) ) {
392 $t = Title::newFromRow( $s );
393 if ( $t ) {
394 $link = ( $s->page_is_redirect ? '<div class="allpagesredirect">' : '' ) .
395 Linker::link( $t ) .
396 ( $s->page_is_redirect ? '</div>' : '' );
397 } else {
398 $link = '[[' . htmlspecialchars( $s->page_title ) . ']]';
399 }
400
401 if ( $n % 3 == 0 ) {
402 $out .= '<tr>';
403 }
404
405 $out .= "<td style=\"width:33%\">$link</td>";
406 $n++;
407 if ( $n % 3 == 0 ) {
408 $out .= "</tr>\n";
409 }
410 }
411
412 if ( ( $n % 3 ) != 0 ) {
413 $out .= "</tr>\n";
414 }
415 $out .= Xml::closeElement( 'table' );
416 } else {
417 $out = '';
418 }
419 }
420
421 if ( $this->including() ) {
422 $out2 = '';
423 } else {
424 if ( $from == '' ) {
425 // First chunk; no previous link.
426 $prevTitle = null;
427 } else {
428 # Get the last title from previous chunk
429 $dbr = wfGetDB( DB_SLAVE );
430 $res_prev = $dbr->select(
431 'page',
432 'page_title',
433 array( 'page_namespace' => $namespace, 'page_title < ' . $dbr->addQuotes( $from ) ),
434 __METHOD__,
435 array( 'ORDER BY' => 'page_title DESC',
436 'LIMIT' => $this->maxPerPage, 'OFFSET' => ( $this->maxPerPage - 1 )
437 )
438 );
439
440 # Get first title of previous complete chunk
441 if ( $dbr->numrows( $res_prev ) >= $this->maxPerPage ) {
442 $pt = $dbr->fetchObject( $res_prev );
443 $prevTitle = Title::makeTitle( $namespace, $pt->page_title );
444 } else {
445 # The previous chunk is not complete, need to link to the very first title
446 # available in the database
447 $options = array( 'LIMIT' => 1 );
448 if ( !$dbr->implicitOrderby() ) {
449 $options['ORDER BY'] = 'page_title';
450 }
451 $reallyFirstPage_title = $dbr->selectField( 'page', 'page_title',
452 array( 'page_namespace' => $namespace ), __METHOD__, $options );
453 # Show the previous link if it s not the current requested chunk
454 if ( $from != $reallyFirstPage_title ) {
455 $prevTitle = Title::makeTitle( $namespace, $reallyFirstPage_title );
456 } else {
457 $prevTitle = null;
458 }
459 }
460 }
461
462 $self = $this->getTitle();
463
464 $nsForm = $this->namespaceForm( $namespace, $from, $to, $hideredirects );
465 $out2 = Xml::openElement( 'table', array( 'class' => 'mw-allpages-table-form' ) ) .
466 '<tr>
467 <td>' .
468 $nsForm .
469 '</td>
470 <td class="mw-allpages-nav">' .
471 Linker::link( $self, $this->msg( 'allpages' )->escaped() );
472
473 # Do we put a previous link ?
474 if ( isset( $prevTitle ) && $pt = $prevTitle->getText() ) {
475 $query = array( 'from' => $prevTitle->getText() );
476
477 if ( $namespace ) {
478 $query['namespace'] = $namespace;
479 }
480
481 if ( $hideredirects ) {
482 $query['hideredirects'] = $hideredirects;
483 }
484
485 $prevLink = Linker::linkKnown(
486 $self,
487 $this->msg( 'prevpage', $pt )->escaped(),
488 array(),
489 $query
490 );
491 $out2 = $this->getLanguage()->pipeList( array( $out2, $prevLink ) );
492 }
493
494 if ( $n == $this->maxPerPage && $s = $res->fetchObject() ) {
495 # $s is the first link of the next chunk
496 $t = Title::makeTitle( $namespace, $s->page_title );
497 $query = array( 'from' => $t->getText() );
498
499 if ( $namespace ) {
500 $query['namespace'] = $namespace;
501 }
502
503 if ( $hideredirects ) {
504 $query['hideredirects'] = $hideredirects;
505 }
506
507 $nextLink = Linker::linkKnown(
508 $self,
509 $this->msg( 'nextpage', $t->getText() )->escaped(),
510 array(),
511 $query
512 );
513 $out2 = $this->getLanguage()->pipeList( array( $out2, $nextLink ) );
514 }
515 $out2 .= "</td></tr></table>";
516 }
517
518 $output->addHTML( $out2 . $out );
519
520 $links = array();
521 if ( isset( $prevLink ) ) {
522 $links[] = $prevLink;
523 }
524
525 if ( isset( $nextLink ) ) {
526 $links[] = $nextLink;
527 }
528
529 if ( count( $links ) ) {
530 $output->addHTML(
531 Html::element( 'hr' ) .
532 Html::rawElement( 'div', array( 'class' => 'mw-allpages-nav' ),
533 $this->getLanguage()->pipeList( $links )
534 )
535 );
536 }
537 }
538
539 /**
540 * @param $ns Integer: the namespace of the article
541 * @param string $text the name of the article
542 * @return array( int namespace, string dbkey, string pagename ) or NULL on error
543 */
544 protected function getNamespaceKeyAndText( $ns, $text ) {
545 if ( $text == '' ) {
546 # shortcut for common case
547 return array( $ns, '', '' );
548 }
549
550 $t = Title::makeTitleSafe( $ns, $text );
551 if ( $t && $t->isLocal() ) {
552 return array( $t->getNamespace(), $t->getDBkey(), $t->getText() );
553 } elseif ( $t ) {
554 return null;
555 }
556
557 # try again, in case the problem was an empty pagename
558 $text = preg_replace( '/(#|$)/', 'X$1', $text );
559 $t = Title::makeTitleSafe( $ns, $text );
560 if ( $t && $t->isLocal() ) {
561 return array( $t->getNamespace(), '', '' );
562 } else {
563 return null;
564 }
565 }
566
567 protected function getGroupName() {
568 return 'pages';
569 }
570 }