Revert r97468 and implemented it in another way suggested by Tim
[mediawiki.git] / includes / SpecialPage.php
blob419c595125f0340deec49a2115b01a1862016094
1 <?php
2 /**
3 * SpecialPage: handling special pages and lists thereof.
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.
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.
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.
20 * @file
21 * @ingroup SpecialPage
22 * @defgroup SpecialPage SpecialPage
25 /**
26 * Parent special page class, also static functions for handling the special
27 * page list.
28 * @ingroup SpecialPage
30 class SpecialPage {
32 // The canonical name of this special page
33 // Also used for the default <h1> heading, @see getDescription()
34 protected $mName;
36 // The local name of this special page
37 private $mLocalName;
39 // Minimum user level required to access this page, or "" for anyone.
40 // Also used to categorise the pages in Special:Specialpages
41 private $mRestriction;
43 // Listed in Special:Specialpages?
44 private $mListed;
46 // Function name called by the default execute()
47 private $mFunction;
49 // File which needs to be included before the function above can be called
50 private $mFile;
52 // Whether or not this special page is being included from an article
53 protected $mIncluding;
55 // Whether the special page can be included in an article
56 protected $mIncludable;
58 /**
59 * Current request context
60 * @var IContextSource
62 protected $mContext;
64 /**
65 * Initialise the special page list
66 * This must be called before accessing SpecialPage::$mList
67 * @deprecated since 1.18
69 static function initList() {
70 // Noop
73 /**
74 * @deprecated since 1.18
76 static function initAliasList() {
77 // Noop
80 /**
81 * Given a special page alias, return the special page name.
82 * Returns false if there is no such alias.
84 * @param $alias String
85 * @return String or false
86 * @deprecated since 1.18 call SpecialPageFactory method directly
88 static function resolveAlias( $alias ) {
89 list( $name, /*...*/ ) = SpecialPageFactory::resolveAlias( $alias );
90 return $name;
93 /**
94 * Given a special page name with a possible subpage, return an array
95 * where the first element is the special page name and the second is the
96 * subpage.
98 * @param $alias String
99 * @return Array
100 * @deprecated since 1.18 call SpecialPageFactory method directly
102 static function resolveAliasWithSubpage( $alias ) {
103 return SpecialPageFactory::resolveAlias( $alias );
107 * Add a page to the list of valid special pages. This used to be the preferred
108 * method for adding special pages in extensions. It's now suggested that you add
109 * an associative record to $wgSpecialPages. This avoids autoloading SpecialPage.
111 * @param $page SpecialPage
112 * @deprecated since 1.7, warnings in 1.17, might be removed in 1.20
114 static function addPage( &$page ) {
115 wfDeprecated( __METHOD__ );
116 SpecialPageFactory::getList()->{$page->mName} = $page;
120 * Add a page to a certain display group for Special:SpecialPages
122 * @param $page Mixed: SpecialPage or string
123 * @param $group String
124 * @return null
125 * @deprecated since 1.18 call SpecialPageFactory method directly
127 static function setGroup( $page, $group ) {
128 return SpecialPageFactory::setGroup( $page, $group );
132 * Get the group that the special page belongs in on Special:SpecialPage
134 * @param $page SpecialPage
135 * @return null
136 * @deprecated since 1.18 call SpecialPageFactory method directly
138 static function getGroup( &$page ) {
139 return SpecialPageFactory::getGroup( $page );
143 * Remove a special page from the list
144 * Formerly used to disable expensive or dangerous special pages. The
145 * preferred method is now to add a SpecialPage_initList hook.
146 * @deprecated since 1.18
148 * @param $name String the page to remove
150 static function removePage( $name ) {
151 unset( SpecialPageFactory::getList()->$name );
155 * Check if a given name exist as a special page or as a special page alias
157 * @param $name String: name of a special page
158 * @return Boolean: true if a special page exists with this name
159 * @deprecated since 1.18 call SpecialPageFactory method directly
161 static function exists( $name ) {
162 return SpecialPageFactory::exists( $name );
166 * Find the object with a given name and return it (or NULL)
168 * @param $name String
169 * @return SpecialPage object or null if the page doesn't exist
170 * @deprecated since 1.18 call SpecialPageFactory method directly
172 static function getPage( $name ) {
173 return SpecialPageFactory::getPage( $name );
177 * Get a special page with a given localised name, or NULL if there
178 * is no such special page.
180 * @param $alias String
181 * @return SpecialPage object or null if the page doesn't exist
182 * @deprecated since 1.18 call SpecialPageFactory method directly
184 static function getPageByAlias( $alias ) {
185 return SpecialPageFactory::getPage( $alias );
189 * Return categorised listable special pages which are available
190 * for the current user, and everyone.
192 * @param $user User object to check permissions, $wgUser will be used
193 * if not provided
194 * @return Associative array mapping page's name to its SpecialPage object
195 * @deprecated since 1.18 call SpecialPageFactory method directly
197 static function getUsablePages( User $user = null ) {
198 return SpecialPageFactory::getUsablePages( $user );
202 * Return categorised listable special pages for all users
204 * @return Associative array mapping page's name to its SpecialPage object
205 * @deprecated since 1.18 call SpecialPageFactory method directly
207 static function getRegularPages() {
208 return SpecialPageFactory::getRegularPages();
212 * Return categorised listable special pages which are available
213 * for the current user, but not for everyone
215 * @return Associative array mapping page's name to its SpecialPage object
216 * @deprecated since 1.18 call SpecialPageFactory method directly
218 static function getRestrictedPages() {
219 return SpecialPageFactory::getRestrictedPages();
223 * Execute a special page path.
224 * The path may contain parameters, e.g. Special:Name/Params
225 * Extracts the special page name and call the execute method, passing the parameters
227 * Returns a title object if the page is redirected, false if there was no such special
228 * page, and true if it was successful.
230 * @param $title Title object
231 * @param $context IContextSource
232 * @param $including Bool output is being captured for use in {{special:whatever}}
233 * @return Bool
234 * @deprecated since 1.18 call SpecialPageFactory method directly
236 public static function executePath( &$title, IContextSource &$context, $including = false ) {
237 return SpecialPageFactory::executePath( $title, $context, $including );
241 * Get the local name for a specified canonical name
243 * @param $name String
244 * @param $subpage Mixed: boolean false, or string
246 * @return String
247 * @deprecated since 1.18 call SpecialPageFactory method directly
249 static function getLocalNameFor( $name, $subpage = false ) {
250 return SpecialPageFactory::getLocalNameFor( $name, $subpage );
254 * Get a localised Title object for a specified special page name
256 * @param $name String
257 * @param $subpage String|Bool subpage string, or false to not use a subpage
258 * @return Title object
260 public static function getTitleFor( $name, $subpage = false ) {
261 $name = SpecialPageFactory::getLocalNameFor( $name, $subpage );
262 if ( $name ) {
263 return Title::makeTitle( NS_SPECIAL, $name );
264 } else {
265 throw new MWException( "Invalid special page name \"$name\"" );
270 * Get a localised Title object for a page name with a possibly unvalidated subpage
272 * @param $name String
273 * @param $subpage String|Bool subpage string, or false to not use a subpage
274 * @return Title object or null if the page doesn't exist
276 public static function getSafeTitleFor( $name, $subpage = false ) {
277 $name = SpecialPageFactory::getLocalNameFor( $name, $subpage );
278 if ( $name ) {
279 return Title::makeTitleSafe( NS_SPECIAL, $name );
280 } else {
281 return null;
286 * Get a title for a given alias
288 * @param $alias String
289 * @return Title or null if there is no such alias
290 * @deprecated since 1.18 call SpecialPageFactory method directly
292 static function getTitleForAlias( $alias ) {
293 return SpecialPageFactory::getTitleForAlias( $alias );
297 * Default constructor for special pages
298 * Derivative classes should call this from their constructor
299 * Note that if the user does not have the required level, an error message will
300 * be displayed by the default execute() method, without the global function ever
301 * being called.
303 * If you override execute(), you can recover the default behaviour with userCanExecute()
304 * and displayRestrictionError()
306 * @param $name String: name of the special page, as seen in links and URLs
307 * @param $restriction String: user right required, e.g. "block" or "delete"
308 * @param $listed Bool: whether the page is listed in Special:Specialpages
309 * @param $function Callback|Bool: function called by execute(). By default it is constructed from $name
310 * @param $file String: file which is included by execute(). It is also constructed from $name by default
311 * @param $includable Bool: whether the page can be included in normal pages
313 public function __construct(
314 $name = '', $restriction = '', $listed = true,
315 $function = false, $file = 'default', $includable = false
317 $this->init( $name, $restriction, $listed, $function, $file, $includable );
321 * Do the real work for the constructor, mainly so __call() can intercept
322 * calls to SpecialPage()
323 * @param $name String: name of the special page, as seen in links and URLs
324 * @param $restriction String: user right required, e.g. "block" or "delete"
325 * @param $listed Bool: whether the page is listed in Special:Specialpages
326 * @param $function Callback|Bool: function called by execute(). By default it is constructed from $name
327 * @param $file String: file which is included by execute(). It is also constructed from $name by default
328 * @param $includable Bool: whether the page can be included in normal pages
330 private function init( $name, $restriction, $listed, $function, $file, $includable ) {
331 $this->mName = $name;
332 $this->mRestriction = $restriction;
333 $this->mListed = $listed;
334 $this->mIncludable = $includable;
335 if ( !$function ) {
336 $this->mFunction = 'wfSpecial'.$name;
337 } else {
338 $this->mFunction = $function;
340 if ( $file === 'default' ) {
341 $this->mFile = dirname(__FILE__) . "/specials/Special$name.php";
342 } else {
343 $this->mFile = $file;
348 * Use PHP's magic __call handler to get calls to the old PHP4 constructor
349 * because PHP E_STRICT yells at you for having __construct() and SpecialPage()
351 * @param $fName String Name of called method
352 * @param $a Array Arguments to the method
353 * @deprecated since 1.17, call parent::__construct()
355 public function __call( $fName, $a ) {
356 // Sometimes $fName is SpecialPage, sometimes it's specialpage. <3 PHP
357 if( strtolower( $fName ) == 'specialpage' ) {
358 // Deprecated messages now, remove in 1.19 or 1.20?
359 wfDeprecated( __METHOD__ );
361 $name = isset( $a[0] ) ? $a[0] : '';
362 $restriction = isset( $a[1] ) ? $a[1] : '';
363 $listed = isset( $a[2] ) ? $a[2] : true;
364 $function = isset( $a[3] ) ? $a[3] : false;
365 $file = isset( $a[4] ) ? $a[4] : 'default';
366 $includable = isset( $a[5] ) ? $a[5] : false;
367 $this->init( $name, $restriction, $listed, $function, $file, $includable );
368 } else {
369 $className = get_class( $this );
370 throw new MWException( "Call to undefined method $className::$fName" );
375 * Get the name of this Special Page.
376 * @return String
378 function getName() {
379 return $this->mName;
383 * Get the permission that a user must have to execute this page
384 * @return String
386 function getRestriction() {
387 return $this->mRestriction;
391 * Get the file which will be included by SpecialPage::execute() if your extension is
392 * still stuck in the past and hasn't overridden the execute() method. No modern code
393 * should want or need to know this.
394 * @return String
395 * @deprecated since 1.18
397 function getFile() {
398 return $this->mFile;
401 // @todo FIXME: Decide which syntax to use for this, and stick to it
403 * Whether this special page is listed in Special:SpecialPages
404 * @since r3583 (v1.3)
405 * @return Bool
407 function isListed() {
408 return $this->mListed;
411 * Set whether this page is listed in Special:Specialpages, at run-time
412 * @since r3583 (v1.3)
413 * @param $listed Bool
414 * @return Bool
416 function setListed( $listed ) {
417 return wfSetVar( $this->mListed, $listed );
420 * Get or set whether this special page is listed in Special:SpecialPages
421 * @since r11308 (v1.6)
422 * @param $x Bool
423 * @return Bool
425 function listed( $x = null) {
426 return wfSetVar( $this->mListed, $x );
430 * Whether it's allowed to transclude the special page via {{Special:Foo/params}}
431 * @return Bool
433 public function isIncludable(){
434 return $this->mIncludable;
438 * These mutators are very evil, as the relevant variables should not mutate. So
439 * don't use them.
440 * @param $x Mixed
441 * @return Mixed
442 * @deprecated since 1.18
444 function name( $x = null ) { return wfSetVar( $this->mName, $x ); }
445 function restriction( $x = null) { return wfSetVar( $this->mRestriction, $x ); }
446 function func( $x = null) { return wfSetVar( $this->mFunction, $x ); }
447 function file( $x = null) { return wfSetVar( $this->mFile, $x ); }
448 function includable( $x = null ) { return wfSetVar( $this->mIncludable, $x ); }
451 * Whether the special page is being evaluated via transclusion
452 * @param $x Bool
453 * @return Bool
455 function including( $x = null ) {
456 return wfSetVar( $this->mIncluding, $x );
460 * Get the localised name of the special page
462 function getLocalName() {
463 if ( !isset( $this->mLocalName ) ) {
464 $this->mLocalName = SpecialPageFactory::getLocalNameFor( $this->mName );
466 return $this->mLocalName;
470 * Is this page expensive (for some definition of expensive)?
471 * Expensive pages are disabled or cached in miser mode. Originally used
472 * (and still overridden) by QueryPage and subclasses, moved here so that
473 * Special:SpecialPages can safely call it for all special pages.
475 * @return Boolean
477 public function isExpensive() {
478 return false;
482 * Can be overridden by subclasses with more complicated permissions
483 * schemes.
485 * @return Boolean: should the page be displayed with the restricted-access
486 * pages?
488 public function isRestricted() {
489 global $wgGroupPermissions;
490 // DWIM: If all anons can do something, then it is not restricted
491 return $this->mRestriction != '' && empty($wgGroupPermissions['*'][$this->mRestriction]);
495 * Checks if the given user (identified by an object) can execute this
496 * special page (as defined by $mRestriction). Can be overridden by sub-
497 * classes with more complicated permissions schemes.
499 * @param $user User: the user to check
500 * @return Boolean: does the user have permission to view the page?
502 public function userCanExecute( User $user ) {
503 return $user->isAllowed( $this->mRestriction );
507 * Output an error message telling the user what access level they have to have
509 function displayRestrictionError() {
510 throw new PermissionsError( $this->mRestriction );
514 * Checks if userCanExecute, and if not throws a PermissionsError
516 * @since 1.19
518 public function checkPermissions() {
519 if ( !$this->userCanExecute( $this->getUser() ) ) {
520 $this->displayRestrictionError();
525 * If the wiki is currently in readonly mode, throws a ReadOnlyError
527 * @since 1.19
528 * @throws ReadOnlyError
530 public function checkReadOnly() {
531 if ( wfReadOnly() ) {
532 throw new ReadOnlyError;
537 * Sets headers - this should be called from the execute() method of all derived classes!
539 function setHeaders() {
540 $out = $this->getOutput();
541 $out->setArticleRelated( false );
542 $out->setRobotPolicy( "noindex,nofollow" );
543 $out->setPageTitle( $this->getDescription() );
547 * Default execute method
548 * Checks user permissions, calls the function given in mFunction
550 * This must be overridden by subclasses; it will be made abstract in a future version
552 * @param $par String subpage string, if one was specified
554 function execute( $par ) {
555 $this->setHeaders();
556 $this->checkPermissions();
558 $func = $this->mFunction;
559 // only load file if the function does not exist
560 if( !is_callable($func) && $this->mFile ) {
561 require_once( $this->mFile );
563 $this->outputHeader();
564 call_user_func( $func, $par, $this );
568 * Outputs a summary message on top of special pages
569 * Per default the message key is the canonical name of the special page
570 * May be overriden, i.e. by extensions to stick with the naming conventions
571 * for message keys: 'extensionname-xxx'
573 * @param $summaryMessageKey String: message key of the summary
575 function outputHeader( $summaryMessageKey = '' ) {
576 global $wgContLang;
578 if( $summaryMessageKey == '' ) {
579 $msg = $wgContLang->lc( $this->getName() ) . '-summary';
580 } else {
581 $msg = $summaryMessageKey;
583 if ( !$this->msg( $msg )->isBlank() && !$this->including() ) {
584 $this->getOutput()->wrapWikiMsg(
585 "<div class='mw-specialpage-summary'>\n$1\n</div>", $msg );
591 * Returns the name that goes in the \<h1\> in the special page itself, and
592 * also the name that will be listed in Special:Specialpages
594 * Derived classes can override this, but usually it is easier to keep the
595 * default behaviour. Messages can be added at run-time, see
596 * MessageCache.php.
598 * @return String
600 function getDescription() {
601 return $this->msg( strtolower( $this->mName ) )->text();
605 * Get a self-referential title object
607 * @param $subpage String|Bool
608 * @return Title object
610 function getTitle( $subpage = false ) {
611 return self::getTitleFor( $this->mName, $subpage );
615 * Sets the context this SpecialPage is executed in
617 * @param $context IContextSource
618 * @since 1.18
620 public function setContext( $context ) {
621 $this->mContext = $context;
625 * Gets the context this SpecialPage is executed in
627 * @return IContextSource
628 * @since 1.18
630 public function getContext() {
631 if ( $this->mContext instanceof IContextSource ) {
632 return $this->mContext;
633 } else {
634 wfDebug( __METHOD__ . " called and \$mContext is null. Return RequestContext::getMain(); for sanity\n" );
635 return RequestContext::getMain();
640 * Get the WebRequest being used for this instance
642 * @return WebRequest
643 * @since 1.18
645 public function getRequest() {
646 return $this->getContext()->getRequest();
650 * Get the OutputPage being used for this instance
652 * @return OutputPage
653 * @since 1.18
655 public function getOutput() {
656 return $this->getContext()->getOutput();
660 * Shortcut to get the User executing this instance
662 * @return User
663 * @since 1.18
665 public function getUser() {
666 return $this->getContext()->getUser();
670 * Shortcut to get the skin being used for this instance
672 * @return Skin
673 * @since 1.18
675 public function getSkin() {
676 return $this->getContext()->getSkin();
680 * Shortcut to get user's language
682 * @deprecated 1.19 Use getLanguage instead
683 * @return Language
684 * @since 1.18
686 public function getLang() {
687 return $this->getLanguage();
691 * Shortcut to get user's language
693 * @return Language
694 * @since 1.19
696 public function getLanguage() {
697 return $this->getContext()->getLanguage();
701 * Return the full title, including $par
703 * @return Title
704 * @since 1.18
706 public function getFullTitle() {
707 return $this->getContext()->getTitle();
711 * Wrapper around wfMessage that sets the current context.
713 * @return Message
714 * @see wfMessage
716 public function msg( /* $args */ ) {
717 // Note: can't use func_get_args() directly as second or later item in
718 // a parameter list until PHP 5.3 or you get a fatal error.
719 // Works fine as the first parameter, which appears elsewhere in the
720 // code base. Sighhhh.
721 $args = func_get_args();
722 return call_user_func_array( array( $this->getContext(), 'msg' ), $args );
726 * Adds RSS/atom links
728 * @param $params array
730 protected function addFeedLinks( $params ) {
731 global $wgFeedClasses;
733 $feedTemplate = wfScript( 'api' ) . '?';
735 foreach( $wgFeedClasses as $format => $class ) {
736 $theseParams = $params + array( 'feedformat' => $format );
737 $url = $feedTemplate . wfArrayToCGI( $theseParams );
738 $this->getOutput()->addFeedLink( $format, $url );
744 * Special page which uses an HTMLForm to handle processing. This is mostly a
745 * clone of FormAction. More special pages should be built this way; maybe this could be
746 * a new structure for SpecialPages
748 abstract class FormSpecialPage extends SpecialPage {
751 * Get an HTMLForm descriptor array
752 * @return Array
754 protected abstract function getFormFields();
757 * Add pre- or post-text to the form
758 * @return String HTML which will be sent to $form->addPreText()
760 protected function preText() { return ''; }
761 protected function postText() { return ''; }
764 * Play with the HTMLForm if you need to more substantially
765 * @param $form HTMLForm
767 protected function alterForm( HTMLForm $form ) {}
770 * Get the HTMLForm to control behaviour
771 * @return HTMLForm|null
773 protected function getForm() {
774 $this->fields = $this->getFormFields();
776 $form = new HTMLForm( $this->fields, $this->getContext() );
777 $form->setSubmitCallback( array( $this, 'onSubmit' ) );
778 $form->setWrapperLegend( $this->msg( strtolower( $this->getName() ) . '-legend' ) );
779 $form->addHeaderText(
780 $this->msg( strtolower( $this->getName() ) . '-text' )->parseAsBlock() );
782 // Retain query parameters (uselang etc)
783 $params = array_diff_key(
784 $this->getRequest()->getQueryValues(), array( 'title' => null ) );
785 $form->addHiddenField( 'redirectparams', wfArrayToCGI( $params ) );
787 $form->addPreText( $this->preText() );
788 $form->addPostText( $this->postText() );
789 $this->alterForm( $form );
791 // Give hooks a chance to alter the form, adding extra fields or text etc
792 wfRunHooks( "Special{$this->getName()}BeforeFormDisplay", array( &$form ) );
794 return $form;
798 * Process the form on POST submission.
799 * @param $data Array
800 * @return Bool|Array true for success, false for didn't-try, array of errors on failure
802 public abstract function onSubmit( array $data );
805 * Do something exciting on successful processing of the form, most likely to show a
806 * confirmation message
808 public abstract function onSuccess();
811 * Basic SpecialPage workflow: get a form, send it to the user; get some data back,
813 * @param $par String Subpage string if one was specified
815 public function execute( $par ) {
816 $this->setParameter( $par );
817 $this->setHeaders();
819 // This will throw exceptions if there's a problem
820 $this->checkExecutePermissions( $this->getUser() );
822 $form = $this->getForm();
823 if ( $form->show() ) {
824 $this->onSuccess();
829 * Maybe do something interesting with the subpage parameter
830 * @param $par String
832 protected function setParameter( $par ){}
835 * Called from execute() to check if the given user can perform this action.
836 * Failures here must throw subclasses of ErrorPageError.
837 * @param $user User
838 * @return Bool true
839 * @throws ErrorPageError
841 protected function checkExecutePermissions( User $user ) {
842 $this->checkPermissions();
844 if ( $this->requiresUnblock() && $user->isBlocked() ) {
845 $block = $user->mBlock;
846 throw new UserBlockedError( $block );
849 if ( $this->requiresWrite() ) {
850 $this->checkReadOnly();
853 return true;
857 * Whether this action requires the wiki not to be locked
858 * @return Bool
860 public function requiresWrite() {
861 return true;
865 * Whether this action cannot be executed by a blocked user
866 * @return Bool
868 public function requiresUnblock() {
869 return true;
874 * Shortcut to construct a special page which is unlisted by default
875 * @ingroup SpecialPage
877 class UnlistedSpecialPage extends SpecialPage {
878 function __construct( $name, $restriction = '', $function = false, $file = 'default' ) {
879 parent::__construct( $name, $restriction, false, $function, $file );
882 public function isListed(){
883 return false;
888 * Shortcut to construct an includable special page
889 * @ingroup SpecialPage
891 class IncludableSpecialPage extends SpecialPage {
892 function __construct(
893 $name, $restriction = '', $listed = true, $function = false, $file = 'default'
895 parent::__construct( $name, $restriction, $listed, $function, $file, true );
898 public function isIncludable(){
899 return true;
904 * Shortcut to construct a special page alias.
905 * @ingroup SpecialPage
907 abstract class RedirectSpecialPage extends UnlistedSpecialPage {
909 // Query parameters that can be passed through redirects
910 protected $mAllowedRedirectParams = array();
912 // Query parameteres added by redirects
913 protected $mAddedRedirectParams = array();
915 public function execute( $par ){
916 $redirect = $this->getRedirect( $par );
917 $query = $this->getRedirectQuery();
918 // Redirect to a page title with possible query parameters
919 if ( $redirect instanceof Title ) {
920 $url = $redirect->getFullUrl( $query );
921 $this->getOutput()->redirect( $url );
922 wfProfileOut( __METHOD__ );
923 return $redirect;
924 // Redirect to index.php with query parameters
925 } elseif ( $redirect === true ) {
926 global $wgScript;
927 $url = $wgScript . '?' . wfArrayToCGI( $query );
928 $this->getOutput()->redirect( $url );
929 wfProfileOut( __METHOD__ );
930 return $redirect;
931 } else {
932 $class = __CLASS__;
933 throw new MWException( "RedirectSpecialPage $class doesn't redirect!" );
938 * If the special page is a redirect, then get the Title object it redirects to.
939 * False otherwise.
941 * @param $par String Subpage string
942 * @return Title|false
944 abstract public function getRedirect( $par );
947 * Return part of the request string for a special redirect page
948 * This allows passing, e.g. action=history to Special:Mypage, etc.
950 * @return String
952 public function getRedirectQuery() {
953 $params = array();
955 foreach( $this->mAllowedRedirectParams as $arg ) {
956 if( $this->getRequest()->getVal( $arg, null ) !== null ){
957 $params[$arg] = $this->getRequest()->getVal( $arg );
961 foreach( $this->mAddedRedirectParams as $arg => $val ) {
962 $params[$arg] = $val;
965 return count( $params )
966 ? $params
967 : false;
971 abstract class SpecialRedirectToSpecial extends RedirectSpecialPage {
972 var $redirName, $redirSubpage;
974 function __construct(
975 $name, $redirName, $redirSubpage = false,
976 $allowedRedirectParams = array(), $addedRedirectParams = array()
978 parent::__construct( $name );
979 $this->redirName = $redirName;
980 $this->redirSubpage = $redirSubpage;
981 $this->mAllowedRedirectParams = $allowedRedirectParams;
982 $this->mAddedRedirectParams = $addedRedirectParams;
985 public function getRedirect( $subpage ) {
986 if ( $this->redirSubpage === false ) {
987 return SpecialPage::getTitleFor( $this->redirName, $subpage );
988 } else {
989 return SpecialPage::getTitleFor( $this->redirName, $this->redirSubpage );
995 * ListAdmins --> ListUsers/sysop
997 class SpecialListAdmins extends SpecialRedirectToSpecial {
998 function __construct(){
999 parent::__construct( 'Listadmins', 'Listusers', 'sysop' );
1004 * ListBots --> ListUsers/bot
1006 class SpecialListBots extends SpecialRedirectToSpecial {
1007 function __construct(){
1008 parent::__construct( 'Listbots', 'Listusers', 'bot' );
1013 * CreateAccount --> UserLogin/signup
1014 * @todo FIXME: This (and the rest of the login frontend) needs to die a horrible painful death
1016 class SpecialCreateAccount extends SpecialRedirectToSpecial {
1017 function __construct(){
1018 parent::__construct( 'CreateAccount', 'Userlogin', 'signup', array( 'uselang' ) );
1022 * SpecialMypage, SpecialMytalk and SpecialMycontributions special pages
1023 * are used to get user independant links pointing to the user page, talk
1024 * page and list of contributions.
1025 * This can let us cache a single copy of any generated content for all
1026 * users.
1030 * Shortcut to construct a special page pointing to current user user's page.
1031 * @ingroup SpecialPage
1033 class SpecialMypage extends RedirectSpecialPage {
1034 function __construct() {
1035 parent::__construct( 'Mypage' );
1036 $this->mAllowedRedirectParams = array( 'action' , 'preload' , 'editintro',
1037 'section', 'oldid', 'diff', 'dir',
1038 // Options for action=raw; missing ctype can break JS or CSS in some browsers
1039 'ctype', 'maxage', 'smaxage' );
1042 function getRedirect( $subpage ) {
1043 if ( strval( $subpage ) !== '' ) {
1044 return Title::makeTitle( NS_USER, $this->getUser()->getName() . '/' . $subpage );
1045 } else {
1046 return Title::makeTitle( NS_USER, $this->getUser()->getName() );
1052 * Shortcut to construct a special page pointing to current user talk page.
1053 * @ingroup SpecialPage
1055 class SpecialMytalk extends RedirectSpecialPage {
1056 function __construct() {
1057 parent::__construct( 'Mytalk' );
1058 $this->mAllowedRedirectParams = array( 'action' , 'preload' , 'editintro',
1059 'section', 'oldid', 'diff', 'dir' );
1062 function getRedirect( $subpage ) {
1063 if ( strval( $subpage ) !== '' ) {
1064 return Title::makeTitle( NS_USER_TALK, $this->getUser()->getName() . '/' . $subpage );
1065 } else {
1066 return Title::makeTitle( NS_USER_TALK, $this->getUser()->getName() );
1072 * Shortcut to construct a special page pointing to current user contributions.
1073 * @ingroup SpecialPage
1075 class SpecialMycontributions extends RedirectSpecialPage {
1076 function __construct() {
1077 parent::__construct( 'Mycontributions' );
1078 $this->mAllowedRedirectParams = array( 'limit', 'namespace', 'tagfilter',
1079 'offset', 'dir', 'year', 'month', 'feed' );
1082 function getRedirect( $subpage ) {
1083 return SpecialPage::getTitleFor( 'Contributions', $this->getUser()->getName() );
1088 * Redirect to Special:Listfiles?user=$wgUser
1090 class SpecialMyuploads extends RedirectSpecialPage {
1091 function __construct() {
1092 parent::__construct( 'Myuploads' );
1093 $this->mAllowedRedirectParams = array( 'limit' );
1096 function getRedirect( $subpage ) {
1097 return SpecialPage::getTitleFor( 'Listfiles', $this->getUser()->getName() );
1102 * Redirect from Special:PermanentLink/### to index.php?oldid=###
1104 class SpecialPermanentLink extends RedirectSpecialPage {
1105 function __construct() {
1106 parent::__construct( 'PermanentLink' );
1107 $this->mAllowedRedirectParams = array();
1110 function getRedirect( $subpage ) {
1111 $subpage = intval( $subpage );
1112 if( $subpage === 0 ) {
1113 # throw an error page when no subpage was given
1114 throw new ErrorPageError( 'nopagetitle', 'nopagetext' );
1116 $this->mAddedRedirectParams['oldid'] = $subpage;
1117 return true;