Merge "RevisionStoreDbTestBase, remove redundant needsDB override"
[lhc/web/wiklou.git] / includes / specials / SpecialFewestrevisions.php
1 <?php
2 /**
3 * Implements Special:Fewestrevisions
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 use MediaWiki\MediaWikiServices;
25
26 /**
27 * Special page for listing the articles with the fewest revisions.
28 *
29 * @ingroup SpecialPage
30 * @author Martin Drashkov
31 */
32 class FewestrevisionsPage extends QueryPage {
33 function __construct( $name = 'Fewestrevisions' ) {
34 parent::__construct( $name );
35 }
36
37 public function isExpensive() {
38 return true;
39 }
40
41 function isSyndicated() {
42 return false;
43 }
44
45 public function getQueryInfo() {
46 return [
47 'tables' => [ 'revision', 'page' ],
48 'fields' => [
49 'namespace' => 'page_namespace',
50 'title' => 'page_title',
51 'value' => 'COUNT(*)',
52 'redirect' => 'page_is_redirect'
53 ],
54 'conds' => [
55 'page_namespace' => MWNamespace::getContentNamespaces(),
56 'page_id = rev_page' ],
57 'options' => [
58 'GROUP BY' => [ 'page_namespace', 'page_title', 'page_is_redirect' ]
59 ]
60 ];
61 }
62
63 function sortDescending() {
64 return false;
65 }
66
67 /**
68 * @param Skin $skin
69 * @param object $result Database row
70 * @return string
71 */
72 function formatResult( $skin, $result ) {
73 $nt = Title::makeTitleSafe( $result->namespace, $result->title );
74 if ( !$nt ) {
75 return Html::element(
76 'span',
77 [ 'class' => 'mw-invalidtitle' ],
78 Linker::getInvalidTitleDescription(
79 $this->getContext(),
80 $result->namespace,
81 $result->title
82 )
83 );
84 }
85 $linkRenderer = $this->getLinkRenderer();
86 $text = MediaWikiServices::getInstance()->getContentLanguage()->
87 convert( htmlspecialchars( $nt->getPrefixedText() ) );
88 $plink = $linkRenderer->makeLink( $nt, new HtmlArmor( $text ) );
89
90 $nl = $this->msg( 'nrevisions' )->numParams( $result->value )->text();
91 $redirect = isset( $result->redirect ) && $result->redirect ?
92 ' - ' . $this->msg( 'isredirect' )->escaped() : '';
93 $nlink = $linkRenderer->makeKnownLink(
94 $nt,
95 $nl,
96 [],
97 [ 'action' => 'history' ]
98 ) . $redirect;
99
100 return $this->getLanguage()->specialList( $plink, $nlink );
101 }
102
103 protected function getGroupName() {
104 return 'maintenance';
105 }
106 }