3 * Implements Special:Shortpages
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 * SpecialShortpages extends QueryPage. It is used to return the shortest
26 * pages in the database.
28 * @ingroup SpecialPage
30 class ShortPagesPage
extends QueryPage
{
32 function __construct( $name = 'Shortpages' ) {
33 parent
::__construct( $name );
36 function isSyndicated() {
40 public function getQueryInfo() {
43 'page_namespace' => MWNamespace
::getContentNamespaces(),
44 'page_is_redirect' => 0
47 $options = [ 'USE INDEX' => [ 'page' => 'page_redirect_namespace_len' ] ];
49 // Allow extensions to modify the query
50 Hooks
::run( 'ShortPagesQuery', [ &$tables, &$conds, &$joinConds, &$options ] );
55 'namespace' => 'page_namespace',
56 'title' => 'page_title',
60 'join_conds' => $joinConds,
65 function getOrderFields() {
66 return [ 'page_len' ];
70 * @param IDatabase $db
71 * @param ResultWrapper $res
73 function preprocessResults( $db, $res ) {
74 # There's no point doing a batch check if we aren't caching results;
75 # the page must exist for it to have been pulled out of the table
76 if ( !$this->isCached() ||
!$res->numRows() ) {
80 $batch = new LinkBatch();
81 foreach ( $res as $row ) {
82 $batch->add( $row->namespace, $row->title
);
89 function sortDescending() {
95 * @param object $result Result row
98 function formatResult( $skin, $result ) {
99 $dm = $this->getLanguage()->getDirMark();
101 $title = Title
::makeTitleSafe( $result->namespace, $result->title
);
103 return Html
::element( 'span', [ 'class' => 'mw-invalidtitle' ],
104 Linker
::getInvalidTitleDescription( $this->getContext(), $result->namespace, $result->title
) );
107 $hlink = Linker
::linkKnown(
109 $this->msg( 'hist' )->escaped(),
111 [ 'action' => 'history' ]
113 $hlinkInParentheses = $this->msg( 'parentheses' )->rawParams( $hlink )->escaped();
115 if ( $this->isCached() ) {
116 $plink = Linker
::link( $title );
117 $exists = $title->exists();
119 $plink = Linker
::linkKnown( $title );
123 $size = $this->msg( 'nbytes' )->numParams( $result->value
)->escaped();
126 ?
"${hlinkInParentheses} {$dm}{$plink} {$dm}[{$size}]"
127 : "<del>${hlinkInParentheses} {$dm}{$plink} {$dm}[{$size}]</del>";
130 protected function getGroupName() {
131 return 'maintenance';