MediaWiki REL1_31
SpecialPrefixindex.php
Go to the documentation of this file.
1<?php
24
31
36 protected $stripPrefix = false;
37
38 protected $hideRedirects = false;
39
40 // Inherit $maxPerPage
41
42 function __construct() {
43 parent::__construct( 'Prefixindex' );
44 }
45
50 function execute( $par ) {
52
53 $this->setHeaders();
54 $this->outputHeader();
55
56 $out = $this->getOutput();
57 $out->addModuleStyles( 'mediawiki.special' );
58
59 # GET values
60 $request = $this->getRequest();
61 $from = $request->getVal( 'from', '' );
62 $prefix = $request->getVal( 'prefix', '' );
63 $ns = $request->getIntOrNull( 'namespace' );
64 $namespace = (int)$ns; // if no namespace given, use 0 (NS_MAIN).
65 $this->hideRedirects = $request->getBool( 'hideredirects', $this->hideRedirects );
66 $this->stripPrefix = $request->getBool( 'stripprefix', $this->stripPrefix );
67
68 $namespaces = $wgContLang->getNamespaces();
69 $out->setPageTitle(
70 ( $namespace > 0 && array_key_exists( $namespace, $namespaces ) )
71 ? $this->msg( 'prefixindex-namespace', str_replace( '_', ' ', $namespaces[$namespace] ) )
72 : $this->msg( 'prefixindex' )
73 );
74
75 $showme = '';
76 if ( $par !== null ) {
77 $showme = $par;
78 } elseif ( $prefix != '' ) {
79 $showme = $prefix;
80 } elseif ( $from != '' && $ns === null ) {
81 // For back-compat with Special:Allpages
82 // Don't do this if namespace is passed, so paging works when doing NS views.
83 $showme = $from;
84 }
85
86 // T29864: if transcluded, show all pages instead of the form.
87 if ( $this->including() || $showme != '' || $ns !== null ) {
88 $this->showPrefixChunk( $namespace, $showme, $from );
89 } else {
90 $out->addHTML( $this->namespacePrefixForm( $namespace, null ) );
91 }
92 }
93
100 protected function namespacePrefixForm( $namespace = NS_MAIN, $from = '' ) {
101 $out = Xml::openElement( 'div', [ 'class' => 'namespaceoptions' ] );
102 $out .= Xml::openElement(
103 'form',
104 [ 'method' => 'get', 'action' => $this->getConfig()->get( 'Script' ) ]
105 );
106 $out .= Html::hidden( 'title', $this->getPageTitle()->getPrefixedText() );
107 $out .= Xml::openElement( 'fieldset' );
108 $out .= Xml::element( 'legend', null, $this->msg( 'allpages' )->text() );
109 $out .= Xml::openElement( 'table', [ 'id' => 'nsselect', 'class' => 'allpages' ] );
110 $out .= "<tr>
111 <td class='mw-label'>" .
112 Xml::label( $this->msg( 'allpagesprefix' )->text(), 'nsfrom' ) .
113 "</td>
114 <td class='mw-input'>" .
115 Xml::input( 'prefix', 30, str_replace( '_', ' ', $from ), [ 'id' => 'nsfrom' ] ) .
116 "</td>
117 </tr>
118 <tr>
119 <td class='mw-label'>" .
120 Xml::label( $this->msg( 'namespace' )->text(), 'namespace' ) .
121 "</td>
122 <td class='mw-input'>" .
123 Html::namespaceSelector( [
124 'selected' => $namespace,
125 ], [
126 'name' => 'namespace',
127 'id' => 'namespace',
128 'class' => 'namespaceselector',
129 ] ) .
130 Xml::checkLabel(
131 $this->msg( 'allpages-hide-redirects' )->text(),
132 'hideredirects',
133 'hideredirects',
134 $this->hideRedirects
135 ) . ' ' .
136 Xml::checkLabel(
137 $this->msg( 'prefixindex-strip' )->text(),
138 'stripprefix',
139 'stripprefix',
140 $this->stripPrefix
141 ) . ' ' .
142 Xml::submitButton( $this->msg( 'prefixindex-submit' )->text() ) .
143 "</td>
144 </tr>";
145 $out .= Xml::closeElement( 'table' );
146 $out .= Xml::closeElement( 'fieldset' );
147 $out .= Xml::closeElement( 'form' );
148 $out .= Xml::closeElement( 'div' );
149
150 return $out;
151 }
152
158 protected function showPrefixChunk( $namespace = NS_MAIN, $prefix, $from = null ) {
160
161 if ( $from === null ) {
162 $from = $prefix;
163 }
164
165 $fromList = $this->getNamespaceKeyAndText( $namespace, $from );
166 $prefixList = $this->getNamespaceKeyAndText( $namespace, $prefix );
167 $namespaces = $wgContLang->getNamespaces();
168 $res = null;
169 $n = 0;
170 $nextRow = null;
171
172 if ( !$prefixList || !$fromList ) {
173 $out = $this->msg( 'allpagesbadtitle' )->parseAsBlock();
174 } elseif ( !array_key_exists( $namespace, $namespaces ) ) {
175 // Show errormessage and reset to NS_MAIN
176 $out = $this->msg( 'allpages-bad-ns', $namespace )->parse();
177 $namespace = NS_MAIN;
178 } else {
179 list( $namespace, $prefixKey, $prefix ) = $prefixList;
180 list( /* $fromNS */, $fromKey, ) = $fromList;
181
182 # ## @todo FIXME: Should complain if $fromNs != $namespace
183
185
186 $conds = [
187 'page_namespace' => $namespace,
188 'page_title' . $dbr->buildLike( $prefixKey, $dbr->anyString() ),
189 'page_title >= ' . $dbr->addQuotes( $fromKey ),
190 ];
191
192 if ( $this->hideRedirects ) {
193 $conds['page_is_redirect'] = 0;
194 }
195
196 $res = $dbr->select( 'page',
197 array_merge(
198 [ 'page_namespace', 'page_title' ],
199 LinkCache::getSelectFields()
200 ),
201 $conds,
202 __METHOD__,
203 [
204 'ORDER BY' => 'page_title',
205 'LIMIT' => $this->maxPerPage + 1,
206 'USE INDEX' => 'name_title',
207 ]
208 );
209
210 // @todo FIXME: Side link to previous
211
212 if ( $res->numRows() > 0 ) {
213 $out = Html::openElement( 'ul', [ 'class' => 'mw-prefixindex-list' ] );
214 $linkCache = MediaWikiServices::getInstance()->getLinkCache();
215
216 $prefixLength = strlen( $prefix );
217 foreach ( $res as $row ) {
218 if ( $n >= $this->maxPerPage ) {
219 $nextRow = $row;
220 break;
221 }
222 $title = Title::newFromRow( $row );
223 // Make sure it gets into LinkCache
224 $linkCache->addGoodLinkObjFromRow( $title, $row );
225 $displayed = $title->getText();
226 // Try not to generate unclickable links
227 if ( $this->stripPrefix && $prefixLength !== strlen( $displayed ) ) {
228 $displayed = substr( $displayed, $prefixLength );
229 }
230 $link = ( $title->isRedirect() ? '<div class="allpagesredirect">' : '' ) .
231 $this->getLinkRenderer()->makeKnownLink(
232 $title,
233 $displayed
234 ) .
235 ( $title->isRedirect() ? '</div>' : '' );
236
237 $out .= "<li>$link</li>\n";
238 $n++;
239
240 }
241 $out .= Html::closeElement( 'ul' );
242
243 if ( $res->numRows() > 2 ) {
244 // Only apply CSS column styles if there's more than 2 entries.
245 // Otherwise rendering is broken as "mw-prefixindex-body"'s CSS column count is 3.
246 $out = Html::rawElement( 'div', [ 'class' => 'mw-prefixindex-body' ], $out );
247 }
248 } else {
249 $out = '';
250 }
251 }
252
253 $output = $this->getOutput();
254
255 if ( $this->including() ) {
256 // We don't show the nav-links and the form when included into other
257 // pages so let's just finish here.
258 $output->addHTML( $out );
259 return;
260 }
261
262 $topOut = $this->namespacePrefixForm( $namespace, $prefix );
263
264 if ( $res && ( $n == $this->maxPerPage ) && $nextRow ) {
265 $query = [
266 'from' => $nextRow->page_title,
267 'prefix' => $prefix,
268 'hideredirects' => $this->hideRedirects,
269 'stripprefix' => $this->stripPrefix,
270 ];
271
272 if ( $namespace || $prefix == '' ) {
273 // Keep the namespace even if it's 0 for empty prefixes.
274 // This tells us we're not just a holdover from old links.
275 $query['namespace'] = $namespace;
276 }
277
278 $nextLink = $this->getLinkRenderer()->makeKnownLink(
279 $this->getPageTitle(),
280 $this->msg( 'nextpage', str_replace( '_', ' ', $nextRow->page_title ) )->text(),
281 [],
282 $query
283 );
284
285 // Link shown at the top of the page below the form
286 $topOut .= Html::rawElement( 'div',
287 [ 'class' => 'mw-prefixindex-nav' ],
288 $nextLink
289 );
290
291 // Link shown at the footer
292 $out .= "\n" . Html::element( 'hr' ) .
293 Html::rawElement(
294 'div',
295 [ 'class' => 'mw-prefixindex-nav' ],
296 $nextLink
297 );
298
299 }
300
301 $output->addHTML( $topOut . $out );
302 }
303
312 public function prefixSearchSubpages( $search, $limit, $offset ) {
313 return $this->prefixSearchString( $search, $limit, $offset );
314 }
315
316 protected function getGroupName() {
317 return 'pages';
318 }
319}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
MediaWikiServices is the service locator for the application scope of MediaWiki.
Implements Special:Allpages.
getNamespaceKeyAndText( $ns, $text)
outputHeader( $summaryMessageKey='')
Outputs a summary message on top of special pages Per default the message key is the canonical name o...
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes!
getOutput()
Get the OutputPage being used for this instance.
msg( $key)
Wrapper around wfMessage that sets the current context.
getConfig()
Shortcut to get main config object.
getRequest()
Get the WebRequest being used for this instance.
getPageTitle( $subpage=false)
Get a self-referential title object.
including( $x=null)
Whether the special page is being evaluated via transclusion.
prefixSearchString( $search, $limit, $offset)
Perform a regular substring search for prefixSearchSubpages.
Implements Special:Prefixindex.
namespacePrefixForm( $namespace=NS_MAIN, $from='')
HTML for the top form.
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
prefixSearchSubpages( $search, $limit, $offset)
Return an array of subpages beginning with $search that this special page will accept.
$stripPrefix
Whether to remove the searched prefix from the displayed link.
execute( $par)
Entry point : initialise variables and call subfunctions.
showPrefixChunk( $namespace=NS_MAIN, $prefix, $from=null)
$res
Definition database.txt:21
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition deferred.txt:11
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the local content language as $wgContLang
Definition design.txt:57
when a variable name is used in a it is silently declared as a new local masking the global
Definition design.txt:95
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add text
Definition design.txt:18
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
const NS_MAIN
Definition Defines.php:74
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on $request
Definition hooks.txt:2806
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title after the basic globals have been set but before ordinary actions take place $output
Definition hooks.txt:2255
namespace and then decline to actually register it & $namespaces
Definition hooks.txt:934
namespace and then decline to actually register it file or subcat img or subcat $title
Definition hooks.txt:964
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
Definition hooks.txt:864
usually copyright or history_copyright This message must be in HTML not wikitext & $link
Definition hooks.txt:3021
null for the local wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
Definition hooks.txt:1620
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition injection.txt:37
const DB_REPLICA
Definition defines.php:25