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