3 * Implements Special:Allpages
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.
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.
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
21 * @ingroup SpecialPage
25 * Implements Special:Allpages
27 * @ingroup SpecialPage
29 class SpecialAllpages
extends IncludableSpecialPage
{
32 * Maximum number of pages to show on single subpage.
34 * @var int $maxPerPage
36 protected $maxPerPage = 345;
39 * Maximum number of pages to show on single index subpage.
41 * @var int $maxLineCount
43 protected $maxLineCount = 100;
46 * Maximum number of chars to show for an entry.
48 * @var int $maxPageLength
50 protected $maxPageLength = 70;
53 * Determines, which message describes the input field 'nsfrom'.
55 * @var string $nsfromMsg
57 protected $nsfromMsg = 'allpagesfrom';
62 * @param string $name name of the special page, as seen in links and URLs (default: 'Allpages')
64 function __construct( $name = 'Allpages' ) {
65 parent
::__construct( $name );
69 * Entry point : initialise variables and call subfunctions.
71 * @param string $par becomes "FOO" when called like Special:Allpages/FOO (default NULL)
73 function execute( $par ) {
74 $request = $this->getRequest();
75 $out = $this->getOutput();
78 $this->outputHeader();
79 $out->allowClickjacking();
82 $from = $request->getVal( 'from', null );
83 $to = $request->getVal( 'to', null );
84 $namespace = $request->getInt( 'namespace' );
85 $hideredirects = $request->getBool( 'hideredirects', false );
87 $namespaces = $this->getContext()->getLanguage()->getNamespaces();
90 ( $namespace > 0 && in_array( $namespace, array_keys( $namespaces ) ) ) ?
91 $this->msg( 'allinnamespace', str_replace( '_', ' ', $namespaces[$namespace] ) ) :
92 $this->msg( 'allarticles' )
94 $out->addModuleStyles( 'mediawiki.special' );
96 if ( $par !== null ) {
97 $this->showChunk( $namespace, $par, $to, $hideredirects );
98 } elseif ( $from !== null && $to === null ) {
99 $this->showChunk( $namespace, $from, $to, $hideredirects );
101 $this->showToplevel( $namespace, $from, $to, $hideredirects );
106 * HTML for the top form
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)
114 function namespaceForm( $namespace = NS_MAIN
, $from = '', $to = '', $hideredirects = false ) {
116 $t = $this->getTitle();
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' ) );
125 <td class='mw-label'>" .
126 Xml
::label( $this->msg( 'allpagesfrom' )->text(), 'nsfrom' ) .
128 <td class='mw-input'>" .
129 Xml
::input( 'from', 30, str_replace( '_', ' ', $from ), array( 'id' => 'nsfrom' ) ) .
133 <td class='mw-label'>" .
134 Xml
::label( $this->msg( 'allpagesto' )->text(), 'nsto' ) .
136 <td class='mw-input'>" .
137 Xml
::input( 'to', 30, str_replace( '_', ' ', $to ), array( 'id' => 'nsto' ) ) .
141 <td class='mw-label'>" .
142 Xml
::label( $this->msg( 'namespace' )->text(), 'namespace' ) .
144 <td class='mw-input'>" .
145 Html
::namespaceSelector(
146 array( 'selected' => $namespace ),
147 array( 'name' => 'namespace', 'id' => 'namespace' )
150 $this->msg( 'allpages-hide-redirects' )->text(),
155 Xml
::submitButton( $this->msg( 'allpagessubmit' )->text() ) .
158 $out .= Xml
::closeElement( 'table' );
159 $out .= Xml
::closeElement( 'fieldset' );
160 $out .= Xml
::closeElement( 'form' );
161 $out .= Xml
::closeElement( 'div' );
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)
172 function showToplevel( $namespace = NS_MAIN
, $from = '', $to = '', $hideredirects = false ) {
173 $output = $this->getOutput();
175 # TODO: Either make this *much* faster or cache the title index points
176 # in the querycache table.
178 $dbr = wfGetDB( DB_SLAVE
);
180 $where = array( 'page_namespace' => $namespace );
182 if ( $hideredirects ) {
183 $where['page_is_redirect'] = 0;
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;
191 if ( isset( $from ) ) {
192 $where[] = 'page_title >= ' . $dbr->addQuotes( $from );
195 if ( isset( $to ) ) {
196 $where[] = 'page_title <= ' . $dbr->addQuotes( $to );
200 $key = wfMemcKey( 'allpages', 'ns', $namespace, sha1( $from ), sha1( $to ) );
201 $lines = $wgMemc->get( $key );
203 $count = $dbr->estimateRowCount( 'page', '*', $where, __METHOD__
);
204 $maxPerSubpage = intval( $count / $this->maxLineCount
);
205 $maxPerSubpage = max( $maxPerSubpage, $this->maxPerPage
);
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.
217 // Fetch the last title of this chunk and the first of the next
218 $chunk = ( $lastTitle === false )
220 : array( 'page_title >= ' . $dbr->addQuotes( $lastTitle ) );
221 $res = $dbr->select( 'page', /* FROM */
222 'page_title', /* WHAT */
223 array_merge( $where, $chunk ),
225 array( 'LIMIT' => 2, 'OFFSET' => $maxPerSubpage - 1, 'ORDER BY' => 'page_title ASC' )
228 $s = $dbr->fetchObject( $res );
230 array_push( $lines, $s->page_title
);
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 ),
236 array_push( $lines, $endTitle );
240 $s = $res->fetchObject();
242 array_push( $lines, $s->page_title
);
243 $lastTitle = $s->page_title
;
245 // This was a final chunk and ended exactly at the limit.
246 // Rare but convenient!
251 $wgMemc->add( $key, $lines, 3600 );
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 );
260 $output->addHTML( $this->namespaceForm( $namespace, $from, $to, $hideredirects ) );
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 );
273 $out .= Xml
::closeElement( 'table' );
274 $nsForm = $this->namespaceForm( $namespace, $from, $to, $hideredirects );
277 if ( $this->including() ) {
280 if ( isset( $from ) ||
isset( $to ) ) {
281 $out2 = Xml
::openElement( 'table', array( 'class' => 'mw-allpages-table-form' ) ) .
286 <td class="mw-allpages-nav">' .
287 Linker
::link( $this->getTitle(), $this->msg( 'allpages' )->escaped(),
288 array(), array(), 'known' ) .
291 Xml
::closeElement( 'table' );
296 $output->addHTML( $out2 . $out );
300 * Show a line of "ABC to DEF" ranges of articles
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
308 function showline( $inpoint, $outpoint, $namespace = NS_MAIN
, $hideRedirects = false ) {
309 // Use content language since page titles are considered to use content language
312 $inpointf = str_replace( '_', ' ', $inpoint );
313 $outpointf = str_replace( '_', ' ', $outpoint );
315 // Don't let the length runaway
316 $inpointf = $wgContLang->truncate( $inpointf, $this->maxPageLength
);
317 $outpointf = $wgContLang->truncate( $outpointf, $this->maxPageLength
);
319 $queryParams = array(
325 $queryParams['namespace'] = $namespace;
327 if ( $hideRedirects ) {
328 $queryParams['hideredirects'] = 1;
331 $url = $this->getTitle()->getLocalURL( $queryParams );
332 $inlink = Html
::element( 'a', array( 'href' => $url ), $inpointf );
333 $outlink = Html
::element( 'a', array( 'href' => $url ), $outpointf );
335 $out = $this->msg( 'alphaindexline' )->rawParams(
340 return '<tr><td class="mw-allpages-alphaindexline">' . $out . '</td></tr>';
344 * @param int $namespace Namespace (Default NS_MAIN)
345 * @param string $from list all pages from this name (default FALSE)
346 * @param string $to list all pages to this name (default FALSE)
347 * @param bool $hideredirects dont show redirects (default FALSE)
349 function showChunk( $namespace = NS_MAIN
, $from = false, $to = false, $hideredirects = false ) {
350 $output = $this->getOutput();
352 $fromList = $this->getNamespaceKeyAndText( $namespace, $from );
353 $toList = $this->getNamespaceKeyAndText( $namespace, $to );
354 $namespaces = $this->getContext()->getLanguage()->getNamespaces();
357 if ( !$fromList ||
!$toList ) {
358 $out = $this->msg( 'allpagesbadtitle' )->parseAsBlock();
359 } elseif ( !in_array( $namespace, array_keys( $namespaces ) ) ) {
360 // Show errormessage and reset to NS_MAIN
361 $out = $this->msg( 'allpages-bad-ns', $namespace )->parse();
362 $namespace = NS_MAIN
;
364 list( $namespace, $fromKey, $from ) = $fromList;
365 list( , $toKey, $to ) = $toList;
367 $dbr = wfGetDB( DB_SLAVE
);
369 'page_namespace' => $namespace,
370 'page_title >= ' . $dbr->addQuotes( $fromKey )
373 if ( $hideredirects ) {
374 $conds['page_is_redirect'] = 0;
377 if ( $toKey !== "" ) {
378 $conds[] = 'page_title <= ' . $dbr->addQuotes( $toKey );
381 $res = $dbr->select( 'page',
382 array( 'page_namespace', 'page_title', 'page_is_redirect', 'page_id' ),
386 'ORDER BY' => 'page_title',
387 'LIMIT' => $this->maxPerPage +
1,
388 'USE INDEX' => 'name_title',
392 if ( $res->numRows() > 0 ) {
393 $out = Xml
::openElement( 'table', array( 'class' => 'mw-allpages-table-chunk' ) );
394 while ( ( $n < $this->maxPerPage
) && ( $s = $res->fetchObject() ) ) {
395 $t = Title
::newFromRow( $s );
397 $link = ( $s->page_is_redirect ?
'<div class="allpagesredirect">' : '' ) .
399 ( $s->page_is_redirect ?
'</div>' : '' );
401 $link = '[[' . htmlspecialchars( $s->page_title
) . ']]';
408 $out .= "<td style=\"width:33%\">$link</td>";
415 if ( ( $n %
3 ) != 0 ) {
418 $out .= Xml
::closeElement( 'table' );
424 if ( $this->including() ) {
428 // First chunk; no previous link.
431 # Get the last title from previous chunk
432 $dbr = wfGetDB( DB_SLAVE
);
433 $res_prev = $dbr->select(
436 array( 'page_namespace' => $namespace, 'page_title < ' . $dbr->addQuotes( $from ) ),
438 array( 'ORDER BY' => 'page_title DESC',
439 'LIMIT' => $this->maxPerPage
, 'OFFSET' => ( $this->maxPerPage
- 1 )
443 # Get first title of previous complete chunk
444 if ( $dbr->numrows( $res_prev ) >= $this->maxPerPage
) {
445 $pt = $dbr->fetchObject( $res_prev );
446 $prevTitle = Title
::makeTitle( $namespace, $pt->page_title
);
448 # The previous chunk is not complete, need to link to the very first title
449 # available in the database
450 $options = array( 'LIMIT' => 1 );
451 if ( !$dbr->implicitOrderby() ) {
452 $options['ORDER BY'] = 'page_title';
454 $reallyFirstPage_title = $dbr->selectField( 'page', 'page_title',
455 array( 'page_namespace' => $namespace ), __METHOD__
, $options );
456 # Show the previous link if it s not the current requested chunk
457 if ( $from != $reallyFirstPage_title ) {
458 $prevTitle = Title
::makeTitle( $namespace, $reallyFirstPage_title );
465 $self = $this->getTitle();
467 $nsForm = $this->namespaceForm( $namespace, $from, $to, $hideredirects );
468 $out2 = Xml
::openElement( 'table', array( 'class' => 'mw-allpages-table-form' ) ) .
473 <td class="mw-allpages-nav">' .
474 Linker
::link( $self, $this->msg( 'allpages' )->escaped() );
476 # Do we put a previous link ?
477 if ( isset( $prevTitle ) && $pt = $prevTitle->getText() ) {
478 $query = array( 'from' => $prevTitle->getText() );
481 $query['namespace'] = $namespace;
484 if ( $hideredirects ) {
485 $query['hideredirects'] = $hideredirects;
488 $prevLink = Linker
::linkKnown(
490 $this->msg( 'prevpage', $pt )->escaped(),
494 $out2 = $this->getLanguage()->pipeList( array( $out2, $prevLink ) );
497 if ( $n == $this->maxPerPage
&& $s = $res->fetchObject() ) {
498 # $s is the first link of the next chunk
499 $t = Title
::makeTitle( $namespace, $s->page_title
);
500 $query = array( 'from' => $t->getText() );
503 $query['namespace'] = $namespace;
506 if ( $hideredirects ) {
507 $query['hideredirects'] = $hideredirects;
510 $nextLink = Linker
::linkKnown(
512 $this->msg( 'nextpage', $t->getText() )->escaped(),
516 $out2 = $this->getLanguage()->pipeList( array( $out2, $nextLink ) );
518 $out2 .= "</td></tr></table>";
521 $output->addHTML( $out2 . $out );
524 if ( isset( $prevLink ) ) {
525 $links[] = $prevLink;
528 if ( isset( $nextLink ) ) {
529 $links[] = $nextLink;
532 if ( count( $links ) ) {
534 Html
::element( 'hr' ) .
535 Html
::rawElement( 'div', array( 'class' => 'mw-allpages-nav' ),
536 $this->getLanguage()->pipeList( $links )
543 * @param $ns Integer: the namespace of the article
544 * @param string $text the name of the article
545 * @return array( int namespace, string dbkey, string pagename ) or NULL on error
547 protected function getNamespaceKeyAndText( $ns, $text ) {
549 # shortcut for common case
550 return array( $ns, '', '' );
553 $t = Title
::makeTitleSafe( $ns, $text );
554 if ( $t && $t->isLocal() ) {
555 return array( $t->getNamespace(), $t->getDBkey(), $t->getText() );
560 # try again, in case the problem was an empty pagename
561 $text = preg_replace( '/(#|$)/', 'X$1', $text );
562 $t = Title
::makeTitleSafe( $ns, $text );
563 if ( $t && $t->isLocal() ) {
564 return array( $t->getNamespace(), '', '' );
570 protected function getGroupName() {