Merge "numRows on MySQL no longer propagates unrelated errors"
[lhc/web/wiklou.git] / includes / SpecialPageFactory.php
1 <?php
2 /**
3 * Factory for handling the special page list and generating SpecialPage objects.
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 * @defgroup SpecialPage SpecialPage
23 */
24
25 /**
26 * Factory for handling the special page list and generating SpecialPage objects.
27 *
28 * To add a special page in an extension, add to $wgSpecialPages either
29 * an object instance or an array containing the name and constructor
30 * parameters. The latter is preferred for performance reasons.
31 *
32 * The object instantiated must be either an instance of SpecialPage or a
33 * sub-class thereof. It must have an execute() method, which sends the HTML
34 * for the special page to $wgOut. The parent class has an execute() method
35 * which distributes the call to the historical global functions. Additionally,
36 * execute() also checks if the user has the necessary access privileges
37 * and bails out if not.
38 *
39 * To add a core special page, use the similar static list in
40 * SpecialPage::$mList. To remove a core static special page at runtime, use
41 * a SpecialPage_initList hook.
42 *
43 * @ingroup SpecialPage
44 * @since 1.17
45 */
46 class SpecialPageFactory {
47
48 /**
49 * List of special page names to the subclass of SpecialPage which handles them.
50 */
51 private static $mList = array(
52 // Maintenance Reports
53 'BrokenRedirects' => 'BrokenRedirectsPage',
54 'Deadendpages' => 'DeadendpagesPage',
55 'DoubleRedirects' => 'DoubleRedirectsPage',
56 'Longpages' => 'LongpagesPage',
57 'Ancientpages' => 'AncientpagesPage',
58 'Lonelypages' => 'LonelypagesPage',
59 'Fewestrevisions' => 'FewestrevisionsPage',
60 'Withoutinterwiki' => 'WithoutinterwikiPage',
61 'Protectedpages' => 'SpecialProtectedpages',
62 'Protectedtitles' => 'SpecialProtectedtitles',
63 'Shortpages' => 'ShortpagesPage',
64 'Uncategorizedcategories' => 'UncategorizedcategoriesPage',
65 'Uncategorizedimages' => 'UncategorizedimagesPage',
66 'Uncategorizedpages' => 'UncategorizedpagesPage',
67 'Uncategorizedtemplates' => 'UncategorizedtemplatesPage',
68 'Unusedcategories' => 'UnusedcategoriesPage',
69 'Unusedimages' => 'UnusedimagesPage',
70 'Unusedtemplates' => 'UnusedtemplatesPage',
71 'Unwatchedpages' => 'UnwatchedpagesPage',
72 'Wantedcategories' => 'WantedcategoriesPage',
73 'Wantedfiles' => 'WantedfilesPage',
74 'Wantedpages' => 'WantedpagesPage',
75 'Wantedtemplates' => 'WantedtemplatesPage',
76
77 // List of pages
78 'Allpages' => 'SpecialAllpages',
79 'Prefixindex' => 'SpecialPrefixindex',
80 'Categories' => 'SpecialCategories',
81 'Disambiguations' => 'DisambiguationsPage',
82 'Listredirects' => 'ListredirectsPage',
83 'PagesWithProp' => 'SpecialPagesWithProp',
84
85 // Login/create account
86 'Userlogin' => 'LoginForm',
87 'CreateAccount' => 'SpecialCreateAccount',
88
89 // Users and rights
90 'Block' => 'SpecialBlock',
91 'Unblock' => 'SpecialUnblock',
92 'BlockList' => 'SpecialBlockList',
93 'ChangePassword' => 'SpecialChangePassword',
94 'PasswordReset' => 'SpecialPasswordReset',
95 'DeletedContributions' => 'DeletedContributionsPage',
96 'Preferences' => 'SpecialPreferences',
97 'Contributions' => 'SpecialContributions',
98 'Listgrouprights' => 'SpecialListGroupRights',
99 'Listusers' => 'SpecialListUsers',
100 'Listadmins' => 'SpecialListAdmins',
101 'Listbots' => 'SpecialListBots',
102 'Activeusers' => 'SpecialActiveUsers',
103 'Userrights' => 'UserrightsPage',
104 'EditWatchlist' => 'SpecialEditWatchlist',
105
106 // Recent changes and logs
107 'Newimages' => 'SpecialNewFiles',
108 'Log' => 'SpecialLog',
109 'Watchlist' => 'SpecialWatchlist',
110 'Newpages' => 'SpecialNewpages',
111 'Recentchanges' => 'SpecialRecentchanges',
112 'Recentchangeslinked' => 'SpecialRecentchangeslinked',
113 'Tags' => 'SpecialTags',
114
115 // Media reports and uploads
116 'Listfiles' => 'SpecialListFiles',
117 'Filepath' => 'SpecialFilepath',
118 'MIMEsearch' => 'MIMEsearchPage',
119 'FileDuplicateSearch' => 'FileDuplicateSearchPage',
120 'Upload' => 'SpecialUpload',
121 'UploadStash' => 'SpecialUploadStash',
122
123 // Data and tools
124 'Statistics' => 'SpecialStatistics',
125 'Allmessages' => 'SpecialAllmessages',
126 'Version' => 'SpecialVersion',
127 'Lockdb' => 'SpecialLockdb',
128 'Unlockdb' => 'SpecialUnlockdb',
129
130 // Redirecting special pages
131 'LinkSearch' => 'LinkSearchPage',
132 'Randompage' => 'Randompage',
133 'Randomredirect' => 'SpecialRandomredirect',
134
135 // High use pages
136 'Mostlinkedcategories' => 'MostlinkedCategoriesPage',
137 'Mostimages' => 'MostimagesPage',
138 'Mostinterwikis' => 'MostinterwikisPage',
139 'Mostlinked' => 'MostlinkedPage',
140 'Mostlinkedtemplates' => 'MostlinkedTemplatesPage',
141 'Mostcategories' => 'MostcategoriesPage',
142 'Mostrevisions' => 'MostrevisionsPage',
143
144 // Page tools
145 'ComparePages' => 'SpecialComparePages',
146 'Export' => 'SpecialExport',
147 'Import' => 'SpecialImport',
148 'Undelete' => 'SpecialUndelete',
149 'Whatlinkshere' => 'SpecialWhatlinkshere',
150 'MergeHistory' => 'SpecialMergeHistory',
151
152 // Other
153 'Booksources' => 'SpecialBookSources',
154
155 // Unlisted / redirects
156 'Blankpage' => 'SpecialBlankpage',
157 'Blockme' => 'SpecialBlockme',
158 'Emailuser' => 'SpecialEmailUser',
159 'Movepage' => 'MovePageForm',
160 'Mycontributions' => 'SpecialMycontributions',
161 'Mypage' => 'SpecialMypage',
162 'Mytalk' => 'SpecialMytalk',
163 'Myuploads' => 'SpecialMyuploads',
164 'PermanentLink' => 'SpecialPermanentLink',
165 'Revisiondelete' => 'SpecialRevisionDelete',
166 'Specialpages' => 'SpecialSpecialpages',
167 'Userlogout' => 'SpecialUserlogout',
168 );
169
170 private static $mAliases;
171
172 /**
173 * Initialise the special page list
174 * This must be called before accessing SpecialPage::$mList
175 *
176 * @return array
177 */
178 static function getList() {
179 global $wgSpecialPages;
180 global $wgDisableCounters, $wgDisableInternalSearch, $wgEmailAuthentication;
181 global $wgEnableEmail, $wgEnableJavaScriptTest;
182
183 if ( !is_object( self::$mList ) ) {
184 wfProfileIn( __METHOD__ );
185
186 if ( !$wgDisableCounters ) {
187 self::$mList['Popularpages'] = 'PopularpagesPage';
188 }
189
190 if ( !$wgDisableInternalSearch ) {
191 self::$mList['Search'] = 'SpecialSearch';
192 }
193
194 if ( $wgEmailAuthentication ) {
195 self::$mList['Confirmemail'] = 'EmailConfirmation';
196 self::$mList['Invalidateemail'] = 'EmailInvalidation';
197 }
198
199 if ( $wgEnableEmail ) {
200 self::$mList['ChangeEmail'] = 'SpecialChangeEmail';
201 }
202
203 if( $wgEnableJavaScriptTest ) {
204 self::$mList['JavaScriptTest'] = 'SpecialJavaScriptTest';
205 }
206
207 // Add extension special pages
208 self::$mList = array_merge( self::$mList, $wgSpecialPages );
209
210 // Run hooks
211 // This hook can be used to remove undesired built-in special pages
212 wfRunHooks( 'SpecialPage_initList', array( &self::$mList ) );
213
214 // Cast to object: func()[$key] doesn't work, but func()->$key does
215 settype( self::$mList, 'object' );
216
217 wfProfileOut( __METHOD__ );
218 }
219 return self::$mList;
220 }
221
222 /**
223 * Initialise and return the list of special page aliases. Returns an object with
224 * properties which can be accessed $obj->pagename - each property is an array of
225 * aliases; the first in the array is the cannonical alias. All registered special
226 * pages are guaranteed to have a property entry, and for that property array to
227 * contain at least one entry (English fallbacks will be added if necessary).
228 * @return Object
229 */
230 static function getAliasList() {
231 if ( !is_object( self::$mAliases ) ) {
232 global $wgContLang;
233 $aliases = $wgContLang->getSpecialPageAliases();
234
235 // Objects are passed by reference by default, need to create a copy
236 $missingPages = clone self::getList();
237
238 self::$mAliases = array();
239 foreach ( $aliases as $realName => $aliasList ) {
240 foreach ( $aliasList as $alias ) {
241 self::$mAliases[$wgContLang->caseFold( $alias )] = $realName;
242 }
243 unset( $missingPages->$realName );
244 }
245 foreach ( $missingPages as $name => $stuff ) {
246 self::$mAliases[$wgContLang->caseFold( $name )] = $name;
247 }
248
249 // Cast to object: func()[$key] doesn't work, but func()->$key does
250 self::$mAliases = (object)self::$mAliases;
251 }
252 return self::$mAliases;
253 }
254
255 /**
256 * Given a special page name with a possible subpage, return an array
257 * where the first element is the special page name and the second is the
258 * subpage.
259 *
260 * @param $alias String
261 * @return Array( String, String|null ), or array( null, null ) if the page is invalid
262 */
263 public static function resolveAlias( $alias ) {
264 global $wgContLang;
265 $bits = explode( '/', $alias, 2 );
266
267 $caseFoldedAlias = $wgContLang->caseFold( $bits[0] );
268 $caseFoldedAlias = str_replace( ' ', '_', $caseFoldedAlias );
269 if ( isset( self::getAliasList()->$caseFoldedAlias ) ) {
270 $name = self::getAliasList()->$caseFoldedAlias;
271 } else {
272 return array( null, null );
273 }
274
275 if ( !isset( $bits[1] ) ) { // bug 2087
276 $par = null;
277 } else {
278 $par = $bits[1];
279 }
280
281 return array( $name, $par );
282 }
283
284 /**
285 * Add a page to a certain display group for Special:SpecialPages
286 *
287 * @param $page Mixed: SpecialPage or string
288 * @param $group String
289 * @deprecated 1.21 Override SpecialPage::getGroupName
290 */
291 public static function setGroup( $page, $group ) {
292 wfDeprecated( __METHOD__, '1.21' );
293
294 global $wgSpecialPageGroups;
295 $name = is_object( $page ) ? $page->getName() : $page;
296 $wgSpecialPageGroups[$name] = $group;
297 }
298
299 /**
300 * Get the group that the special page belongs in on Special:SpecialPage
301 *
302 * @param $page SpecialPage
303 * @return String
304 * @deprecated 1.21 Use SpecialPage::getFinalGroupName
305 */
306 public static function getGroup( &$page ) {
307 wfDeprecated( __METHOD__, '1.21' );
308
309 return $page->getFinalGroupName();
310 }
311
312 /**
313 * Check if a given name exist as a special page or as a special page alias
314 *
315 * @param string $name name of a special page
316 * @return Boolean: true if a special page exists with this name
317 */
318 public static function exists( $name ) {
319 list( $title, /*...*/ ) = self::resolveAlias( $name );
320 return property_exists( self::getList(), $title );
321 }
322
323 /**
324 * Find the object with a given name and return it (or NULL)
325 *
326 * @param string $name Special page name, may be localised and/or an alias
327 * @return SpecialPage|null SpecialPage object or null if the page doesn't exist
328 */
329 public static function getPage( $name ) {
330 list( $realName, /*...*/ ) = self::resolveAlias( $name );
331 if ( property_exists( self::getList(), $realName ) ) {
332 $rec = self::getList()->$realName;
333 if ( is_string( $rec ) ) {
334 $className = $rec;
335 return new $className;
336 } elseif ( is_array( $rec ) ) {
337 // @deprecated, officially since 1.18, unofficially since forever
338 wfDebug( "Array syntax for \$wgSpecialPages is deprecated, define a subclass of SpecialPage instead." );
339 $className = array_shift( $rec );
340 self::getList()->$realName = MWFunction::newObj( $className, $rec );
341 }
342 return self::getList()->$realName;
343 } else {
344 return null;
345 }
346 }
347
348 /**
349 * Return categorised listable special pages which are available
350 * for the current user, and everyone.
351 *
352 * @param $user User object to check permissions, $wgUser will be used
353 * if not provided
354 * @return Array( String => Specialpage )
355 */
356 public static function getUsablePages( User $user = null ) {
357 $pages = array();
358 if ( $user === null ) {
359 global $wgUser;
360 $user = $wgUser;
361 }
362 foreach ( self::getList() as $name => $rec ) {
363 $page = self::getPage( $name );
364 if ( $page ) { // not null
365 $page->setContext( RequestContext::getMain() );
366 if ( $page->isListed()
367 && ( !$page->isRestricted() || $page->userCanExecute( $user ) )
368 ) {
369 $pages[$name] = $page;
370 }
371 }
372 }
373 return $pages;
374 }
375
376 /**
377 * Return categorised listable special pages for all users
378 *
379 * @return Array( String => Specialpage )
380 */
381 public static function getRegularPages() {
382 $pages = array();
383 foreach ( self::getList() as $name => $rec ) {
384 $page = self::getPage( $name );
385 if ( $page->isListed() && !$page->isRestricted() ) {
386 $pages[$name] = $page;
387 }
388 }
389 return $pages;
390 }
391
392 /**
393 * Return categorised listable special pages which are available
394 * for the current user, but not for everyone
395 *
396 * @return Array( String => Specialpage )
397 */
398 public static function getRestrictedPages() {
399 global $wgUser;
400 $pages = array();
401 foreach ( self::getList() as $name => $rec ) {
402 $page = self::getPage( $name );
403 if (
404 $page->isListed()
405 && $page->isRestricted()
406 && $page->userCanExecute( $wgUser )
407 ) {
408 $pages[$name] = $page;
409 }
410 }
411 return $pages;
412 }
413
414 /**
415 * Execute a special page path.
416 * The path may contain parameters, e.g. Special:Name/Params
417 * Extracts the special page name and call the execute method, passing the parameters
418 *
419 * Returns a title object if the page is redirected, false if there was no such special
420 * page, and true if it was successful.
421 *
422 * @param $title Title object
423 * @param $context IContextSource
424 * @param $including Bool output is being captured for use in {{special:whatever}}
425 *
426 * @return bool
427 */
428 public static function executePath( Title &$title, IContextSource &$context, $including = false ) {
429 wfProfileIn( __METHOD__ );
430
431 // @todo FIXME: Redirects broken due to this call
432 $bits = explode( '/', $title->getDBkey(), 2 );
433 $name = $bits[0];
434 if ( !isset( $bits[1] ) ) { // bug 2087
435 $par = null;
436 } else {
437 $par = $bits[1];
438 }
439 $page = self::getPage( $name );
440 // Nonexistent?
441 if ( !$page ) {
442 $context->getOutput()->setArticleRelated( false );
443 $context->getOutput()->setRobotPolicy( 'noindex,nofollow' );
444
445 global $wgSend404Code;
446 if ( $wgSend404Code ) {
447 $context->getOutput()->setStatusCode( 404 );
448 }
449
450 $context->getOutput()->showErrorPage( 'nosuchspecialpage', 'nospecialpagetext' );
451 wfProfileOut( __METHOD__ );
452 return false;
453 }
454
455 // Page exists, set the context
456 $page->setContext( $context );
457
458 if ( !$including ) {
459 // Redirect to canonical alias for GET commands
460 // Not for POST, we'd lose the post data, so it's best to just distribute
461 // the request. Such POST requests are possible for old extensions that
462 // generate self-links without being aware that their default name has
463 // changed.
464 if ( $name != $page->getLocalName() && !$context->getRequest()->wasPosted() ) {
465 $query = $context->getRequest()->getQueryValues();
466 unset( $query['title'] );
467 $query = wfArrayToCgi( $query );
468 $title = $page->getTitle( $par );
469 $url = $title->getFullUrl( $query );
470 $context->getOutput()->redirect( $url );
471 wfProfileOut( __METHOD__ );
472 return $title;
473 } else {
474 $context->setTitle( $page->getTitle( $par ) );
475 }
476
477 } elseif ( !$page->isIncludable() ) {
478 wfProfileOut( __METHOD__ );
479 return false;
480 }
481
482 $page->including( $including );
483
484 // Execute special page
485 $profName = 'Special:' . $page->getName();
486 wfProfileIn( $profName );
487 $page->run( $par );
488 wfProfileOut( $profName );
489 wfProfileOut( __METHOD__ );
490 return true;
491 }
492
493 /**
494 * Just like executePath() but will override global variables and execute
495 * the page in "inclusion" mode. Returns true if the execution was
496 * successful or false if there was no such special page, or a title object
497 * if it was a redirect.
498 *
499 * Also saves the current $wgTitle, $wgOut, $wgRequest, $wgUser and $wgLang
500 * variables so that the special page will get the context it'd expect on a
501 * normal request, and then restores them to their previous values after.
502 *
503 * @param $title Title
504 * @param $context IContextSource
505 *
506 * @return String: HTML fragment
507 */
508 static function capturePath( Title $title, IContextSource $context ) {
509 global $wgOut, $wgTitle, $wgRequest, $wgUser, $wgLang;
510
511 // Save current globals
512 $oldTitle = $wgTitle;
513 $oldOut = $wgOut;
514 $oldRequest = $wgRequest;
515 $oldUser = $wgUser;
516 $oldLang = $wgLang;
517
518 // Set the globals to the current context
519 $wgTitle = $title;
520 $wgOut = $context->getOutput();
521 $wgRequest = $context->getRequest();
522 $wgUser = $context->getUser();
523 $wgLang = $context->getLanguage();
524
525 // The useful part
526 $ret = self::executePath( $title, $context, true );
527
528 // And restore the old globals
529 $wgTitle = $oldTitle;
530 $wgOut = $oldOut;
531 $wgRequest = $oldRequest;
532 $wgUser = $oldUser;
533 $wgLang = $oldLang;
534
535 return $ret;
536 }
537
538 /**
539 * Get the local name for a specified canonical name
540 *
541 * @param $name String
542 * @param $subpage String|Bool
543 *
544 * @return String
545 */
546 static function getLocalNameFor( $name, $subpage = false ) {
547 global $wgContLang;
548 $aliases = $wgContLang->getSpecialPageAliases();
549
550 if ( isset( $aliases[$name][0] ) ) {
551 $name = $aliases[$name][0];
552 } else {
553 // Try harder in case someone misspelled the correct casing
554 $found = false;
555 foreach ( $aliases as $n => $values ) {
556 if ( strcasecmp( $name, $n ) === 0 ) {
557 wfWarn( "Found alias defined for $n when searching for " .
558 "special page aliases for $name. Case mismatch?" );
559 $name = $values[0];
560 $found = true;
561 break;
562 }
563 }
564 if ( !$found ) {
565 wfWarn( "Did not find alias for special page '$name'. " .
566 "Perhaps no aliases are defined for it?" );
567 }
568 }
569 if ( $subpage !== false && !is_null( $subpage ) ) {
570 $name = "$name/$subpage";
571 }
572 return $wgContLang->ucfirst( $name );
573 }
574
575 /**
576 * Get a title for a given alias
577 *
578 * @param $alias String
579 *
580 * @return Title or null if there is no such alias
581 */
582 static function getTitleForAlias( $alias ) {
583 $name = self::resolveAlias( $alias );
584 if ( $name ) {
585 return SpecialPage::getTitleFor( $name );
586 } else {
587 return null;
588 }
589 }
590 }