3 * Implements Special:PagesWithProp
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
22 * @ingroup SpecialPage
27 * Special:PagesWithProp to search the page_props table
28 * @ingroup SpecialPage
31 class SpecialPagesWithProp
extends QueryPage
{
32 private $propName = null;
33 private $existingPropNames = null;
35 function __construct( $name = 'PagesWithProp' ) {
36 parent
::__construct( $name );
39 function isCacheable() {
43 public function execute( $par ) {
45 $this->outputHeader();
46 $this->getOutput()->addModuleStyles( 'mediawiki.special.pagesWithProp' );
48 $request = $this->getRequest();
49 $propname = $request->getVal( 'propname', $par );
51 $propnames = $this->getExistingPropNames();
53 $form = HTMLForm
::factory( 'ooui', [
57 'options' => $propnames,
58 'default' => $propname,
59 'label-message' => 'pageswithprop-prop',
62 ], $this->getContext() );
63 $form->setMethod( 'get' );
64 $form->setSubmitCallback( [ $this, 'onSubmit' ] );
65 $form->setWrapperLegendMsg( 'pageswithprop-legend' );
66 $form->addHeaderText( $this->msg( 'pageswithprop-text' )->parseAsBlock() );
67 $form->setSubmitTextMsg( 'pageswithprop-submit' );
70 $form->displayForm( false );
71 if ( $propname !== '' && $propname !== null ) {
76 public function onSubmit( $data, $form ) {
77 $this->propName
= $data['propname'];
78 parent
::execute( $data['propname'] );
82 * Return an array of subpages beginning with $search that this special page will accept.
84 * @param string $search Prefix to search for
85 * @param int $limit Maximum number of results to return
86 * @param int $offset Number of pages to skip
87 * @return string[] Matching subpages
89 public function prefixSearchSubpages( $search, $limit, $offset ) {
90 $subpages = array_keys( $this->queryExistingProps( $limit, $offset ) );
91 // We've already limited and offsetted, set to N and 0 respectively.
92 return self
::prefixSearchArray( $search, count( $subpages ), $subpages, 0 );
96 * Disable RSS/Atom feeds
99 function isSyndicated() {
103 public function getQueryInfo() {
105 'tables' => [ 'page_props', 'page' ],
107 'page_id' => 'pp_page',
116 'pp_propname' => $this->propName
,
119 'page' => [ 'INNER JOIN', 'page_id = pp_page' ]
125 function getOrderFields() {
126 return [ 'page_id' ];
131 * @param object $result Result row
134 function formatResult( $skin, $result ) {
135 $title = Title
::newFromRow( $result );
136 $ret = Linker
::link( $title, null, [], [], [ 'known' ] );
137 if ( $result->pp_value
!== '' ) {
138 // Do not show very long or binary values on the special page
139 $valueLength = strlen( $result->pp_value
);
140 $isBinary = strpos( $result->pp_value
, "\0" ) !== false;
141 $isTooLong = $valueLength > 1024;
143 if ( $isBinary ||
$isTooLong ) {
145 ->msg( $isBinary ?
'pageswithprop-prophidden-binary' : 'pageswithprop-prophidden-long' )
146 ->params( $this->getLanguage()->formatSize( $valueLength ) );
148 $propValue = Html
::element( 'span', [ 'class' => 'prop-value-hidden' ], $message->text() );
150 $propValue = Html
::element( 'span', [ 'class' => 'prop-value' ], $result->pp_value
);
153 $ret .= $this->msg( 'colon-separator' )->escaped() . $propValue;
159 public function getExistingPropNames() {
160 if ( $this->existingPropNames
=== null ) {
161 $this->existingPropNames
= $this->queryExistingProps();
163 return $this->existingPropNames
;
166 protected function queryExistingProps( $limit = null, $offset = 0 ) {
168 'DISTINCT', 'ORDER BY' => 'pp_propname'
171 $opts['LIMIT'] = $limit;
174 $opts['OFFSET'] = $offset;
177 $res = wfGetDB( DB_SLAVE
)->select(
186 foreach ( $res as $row ) {
187 $propnames[$row->pp_propname
] = $row->pp_propname
;
193 protected function getGroupName() {