ImagePage.php: add missing braces + other code style tweaks
[lhc/web/wiklou.git] / includes / SpecialPage.php
1 <?php
2 /**
3 * SpecialPage: handling special pages and lists thereof.
4 *
5 * To add a special page in an extension, add to $wgSpecialPages either
6 * an object instance or an array containing the name and constructor
7 * parameters. The latter is preferred for performance reasons.
8 *
9 * The object instantiated must be either an instance of SpecialPage or a
10 * sub-class thereof. It must have an execute() method, which sends the HTML
11 * for the special page to $wgOut. The parent class has an execute() method
12 * which distributes the call to the historical global functions. Additionally,
13 * execute() also checks if the user has the necessary access privileges
14 * and bails out if not.
15 *
16 * To add a core special page, use the similar static list in
17 * SpecialPage::$mList. To remove a core static special page at runtime, use
18 * a SpecialPage_initList hook.
19 *
20 * @file
21 * @ingroup SpecialPage
22 * @defgroup SpecialPage SpecialPage
23 */
24
25 /**
26 * Parent special page class, also static functions for handling the special
27 * page list.
28 * @ingroup SpecialPage
29 */
30 class SpecialPage {
31 /**#@+
32 * @access private
33 */
34 /**
35 * The canonical name of this special page
36 * Also used for the default <h1> heading, @see getDescription()
37 */
38 var $mName;
39 /**
40 * The local name of this special page
41 */
42 var $mLocalName;
43 /**
44 * Minimum user level required to access this page, or "" for anyone.
45 * Also used to categorise the pages in Special:Specialpages
46 */
47 var $mRestriction;
48 /**
49 * Listed in Special:Specialpages?
50 */
51 var $mListed;
52 /**
53 * Function name called by the default execute()
54 */
55 var $mFunction;
56 /**
57 * File which needs to be included before the function above can be called
58 */
59 var $mFile;
60 /**
61 * Whether or not this special page is being included from an article
62 */
63 var $mIncluding;
64 /**
65 * Whether the special page can be included in an article
66 */
67 var $mIncludable;
68 /**
69 * Query parameters that can be passed through redirects
70 */
71 var $mAllowedRedirectParams = array();
72 /**
73 * Query parameteres added by redirects
74 */
75 var $mAddedRedirectParams = array();
76 /**
77 * Current request
78 * @var WebRequest
79 */
80 protected $mRequest;
81 /**
82 * Current output page
83 * @var OutputPage
84 */
85 protected $mOutput;
86 /**
87 * Full title including $par
88 * @var Title
89 */
90 protected $mFullTitle;
91
92 /**
93 * List of special pages, followed by parameters.
94 * If the only parameter is a string, that is the page name.
95 * Otherwise, it is an array. The format is one of:
96 ** array( 'SpecialPage', name, right )
97 ** array( 'IncludableSpecialPage', name, right, listed? )
98 ** array( 'UnlistedSpecialPage', name, right )
99 ** array( 'SpecialRedirectToSpecial', name, page to redirect to, special page param, ... )
100 */
101 static public $mList = array(
102 # Maintenance Reports
103 'BrokenRedirects' => 'BrokenRedirectsPage',
104 'Deadendpages' => 'DeadendpagesPage',
105 'DoubleRedirects' => 'DoubleRedirectsPage',
106 'Longpages' => 'LongpagesPage',
107 'Ancientpages' => 'AncientpagesPage',
108 'Lonelypages' => 'LonelypagesPage',
109 'Fewestrevisions' => 'FewestrevisionsPage',
110 'Withoutinterwiki' => 'WithoutinterwikiPage',
111 'Protectedpages' => 'SpecialProtectedpages',
112 'Protectedtitles' => 'SpecialProtectedtitles',
113 'Shortpages' => 'ShortpagesPage',
114 'Uncategorizedcategories' => 'UncategorizedcategoriesPage',
115 'Uncategorizedimages' => 'UncategorizedimagesPage',
116 'Uncategorizedpages' => 'UncategorizedpagesPage',
117 'Uncategorizedtemplates' => 'UncategorizedtemplatesPage',
118 'Unusedcategories' => 'UnusedcategoriesPage',
119 'Unusedimages' => 'UnusedimagesPage',
120 'Unusedtemplates' => 'UnusedtemplatesPage',
121 'Unwatchedpages' => 'UnwatchedpagesPage',
122 'Wantedcategories' => 'WantedcategoriesPage',
123 'Wantedfiles' => 'WantedfilesPage',
124 'Wantedpages' => 'WantedpagesPage',
125 'Wantedtemplates' => 'WantedtemplatesPage',
126
127 # List of pages
128 'Allpages' => 'SpecialAllpages',
129 'Prefixindex' => 'SpecialPrefixindex',
130 'Categories' => 'SpecialCategories',
131 'Disambiguations' => 'DisambiguationsPage',
132 'Listredirects' => 'ListredirectsPage',
133
134 # Login/create account
135 'Userlogin' => 'LoginForm',
136 'CreateAccount' => array( 'SpecialRedirectToSpecial', 'CreateAccount', 'Userlogin', 'signup', array( 'uselang' ) ),
137
138 # Users and rights
139 'Block' => 'SpecialBlock',
140 'Unblock' => 'SpecialUnblock',
141 'BlockList' => 'SpecialBlockList',
142 'Resetpass' => 'SpecialResetpass',
143 'DeletedContributions' => 'DeletedContributionsPage',
144 'Preferences' => 'SpecialPreferences',
145 'Contributions' => 'SpecialContributions',
146 'Listgrouprights' => 'SpecialListGroupRights',
147 'Listusers' => 'SpecialListusers',
148 'Listadmins' => array( 'SpecialRedirectToSpecial', 'Listadmins', 'Listusers', 'sysop' ),
149 'Listbots' => array( 'SpecialRedirectToSpecial', 'Listbots', 'Listusers', 'bot' ),
150 'Activeusers' => 'SpecialActiveUsers',
151 'Userrights' => 'UserrightsPage',
152 'DisableAccount' => 'SpecialDisableAccount',
153 'EditWatchlist' => 'SpecialEditWatchlist',
154
155 # Recent changes and logs
156 'Newimages' => 'SpecialNewFiles',
157 'Log' => 'SpecialLog',
158 'Watchlist' => 'SpecialWatchlist',
159 'Newpages' => 'SpecialNewpages',
160 'Recentchanges' => 'SpecialRecentchanges',
161 'Recentchangeslinked' => 'SpecialRecentchangeslinked',
162 'Tags' => 'SpecialTags',
163
164 # Media reports and uploads
165 'Listfiles' => 'SpecialListFiles',
166 'Filepath' => 'SpecialFilepath',
167 'MIMEsearch' => 'MIMEsearchPage',
168 'FileDuplicateSearch' => 'FileDuplicateSearchPage',
169 'Upload' => 'SpecialUpload',
170 'UploadStash' => 'SpecialUploadStash',
171
172 # Wiki data and tools
173 'Statistics' => 'SpecialStatistics',
174 'Allmessages' => 'SpecialAllmessages',
175 'Version' => 'SpecialVersion',
176 'Lockdb' => 'SpecialLockdb',
177 'Unlockdb' => 'SpecialUnlockdb',
178
179 # Redirecting special pages
180 'LinkSearch' => 'LinkSearchPage',
181 'Randompage' => 'Randompage',
182 'Randomredirect' => 'SpecialRandomredirect',
183
184 # High use pages
185 'Mostlinkedcategories' => 'MostlinkedCategoriesPage',
186 'Mostimages' => 'MostimagesPage',
187 'Mostlinked' => 'MostlinkedPage',
188 'Mostlinkedtemplates' => 'MostlinkedTemplatesPage',
189 'Mostcategories' => 'MostcategoriesPage',
190 'Mostrevisions' => 'MostrevisionsPage',
191
192 # Page tools
193 'ComparePages' => 'SpecialComparePages',
194 'Export' => 'SpecialExport',
195 'Import' => 'SpecialImport',
196 'Undelete' => 'SpecialUndelete',
197 'Whatlinkshere' => 'SpecialWhatlinkshere',
198 'MergeHistory' => 'SpecialMergeHistory',
199
200 # Other
201 'Booksources' => 'SpecialBookSources',
202
203 # Unlisted / redirects
204 'Blankpage' => 'SpecialBlankpage',
205 'Blockme' => 'SpecialBlockme',
206 'Emailuser' => 'SpecialEmailUser',
207 'Movepage' => 'MovePageForm',
208 'Mycontributions' => 'SpecialMycontributions',
209 'Mypage' => 'SpecialMypage',
210 'Mytalk' => 'SpecialMytalk',
211 'Myuploads' => 'SpecialMyuploads',
212 'PermanentLink' => 'SpecialPermanentLink',
213 'Revisiondelete' => 'SpecialRevisionDelete',
214 'RevisionMove' => 'SpecialRevisionMove',
215 'Specialpages' => 'SpecialSpecialpages',
216 'Userlogout' => 'SpecialUserlogout',
217 );
218
219 static public $mAliases;
220 static public $mListInitialised = false;
221
222 /**#@-*/
223
224 /**
225 * Initialise the special page list
226 * This must be called before accessing SpecialPage::$mList
227 */
228 static function initList() {
229 global $wgSpecialPages;
230 global $wgDisableCounters, $wgDisableInternalSearch, $wgEmailAuthentication;
231
232 if ( self::$mListInitialised ) {
233 return;
234 }
235 wfProfileIn( __METHOD__ );
236
237 # Better to set this now, to avoid infinite recursion in carelessly written hooks
238 self::$mListInitialised = true;
239
240 if( !$wgDisableCounters ) {
241 self::$mList['Popularpages'] = 'PopularpagesPage';
242 }
243
244 if( !$wgDisableInternalSearch ) {
245 self::$mList['Search'] = 'SpecialSearch';
246 }
247
248 if( $wgEmailAuthentication ) {
249 self::$mList['Confirmemail'] = 'EmailConfirmation';
250 self::$mList['Invalidateemail'] = 'EmailInvalidation';
251 }
252
253 # Add extension special pages
254 self::$mList = array_merge( self::$mList, $wgSpecialPages );
255
256 # Run hooks
257 # This hook can be used to remove undesired built-in special pages
258 wfRunHooks( 'SpecialPage_initList', array( &self::$mList ) );
259 wfProfileOut( __METHOD__ );
260 }
261
262 static function initAliasList() {
263 if ( !is_null( self::$mAliases ) ) {
264 return;
265 }
266
267 global $wgContLang;
268 $aliases = $wgContLang->getSpecialPageAliases();
269 $missingPages = self::$mList;
270 self::$mAliases = array();
271 foreach ( $aliases as $realName => $aliasList ) {
272 foreach ( $aliasList as $alias ) {
273 self::$mAliases[$wgContLang->caseFold( $alias )] = $realName;
274 }
275 unset( $missingPages[$realName] );
276 }
277 foreach ( $missingPages as $name => $stuff ) {
278 self::$mAliases[$wgContLang->caseFold( $name )] = $name;
279 }
280 }
281
282 /**
283 * Given a special page alias, return the special page name.
284 * Returns false if there is no such alias.
285 *
286 * @param $alias String
287 * @return String or false
288 */
289 static function resolveAlias( $alias ) {
290 global $wgContLang;
291
292 if ( !self::$mListInitialised ) self::initList();
293 if ( is_null( self::$mAliases ) ) self::initAliasList();
294 $caseFoldedAlias = $wgContLang->caseFold( $alias );
295 $caseFoldedAlias = str_replace( ' ', '_', $caseFoldedAlias );
296 if ( isset( self::$mAliases[$caseFoldedAlias] ) ) {
297 return self::$mAliases[$caseFoldedAlias];
298 } else {
299 return false;
300 }
301 }
302
303 /**
304 * Given a special page name with a possible subpage, return an array
305 * where the first element is the special page name and the second is the
306 * subpage.
307 *
308 * @param $alias String
309 * @return Array
310 */
311 static function resolveAliasWithSubpage( $alias ) {
312 $bits = explode( '/', $alias, 2 );
313 $name = self::resolveAlias( $bits[0] );
314 if( !isset( $bits[1] ) ) { // bug 2087
315 $par = null;
316 } else {
317 $par = $bits[1];
318 }
319 return array( $name, $par );
320 }
321
322 /**
323 * Add a page to the list of valid special pages. This used to be the preferred
324 * method for adding special pages in extensions. It's now suggested that you add
325 * an associative record to $wgSpecialPages. This avoids autoloading SpecialPage.
326 *
327 * @param $page SpecialPage
328 * Deprecated in 1.7, warnings in 1.17, might be removed in 1.20
329 */
330 static function addPage( &$page ) {
331 wfDeprecated( __METHOD__ );
332 if ( !self::$mListInitialised ) {
333 self::initList();
334 }
335 self::$mList[$page->mName] = $page;
336 }
337
338 /**
339 * Add a page to a certain display group for Special:SpecialPages
340 *
341 * @param $page Mixed: SpecialPage or string
342 * @param $group String
343 */
344 static function setGroup( $page, $group ) {
345 global $wgSpecialPageGroups;
346 $name = is_object($page) ? $page->mName : $page;
347 $wgSpecialPageGroups[$name] = $group;
348 }
349
350 /**
351 * Add a page to a certain display group for Special:SpecialPages
352 *
353 * @param $page SpecialPage
354 */
355 static function getGroup( &$page ) {
356 global $wgSpecialPageGroups;
357 static $specialPageGroupsCache = array();
358 if( isset($specialPageGroupsCache[$page->mName]) ) {
359 return $specialPageGroupsCache[$page->mName];
360 }
361 $msg = wfMessage('specialpages-specialpagegroup-'.strtolower($page->mName));
362 if ( !$msg->isBlank() ) {
363 $group = $msg->text();
364 } else {
365 $group = isset($wgSpecialPageGroups[$page->mName])
366 ? $wgSpecialPageGroups[$page->mName]
367 : '-';
368 }
369 if( $group == '-' ) $group = 'other';
370 $specialPageGroupsCache[$page->mName] = $group;
371 return $group;
372 }
373
374 /**
375 * Remove a special page from the list
376 * Formerly used to disable expensive or dangerous special pages. The
377 * preferred method is now to add a SpecialPage_initList hook.
378 */
379 static function removePage( $name ) {
380 if ( !self::$mListInitialised ) {
381 self::initList();
382 }
383 unset( self::$mList[$name] );
384 }
385
386 /**
387 * Check if a given name exist as a special page or as a special page alias
388 *
389 * @param $name String: name of a special page
390 * @return Boolean: true if a special page exists with this name
391 */
392 static function exists( $name ) {
393 global $wgContLang;
394 if ( !self::$mListInitialised ) {
395 self::initList();
396 }
397 if( !self::$mAliases ) {
398 self::initAliasList();
399 }
400
401 # Remove special pages inline parameters:
402 $bits = explode( '/', $name );
403 $name = $wgContLang->caseFold($bits[0]);
404
405 return
406 array_key_exists( $name, self::$mList )
407 or array_key_exists( $name, self::$mAliases )
408 ;
409 }
410
411 /**
412 * Find the object with a given name and return it (or NULL)
413 *
414 * @param $name String
415 * @return SpecialPage object or null if the page doesn't exist
416 */
417 static function getPage( $name ) {
418 if ( !self::$mListInitialised ) {
419 self::initList();
420 }
421 if ( array_key_exists( $name, self::$mList ) ) {
422 $rec = self::$mList[$name];
423 if ( is_string( $rec ) ) {
424 $className = $rec;
425 self::$mList[$name] = new $className;
426 } elseif ( is_array( $rec ) ) {
427 $className = array_shift( $rec );
428 self::$mList[$name] = MWFunction::newObj( $className, $rec );
429 }
430 return self::$mList[$name];
431 } else {
432 return null;
433 }
434 }
435
436 /**
437 * Get a special page with a given localised name, or NULL if there
438 * is no such special page.
439 *
440 * @return SpecialPage object or null if the page doesn't exist
441 */
442 static function getPageByAlias( $alias ) {
443 $realName = self::resolveAlias( $alias );
444 if ( $realName ) {
445 return self::getPage( $realName );
446 } else {
447 return null;
448 }
449 }
450
451 /**
452 * Return categorised listable special pages which are available
453 * for the current user, and everyone.
454 *
455 * @return Associative array mapping page's name to its SpecialPage object
456 */
457 static function getUsablePages() {
458 global $wgUser;
459 if ( !self::$mListInitialised ) {
460 self::initList();
461 }
462 $pages = array();
463
464 foreach ( self::$mList as $name => $rec ) {
465 $page = self::getPage( $name );
466 if ( $page->isListed()
467 && (
468 !$page->isRestricted()
469 || $page->userCanExecute( $wgUser )
470 )
471 ) {
472 $pages[$name] = $page;
473 }
474 }
475 return $pages;
476 }
477
478 /**
479 * Return categorised listable special pages for all users
480 *
481 * @return Associative array mapping page's name to its SpecialPage object
482 */
483 static function getRegularPages() {
484 if ( !self::$mListInitialised ) {
485 self::initList();
486 }
487 $pages = array();
488
489 foreach ( self::$mList as $name => $rec ) {
490 $page = self::getPage( $name );
491 if ( $page->isListed() && !$page->isRestricted() ) {
492 $pages[$name] = $page;
493 }
494 }
495 return $pages;
496 }
497
498 /**
499 * Return categorised listable special pages which are available
500 * for the current user, but not for everyone
501 *
502 * @return Associative array mapping page's name to its SpecialPage object
503 */
504 static function getRestrictedPages() {
505 global $wgUser;
506 if( !self::$mListInitialised ) {
507 self::initList();
508 }
509 $pages = array();
510
511 foreach( self::$mList as $name => $rec ) {
512 $page = self::getPage( $name );
513 if(
514 $page->isListed()
515 && $page->isRestricted()
516 && $page->userCanExecute( $wgUser )
517 ) {
518 $pages[$name] = $page;
519 }
520 }
521 return $pages;
522 }
523
524 /**
525 * Execute a special page path.
526 * The path may contain parameters, e.g. Special:Name/Params
527 * Extracts the special page name and call the execute method, passing the parameters
528 *
529 * Returns a title object if the page is redirected, false if there was no such special
530 * page, and true if it was successful.
531 *
532 * @param $title a title object
533 * @param $including output is being captured for use in {{special:whatever}}
534 */
535 static function executePath( &$title, $including = false ) {
536 global $wgOut, $wgTitle, $wgRequest;
537 wfProfileIn( __METHOD__ );
538
539 # FIXME: redirects broken due to this call
540 $bits = explode( '/', $title->getDBkey(), 2 );
541 $name = $bits[0];
542 if( !isset( $bits[1] ) ) { // bug 2087
543 $par = null;
544 } else {
545 $par = $bits[1];
546 }
547 $page = SpecialPage::getPageByAlias( $name );
548 # Nonexistent?
549 if ( !$page ) {
550 if ( !$including ) {
551 $wgOut->setArticleRelated( false );
552 $wgOut->setRobotPolicy( 'noindex,nofollow' );
553 $wgOut->setStatusCode( 404 );
554 $wgOut->showErrorPage( 'nosuchspecialpage', 'nospecialpagetext' );
555 }
556 wfProfileOut( __METHOD__ );
557 return false;
558 }
559
560 # Page exists, set the context
561 $page->setContext( $wgRequest, $wgOut );
562
563 # Check for redirect
564 if ( !$including ) {
565 $redirect = $page->getRedirect( $par );
566 $query = $page->getRedirectQuery();
567 if ( $redirect instanceof Title ) {
568 $url = $redirect->getFullUrl( $query );
569 $wgOut->redirect( $url );
570 wfProfileOut( __METHOD__ );
571 return $redirect;
572 } elseif( $redirect === true ) {
573 global $wgScript;
574 $url = $wgScript . '?' . wfArrayToCGI( $query );
575 $wgOut->redirect( $url );
576 wfProfileOut( __METHOD__ );
577 return $redirect;
578 }
579 }
580
581 # Redirect to canonical alias for GET commands
582 # Not for POST, we'd lose the post data, so it's best to just distribute
583 # the request. Such POST requests are possible for old extensions that
584 # generate self-links without being aware that their default name has
585 # changed.
586 if ( !$including && $name != $page->getLocalName() && !$wgRequest->wasPosted() ) {
587 $query = $_GET;
588 unset( $query['title'] );
589 $query = wfArrayToCGI( $query );
590 $title = $page->getTitle( $par );
591 $url = $title->getFullUrl( $query );
592 $wgOut->redirect( $url );
593 wfProfileOut( __METHOD__ );
594 return $redirect;
595 }
596
597 if ( $including && !$page->includable() ) {
598 wfProfileOut( __METHOD__ );
599 return false;
600 } elseif ( !$including ) {
601 $wgTitle = $page->getTitle();
602 }
603 $page->including( $including );
604
605 // Execute special page
606 $profName = 'Special:' . $page->name();
607 wfProfileIn( $profName );
608 $page->execute( $par );
609 wfProfileOut( $profName );
610 wfProfileOut( __METHOD__ );
611 return true;
612 }
613
614 /**
615 * Just like executePath() except it returns the HTML instead of outputting it
616 * Returns false if there was no such special page, or a title object if it was
617 * a redirect.
618 *
619 * @return String: HTML fragment
620 */
621 static function capturePath( &$title ) {
622 global $wgOut, $wgTitle;
623
624 $oldTitle = $wgTitle;
625 $oldOut = $wgOut;
626 $wgOut = new OutputPage;
627 $wgOut->setTitle( $title );
628
629 $ret = SpecialPage::executePath( $title, true );
630 if ( $ret === true ) {
631 $ret = $wgOut->getHTML();
632 }
633 $wgTitle = $oldTitle;
634 $wgOut = $oldOut;
635 return $ret;
636 }
637
638 /**
639 * Get the local name for a specified canonical name
640 *
641 * @param $name String
642 * @param $subpage Mixed: boolean false, or string
643 *
644 * @return String
645 */
646 static function getLocalNameFor( $name, $subpage = false ) {
647 global $wgContLang;
648 $aliases = $wgContLang->getSpecialPageAliases();
649 if ( isset( $aliases[$name][0] ) ) {
650 $name = $aliases[$name][0];
651 } else {
652 // Try harder in case someone misspelled the correct casing
653 $found = false;
654 foreach ( $aliases as $n => $values ) {
655 if ( strcasecmp( $name, $n ) === 0 ) {
656 wfWarn( "Found alias defined for $n when searching for " .
657 "special page aliases for $name. Case mismatch?" );
658 $name = $values[0];
659 $found = true;
660 break;
661 }
662 }
663 if ( !$found ) {
664 wfWarn( "Did not find alias for special page '$name'. " .
665 "Perhaps no aliases are defined for it?" );
666 }
667 }
668 if ( $subpage !== false && !is_null( $subpage ) ) {
669 $name = "$name/$subpage";
670 }
671 return $wgContLang->ucfirst( $name );
672 }
673
674 /**
675 * Get a localised Title object for a specified special page name
676 *
677 * @return Title object
678 */
679 static function getTitleFor( $name, $subpage = false ) {
680 $name = self::getLocalNameFor( $name, $subpage );
681 if ( $name ) {
682 return Title::makeTitle( NS_SPECIAL, $name );
683 } else {
684 throw new MWException( "Invalid special page name \"$name\"" );
685 }
686 }
687
688 /**
689 * Get a localised Title object for a page name with a possibly unvalidated subpage
690 *
691 * @return Title object or null if the page doesn't exist
692 */
693 static function getSafeTitleFor( $name, $subpage = false ) {
694 $name = self::getLocalNameFor( $name, $subpage );
695 if ( $name ) {
696 return Title::makeTitleSafe( NS_SPECIAL, $name );
697 } else {
698 return null;
699 }
700 }
701
702 /**
703 * Get a title for a given alias
704 *
705 * @return Title or null if there is no such alias
706 */
707 static function getTitleForAlias( $alias ) {
708 $name = self::resolveAlias( $alias );
709 if ( $name ) {
710 return self::getTitleFor( $name );
711 } else {
712 return null;
713 }
714 }
715
716 /**
717 * Default constructor for special pages
718 * Derivative classes should call this from their constructor
719 * Note that if the user does not have the required level, an error message will
720 * be displayed by the default execute() method, without the global function ever
721 * being called.
722 *
723 * If you override execute(), you can recover the default behaviour with userCanExecute()
724 * and displayRestrictionError()
725 *
726 * @param $name String: name of the special page, as seen in links and URLs
727 * @param $restriction String: user right required, e.g. "block" or "delete"
728 * @param $listed Boolean: whether the page is listed in Special:Specialpages
729 * @param $function Callback: function called by execute(). By default it is constructed from $name
730 * @param $file String: file which is included by execute(). It is also constructed from $name by default
731 * @param $includable Boolean: whether the page can be included in normal pages
732 */
733 public function __construct( $name = '', $restriction = '', $listed = true, $function = false, $file = 'default', $includable = false ) {
734 $this->init( $name, $restriction, $listed, $function, $file, $includable );
735 }
736
737 /**
738 * Do the real work for the constructor, mainly so __call() can intercept
739 * calls to SpecialPage()
740 * @see __construct() for param docs
741 */
742 private function init( $name, $restriction, $listed, $function, $file, $includable ) {
743 $this->mName = $name;
744 $this->mRestriction = $restriction;
745 $this->mListed = $listed;
746 $this->mIncludable = $includable;
747 if ( !$function ) {
748 $this->mFunction = 'wfSpecial'.$name;
749 } else {
750 $this->mFunction = $function;
751 }
752 if ( $file === 'default' ) {
753 $this->mFile = dirname(__FILE__) . "/specials/Special$name.php";
754 } else {
755 $this->mFile = $file;
756 }
757 }
758
759 /**
760 * Use PHP's magic __call handler to get calls to the old PHP4 constructor
761 * because PHP E_STRICT yells at you for having __construct() and SpecialPage()
762 *
763 * @param $fName String Name of called method
764 * @param $a Array Arguments to the method
765 * @deprecated Call isn't deprecated, but SpecialPage::SpecialPage() is
766 */
767 public function __call( $fName, $a ) {
768 // Sometimes $fName is SpecialPage, sometimes it's specialpage. <3 PHP
769 if( strtolower( $fName ) == 'specialpage' ) {
770 // Debug messages now, warnings in 1.19 or 1.20?
771 wfDebug( "Deprecated SpecialPage::SpecialPage() called, use __construct();\n" );
772 $name = isset( $a[0] ) ? $a[0] : '';
773 $restriction = isset( $a[1] ) ? $a[1] : '';
774 $listed = isset( $a[2] ) ? $a[2] : true;
775 $function = isset( $a[3] ) ? $a[3] : false;
776 $file = isset( $a[4] ) ? $a[4] : 'default';
777 $includable = isset( $a[5] ) ? $a[5] : false;
778 $this->init( $name, $restriction, $listed, $function, $file, $includable );
779 } else {
780 $className = get_class( $this );
781 throw new MWException( "Call to undefined method $className::$fName" );
782 }
783 }
784
785 /**#@+
786 * Accessor
787 *
788 * @deprecated
789 */
790 function getName() { return $this->mName; }
791 function getRestriction() { return $this->mRestriction; }
792 function getFile() { return $this->mFile; }
793 function isListed() { return $this->mListed; }
794 /**#@-*/
795
796 /**#@+
797 * Accessor and mutator
798 */
799 function name( $x = null ) { return wfSetVar( $this->mName, $x ); }
800 function restrictions( $x = null) {
801 # Use the one below this
802 wfDeprecated( __METHOD__ );
803 return wfSetVar( $this->mRestriction, $x );
804 }
805 function restriction( $x = null) { return wfSetVar( $this->mRestriction, $x ); }
806 function listed( $x = null) { return wfSetVar( $this->mListed, $x ); }
807 function func( $x = null) { return wfSetVar( $this->mFunction, $x ); }
808 function file( $x = null) { return wfSetVar( $this->mFile, $x ); }
809 function includable( $x = null ) { return wfSetVar( $this->mIncludable, $x ); }
810 function including( $x = null ) { return wfSetVar( $this->mIncluding, $x ); }
811 /**#@-*/
812
813 /**
814 * Get the localised name of the special page
815 */
816 function getLocalName() {
817 if ( !isset( $this->mLocalName ) ) {
818 $this->mLocalName = self::getLocalNameFor( $this->mName );
819 }
820 return $this->mLocalName;
821 }
822
823 /**
824 * Is this page expensive (for some definition of expensive)?
825 * Expensive pages are disabled or cached in miser mode. Originally used
826 * (and still overridden) by QueryPage and subclasses, moved here so that
827 * Special:SpecialPages can safely call it for all special pages.
828 *
829 * @return Boolean
830 */
831 public function isExpensive() {
832 return false;
833 }
834
835 /**
836 * Can be overridden by subclasses with more complicated permissions
837 * schemes.
838 *
839 * @return Boolean: should the page be displayed with the restricted-access
840 * pages?
841 */
842 public function isRestricted() {
843 global $wgGroupPermissions;
844 // DWIM: If all anons can do something, then it is not restricted
845 return $this->mRestriction != '' && empty($wgGroupPermissions['*'][$this->mRestriction]);
846 }
847
848 /**
849 * Checks if the given user (identified by an object) can execute this
850 * special page (as defined by $mRestriction). Can be overridden by sub-
851 * classes with more complicated permissions schemes.
852 *
853 * @param $user User: the user to check
854 * @return Boolean: does the user have permission to view the page?
855 */
856 public function userCanExecute( $user ) {
857 return $user->isAllowed( $this->mRestriction );
858 }
859
860 /**
861 * Output an error message telling the user what access level they have to have
862 */
863 function displayRestrictionError() {
864 global $wgOut;
865 $wgOut->permissionRequired( $this->mRestriction );
866 }
867
868 /**
869 * Sets headers - this should be called from the execute() method of all derived classes!
870 */
871 function setHeaders() {
872 global $wgOut;
873 $wgOut->setArticleRelated( false );
874 $wgOut->setRobotPolicy( "noindex,nofollow" );
875 $wgOut->setPageTitle( $this->getDescription() );
876 }
877
878 /**
879 * Default execute method
880 * Checks user permissions, calls the function given in mFunction
881 *
882 * This may be overridden by subclasses.
883 */
884 function execute( $par ) {
885 global $wgUser;
886
887 $this->setHeaders();
888
889 if ( $this->userCanExecute( $wgUser ) ) {
890 $func = $this->mFunction;
891 // only load file if the function does not exist
892 if(!is_callable($func) and $this->mFile) {
893 require_once( $this->mFile );
894 }
895 $this->outputHeader();
896 call_user_func( $func, $par, $this );
897 } else {
898 $this->displayRestrictionError();
899 }
900 }
901
902 /**
903 * Outputs a summary message on top of special pages
904 * Per default the message key is the canonical name of the special page
905 * May be overriden, i.e. by extensions to stick with the naming conventions
906 * for message keys: 'extensionname-xxx'
907 *
908 * @param $summaryMessageKey String: message key of the summary
909 */
910 function outputHeader( $summaryMessageKey = '' ) {
911 global $wgOut, $wgContLang;
912
913 if( $summaryMessageKey == '' ) {
914 $msg = $wgContLang->lc( $this->name() ) . '-summary';
915 } else {
916 $msg = $summaryMessageKey;
917 }
918 if ( !wfMessage( $msg )->isBlank() and ! $this->including() ) {
919 $wgOut->wrapWikiMsg( "<div class='mw-specialpage-summary'>\n$1\n</div>", $msg );
920 }
921
922 }
923
924 /**
925 * Returns the name that goes in the \<h1\> in the special page itself, and
926 * also the name that will be listed in Special:Specialpages
927 *
928 * Derived classes can override this, but usually it is easier to keep the
929 * default behaviour. Messages can be added at run-time, see
930 * MessageCache.php.
931 *
932 * @return String
933 */
934 function getDescription() {
935 return wfMsg( strtolower( $this->mName ) );
936 }
937
938 /**
939 * Get a self-referential title object
940 *
941 * @return Title object
942 */
943 function getTitle( $subpage = false ) {
944 return self::getTitleFor( $this->mName, $subpage );
945 }
946
947 /**
948 * Set whether this page is listed in Special:Specialpages, at run-time
949 */
950 function setListed( $listed ) {
951 return wfSetVar( $this->mListed, $listed );
952 }
953
954 /**
955 * If the special page is a redirect, then get the Title object it redirects to.
956 * False otherwise.
957 */
958 function getRedirect( $subpage ) {
959 return false;
960 }
961
962 /**
963 * Return part of the request string for a special redirect page
964 * This allows passing, e.g. action=history to Special:Mypage, etc.
965 *
966 * @return String
967 */
968 function getRedirectQuery() {
969 global $wgRequest;
970 $params = array();
971
972 foreach( $this->mAllowedRedirectParams as $arg ) {
973 if( $wgRequest->getVal( $arg, null ) !== null ){
974 $params[$arg] = $wgRequest->getVal( $arg );
975 }
976 }
977
978 foreach( $this->mAddedRedirectParams as $arg => $val ) {
979 $params[$arg] = $val;
980 }
981
982 return count( $params )
983 ? $params
984 : false;
985 }
986
987 /**
988 * Sets the context this SpecialPage is executed in
989 *
990 * @param $request WebRequest
991 * @param $output OutputPage
992 */
993 protected function setContext( $request, $output ) {
994 $this->mRequest = $request;
995 $this->mOutput = $output;
996 $this->mFullTitle = $output->getTitle();
997 }
998 /**
999 * Wrapper around wfMessage that sets the current context. Currently this
1000 * is only the title.
1001 *
1002 * @see wfMessage
1003 */
1004 public function msg( /* $args */ ) {
1005 return call_user_func_array( 'wfMessage', func_get_args() )->title( $this->mFullTitle );
1006 }
1007 }
1008
1009 /**
1010 * Shortcut to construct a special page which is unlisted by default
1011 * @ingroup SpecialPage
1012 */
1013 class UnlistedSpecialPage extends SpecialPage
1014 {
1015 function __construct( $name, $restriction = '', $function = false, $file = 'default' ) {
1016 parent::__construct( $name, $restriction, false, $function, $file );
1017 }
1018 }
1019
1020 /**
1021 * Shortcut to construct an includable special page
1022 * @ingroup SpecialPage
1023 */
1024 class IncludableSpecialPage extends SpecialPage
1025 {
1026 function __construct( $name, $restriction = '', $listed = true, $function = false, $file = 'default' ) {
1027 parent::__construct( $name, $restriction, $listed, $function, $file, true );
1028 }
1029 }
1030
1031 /**
1032 * Shortcut to construct a special page alias.
1033 * @ingroup SpecialPage
1034 */
1035 class SpecialRedirectToSpecial extends UnlistedSpecialPage {
1036 var $redirName, $redirSubpage;
1037
1038 function __construct( $name, $redirName, $redirSubpage = false, $allowedRedirectParams = array(), $addedRedirectParams = array() ) {
1039 parent::__construct( $name );
1040 $this->redirName = $redirName;
1041 $this->redirSubpage = $redirSubpage;
1042 $this->mAllowedRedirectParams = $allowedRedirectParams;
1043 $this->mAddedRedirectParams = $addedRedirectParams;
1044 }
1045
1046 function getRedirect( $subpage ) {
1047 if ( $this->redirSubpage === false ) {
1048 return SpecialPage::getTitleFor( $this->redirName, $subpage );
1049 } else {
1050 return SpecialPage::getTitleFor( $this->redirName, $this->redirSubpage );
1051 }
1052 }
1053 }
1054
1055 /**
1056 * SpecialMypage, SpecialMytalk and SpecialMycontributions special pages
1057 * are used to get user independant links pointing to the user page, talk
1058 * page and list of contributions.
1059 * This can let us cache a single copy of any generated content for all
1060 * users.
1061 */
1062
1063 /**
1064 * Shortcut to construct a special page pointing to current user user's page.
1065 * @ingroup SpecialPage
1066 */
1067 class SpecialMypage extends UnlistedSpecialPage {
1068 function __construct() {
1069 parent::__construct( 'Mypage' );
1070 $this->mAllowedRedirectParams = array( 'action' , 'preload' , 'editintro',
1071 'section', 'oldid', 'diff', 'dir' );
1072 }
1073
1074 function getRedirect( $subpage ) {
1075 global $wgUser;
1076 if ( strval( $subpage ) !== '' ) {
1077 return Title::makeTitle( NS_USER, $wgUser->getName() . '/' . $subpage );
1078 } else {
1079 return Title::makeTitle( NS_USER, $wgUser->getName() );
1080 }
1081 }
1082 }
1083
1084 /**
1085 * Shortcut to construct a special page pointing to current user talk page.
1086 * @ingroup SpecialPage
1087 */
1088 class SpecialMytalk extends UnlistedSpecialPage {
1089 function __construct() {
1090 parent::__construct( 'Mytalk' );
1091 $this->mAllowedRedirectParams = array( 'action' , 'preload' , 'editintro',
1092 'section', 'oldid', 'diff', 'dir' );
1093 }
1094
1095 function getRedirect( $subpage ) {
1096 global $wgUser;
1097 if ( strval( $subpage ) !== '' ) {
1098 return Title::makeTitle( NS_USER_TALK, $wgUser->getName() . '/' . $subpage );
1099 } else {
1100 return Title::makeTitle( NS_USER_TALK, $wgUser->getName() );
1101 }
1102 }
1103 }
1104
1105 /**
1106 * Shortcut to construct a special page pointing to current user contributions.
1107 * @ingroup SpecialPage
1108 */
1109 class SpecialMycontributions extends UnlistedSpecialPage {
1110 function __construct() {
1111 parent::__construct( 'Mycontributions' );
1112 $this->mAllowedRedirectParams = array( 'limit', 'namespace', 'tagfilter',
1113 'offset', 'dir', 'year', 'month', 'feed' );
1114 }
1115
1116 function getRedirect( $subpage ) {
1117 global $wgUser;
1118 return SpecialPage::getTitleFor( 'Contributions', $wgUser->getName() );
1119 }
1120 }
1121
1122 /**
1123 * Redirect to Special:Listfiles?user=$wgUser
1124 */
1125 class SpecialMyuploads extends UnlistedSpecialPage {
1126 function __construct() {
1127 parent::__construct( 'Myuploads' );
1128 $this->mAllowedRedirectParams = array( 'limit' );
1129 }
1130
1131 function getRedirect( $subpage ) {
1132 global $wgUser;
1133 return SpecialPage::getTitleFor( 'Listfiles', $wgUser->getName() );
1134 }
1135 }
1136
1137 /**
1138 * Redirect from Special:PermanentLink/### to index.php?oldid=###
1139 */
1140 class SpecialPermanentLink extends UnlistedSpecialPage {
1141 function __construct() {
1142 parent::__construct( 'PermanentLink' );
1143 $this->mAllowedRedirectParams = array();
1144 }
1145
1146 function getRedirect( $subpage ) {
1147 $subpage = intval( $subpage );
1148 $this->mAddedRedirectParams['oldid'] = $subpage;
1149 return true;
1150 }
1151 }