Do not insert page titles into querycache.qc_value
[lhc/web/wiklou.git] / includes / specials / SpecialUnusedCategories.php
1 <?php
2 /**
3 * Implements Special:Unusedcategories
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 * @ingroup SpecialPage
26 */
27 class SpecialUnusedCategories extends QueryPage {
28 function __construct( $name = 'Unusedcategories' ) {
29 parent::__construct( $name );
30 }
31
32 public function isExpensive() {
33 return true;
34 }
35
36 function getPageHeader() {
37 return $this->msg( 'unusedcategoriestext' )->parseAsBlock();
38 }
39
40 function getOrderFields() {
41 return [ 'title' ];
42 }
43
44 public function getQueryInfo() {
45 return [
46 'tables' => [ 'page', 'categorylinks', 'page_props' ],
47 'fields' => [
48 'namespace' => 'page_namespace',
49 'title' => 'page_title',
50 ],
51 'conds' => [
52 'cl_from IS NULL',
53 'page_namespace' => NS_CATEGORY,
54 'page_is_redirect' => 0,
55 'pp_page IS NULL'
56 ],
57 'join_conds' => [
58 'categorylinks' => [ 'LEFT JOIN', 'cl_to = page_title' ],
59 'page_props' => [ 'LEFT JOIN', [
60 'page_id = pp_page',
61 'pp_propname' => 'expectunusedcategory'
62 ] ]
63 ]
64 ];
65 }
66
67 /**
68 * A should come before Z (T32907)
69 * @return bool
70 */
71 function sortDescending() {
72 return false;
73 }
74
75 /**
76 * @param Skin $skin
77 * @param object $result Result row
78 * @return string
79 */
80 function formatResult( $skin, $result ) {
81 $title = Title::makeTitle( NS_CATEGORY, $result->title );
82
83 return $this->getLinkRenderer()->makeLink( $title, $title->getText() );
84 }
85
86 protected function getGroupName() {
87 return 'maintenance';
88 }
89
90 public function preprocessResults( $db, $res ) {
91 $this->executeLBFromResultWrapper( $res );
92 }
93 }