Merge "Drop index oi_name_archive_name on table oldimage"
[lhc/web/wiklou.git] / includes / specials / SpecialMostinterwikis.php
1 <?php
2 /**
3 * Implements Special:Mostinterwikis
4 *
5 * Copyright © 2012 Umherirrender
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 * http://www.gnu.org/copyleft/gpl.html
21 *
22 * @file
23 * @ingroup SpecialPage
24 * @author Umherirrender
25 */
26
27 use Wikimedia\Rdbms\ResultWrapper;
28
29 /**
30 * A special page that listed pages that have highest interwiki count
31 *
32 * @ingroup SpecialPage
33 */
34 class MostinterwikisPage extends QueryPage {
35 function __construct( $name = 'Mostinterwikis' ) {
36 parent::__construct( $name );
37 }
38
39 public function isExpensive() {
40 return true;
41 }
42
43 function isSyndicated() {
44 return false;
45 }
46
47 public function getQueryInfo() {
48 return [
49 'tables' => [
50 'langlinks',
51 'page'
52 ], 'fields' => [
53 'namespace' => 'page_namespace',
54 'title' => 'page_title',
55 'value' => 'COUNT(*)'
56 ], 'conds' => [
57 'page_namespace' => MWNamespace::getContentNamespaces()
58 ], 'options' => [
59 'HAVING' => 'COUNT(*) > 1',
60 'GROUP BY' => [
61 'page_namespace',
62 'page_title'
63 ]
64 ], 'join_conds' => [
65 'page' => [
66 'LEFT JOIN',
67 'page_id = ll_from'
68 ]
69 ]
70 ];
71 }
72
73 /**
74 * Pre-fill the link cache
75 *
76 * @param IDatabase $db
77 * @param ResultWrapper $res
78 */
79 function preprocessResults( $db, $res ) {
80 $this->executeLBFromResultWrapper( $res );
81 }
82
83 /**
84 * @param Skin $skin
85 * @param object $result
86 * @return string
87 */
88 function formatResult( $skin, $result ) {
89 $title = Title::makeTitleSafe( $result->namespace, $result->title );
90 if ( !$title ) {
91 return Html::element(
92 'span',
93 [ 'class' => 'mw-invalidtitle' ],
94 Linker::getInvalidTitleDescription(
95 $this->getContext(),
96 $result->namespace,
97 $result->title
98 )
99 );
100 }
101
102 $linkRenderer = $this->getLinkRenderer();
103 if ( $this->isCached() ) {
104 $link = $linkRenderer->makeLink( $title );
105 } else {
106 $link = $linkRenderer->makeKnownLink( $title );
107 }
108
109 $count = $this->msg( 'ninterwikis' )->numParams( $result->value )->escaped();
110
111 return $this->getLanguage()->specialList( $link, $count );
112 }
113
114 protected function getGroupName() {
115 return 'highuse';
116 }
117 }