RN populateSha1.php renamed (r94291)
[mediawiki.git] / includes / SpecialPage.php
blobec257b9f7916b6b67ed6f526316edaa4d918ec13
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 RequestContext
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 * @return Associative array mapping page's name to its SpecialPage object
193 * @deprecated since 1.18 call SpecialPageFactory method directly
195 static function getUsablePages() {
196 return SpecialPageFactory::getUsablePages();
200 * Return categorised listable special pages for all users
202 * @return Associative array mapping page's name to its SpecialPage object
203 * @deprecated since 1.18 call SpecialPageFactory method directly
205 static function getRegularPages() {
206 return SpecialPageFactory::getRegularPages();
210 * Return categorised listable special pages which are available
211 * for the current user, but not for everyone
213 * @return Associative array mapping page's name to its SpecialPage object
214 * @deprecated since 1.18 call SpecialPageFactory method directly
216 static function getRestrictedPages() {
217 return SpecialPageFactory::getRestrictedPages();
221 * Execute a special page path.
222 * The path may contain parameters, e.g. Special:Name/Params
223 * Extracts the special page name and call the execute method, passing the parameters
225 * Returns a title object if the page is redirected, false if there was no such special
226 * page, and true if it was successful.
228 * @param $title Title object
229 * @param $context RequestContext
230 * @param $including Bool output is being captured for use in {{special:whatever}}
231 * @return Bool
232 * @deprecated since 1.18 call SpecialPageFactory method directly
234 public static function executePath( &$title, RequestContext &$context, $including = false ) {
235 return SpecialPageFactory::executePath( $title, $context, $including );
239 * Just like executePath() except it returns the HTML instead of outputting it
240 * Returns false if there was no such special page, or a title object if it was
241 * a redirect.
243 * @param $title Title
244 * @return String: HTML fragment
245 * @deprecated since 1.18 call SpecialPageFactory method directly
247 static function capturePath( &$title ) {
248 return SpecialPageFactory::capturePath( $title );
252 * Get the local name for a specified canonical name
254 * @param $name String
255 * @param $subpage Mixed: boolean false, or string
257 * @return String
258 * @deprecated since 1.18 call SpecialPageFactory method directly
260 static function getLocalNameFor( $name, $subpage = false ) {
261 return SpecialPageFactory::getLocalNameFor( $name, $subpage );
265 * Get a localised Title object for a specified special page name
267 * @param $name String
268 * @param $subpage String|Bool subpage string, or false to not use a subpage
269 * @return Title object
271 public static function getTitleFor( $name, $subpage = false ) {
272 $name = SpecialPageFactory::getLocalNameFor( $name, $subpage );
273 if ( $name ) {
274 return Title::makeTitle( NS_SPECIAL, $name );
275 } else {
276 throw new MWException( "Invalid special page name \"$name\"" );
281 * Get a localised Title object for a page name with a possibly unvalidated subpage
283 * @param $name String
284 * @param $subpage String|Bool subpage string, or false to not use a subpage
285 * @return Title object or null if the page doesn't exist
287 public static function getSafeTitleFor( $name, $subpage = false ) {
288 $name = SpecialPageFactory::getLocalNameFor( $name, $subpage );
289 if ( $name ) {
290 return Title::makeTitleSafe( NS_SPECIAL, $name );
291 } else {
292 return null;
297 * Get a title for a given alias
299 * @param $alias String
300 * @return Title or null if there is no such alias
301 * @deprecated since 1.18 call SpecialPageFactory method directly
303 static function getTitleForAlias( $alias ) {
304 return SpecialPageFactory::getTitleForAlias( $alias );
308 * Default constructor for special pages
309 * Derivative classes should call this from their constructor
310 * Note that if the user does not have the required level, an error message will
311 * be displayed by the default execute() method, without the global function ever
312 * being called.
314 * If you override execute(), you can recover the default behaviour with userCanExecute()
315 * and displayRestrictionError()
317 * @param $name String: name of the special page, as seen in links and URLs
318 * @param $restriction String: user right required, e.g. "block" or "delete"
319 * @param $listed Bool: whether the page is listed in Special:Specialpages
320 * @param $function Callback|Bool: function called by execute(). By default it is constructed from $name
321 * @param $file String: file which is included by execute(). It is also constructed from $name by default
322 * @param $includable Bool: whether the page can be included in normal pages
324 public function __construct(
325 $name = '', $restriction = '', $listed = true,
326 $function = false, $file = 'default', $includable = false
328 $this->init( $name, $restriction, $listed, $function, $file, $includable );
332 * Do the real work for the constructor, mainly so __call() can intercept
333 * calls to SpecialPage()
334 * @param $name String: name of the special page, as seen in links and URLs
335 * @param $restriction String: user right required, e.g. "block" or "delete"
336 * @param $listed Bool: whether the page is listed in Special:Specialpages
337 * @param $function Callback|Bool: function called by execute(). By default it is constructed from $name
338 * @param $file String: file which is included by execute(). It is also constructed from $name by default
339 * @param $includable Bool: whether the page can be included in normal pages
341 private function init( $name, $restriction, $listed, $function, $file, $includable ) {
342 $this->mName = $name;
343 $this->mRestriction = $restriction;
344 $this->mListed = $listed;
345 $this->mIncludable = $includable;
346 if ( !$function ) {
347 $this->mFunction = 'wfSpecial'.$name;
348 } else {
349 $this->mFunction = $function;
351 if ( $file === 'default' ) {
352 $this->mFile = dirname(__FILE__) . "/specials/Special$name.php";
353 } else {
354 $this->mFile = $file;
359 * Use PHP's magic __call handler to get calls to the old PHP4 constructor
360 * because PHP E_STRICT yells at you for having __construct() and SpecialPage()
362 * @param $fName String Name of called method
363 * @param $a Array Arguments to the method
364 * @deprecated since 1.17, call parent::__construct()
366 public function __call( $fName, $a ) {
367 // Sometimes $fName is SpecialPage, sometimes it's specialpage. <3 PHP
368 if( strtolower( $fName ) == 'specialpage' ) {
369 // Deprecated messages now, remove in 1.19 or 1.20?
370 wfDeprecated( __METHOD__ );
372 $name = isset( $a[0] ) ? $a[0] : '';
373 $restriction = isset( $a[1] ) ? $a[1] : '';
374 $listed = isset( $a[2] ) ? $a[2] : true;
375 $function = isset( $a[3] ) ? $a[3] : false;
376 $file = isset( $a[4] ) ? $a[4] : 'default';
377 $includable = isset( $a[5] ) ? $a[5] : false;
378 $this->init( $name, $restriction, $listed, $function, $file, $includable );
379 } else {
380 $className = get_class( $this );
381 throw new MWException( "Call to undefined method $className::$fName" );
386 * Get the name of this Special Page.
387 * @return String
389 function getName() {
390 return $this->mName;
394 * Get the permission that a user must have to execute this page
395 * @return String
397 function getRestriction() {
398 return $this->mRestriction;
402 * Get the file which will be included by SpecialPage::execute() if your extension is
403 * still stuck in the past and hasn't overridden the execute() method. No modern code
404 * should want or need to know this.
405 * @return String
406 * @deprecated since 1.18
408 function getFile() {
409 return $this->mFile;
412 // @todo FIXME: Decide which syntax to use for this, and stick to it
414 * Whether this special page is listed in Special:SpecialPages
415 * @since r3583 (v1.3)
416 * @return Bool
418 function isListed() {
419 return $this->mListed;
422 * Set whether this page is listed in Special:Specialpages, at run-time
423 * @since r3583 (v1.3)
424 * @param $listed Bool
425 * @return Bool
427 function setListed( $listed ) {
428 return wfSetVar( $this->mListed, $listed );
431 * Get or set whether this special page is listed in Special:SpecialPages
432 * @since r11308 (v1.6)
433 * @param $x Bool
434 * @return Bool
436 function listed( $x = null) {
437 return wfSetVar( $this->mListed, $x );
441 * Whether it's allowed to transclude the special page via {{Special:Foo/params}}
442 * @return Bool
444 public function isIncludable(){
445 return $this->mIncludable;
449 * These mutators are very evil, as the relevant variables should not mutate. So
450 * don't use them.
451 * @param $x Mixed
452 * @return Mixed
453 * @deprecated since 1.18
455 function name( $x = null ) { return wfSetVar( $this->mName, $x ); }
456 function restriction( $x = null) { return wfSetVar( $this->mRestriction, $x ); }
457 function func( $x = null) { return wfSetVar( $this->mFunction, $x ); }
458 function file( $x = null) { return wfSetVar( $this->mFile, $x ); }
459 function includable( $x = null ) { return wfSetVar( $this->mIncludable, $x ); }
462 * Whether the special page is being evaluated via transclusion
463 * @param $x Bool
464 * @return Bool
466 function including( $x = null ) {
467 return wfSetVar( $this->mIncluding, $x );
471 * Get the localised name of the special page
473 function getLocalName() {
474 if ( !isset( $this->mLocalName ) ) {
475 $this->mLocalName = SpecialPageFactory::getLocalNameFor( $this->mName );
477 return $this->mLocalName;
481 * Is this page expensive (for some definition of expensive)?
482 * Expensive pages are disabled or cached in miser mode. Originally used
483 * (and still overridden) by QueryPage and subclasses, moved here so that
484 * Special:SpecialPages can safely call it for all special pages.
486 * @return Boolean
488 public function isExpensive() {
489 return false;
493 * Can be overridden by subclasses with more complicated permissions
494 * schemes.
496 * @return Boolean: should the page be displayed with the restricted-access
497 * pages?
499 public function isRestricted() {
500 global $wgGroupPermissions;
501 // DWIM: If all anons can do something, then it is not restricted
502 return $this->mRestriction != '' && empty($wgGroupPermissions['*'][$this->mRestriction]);
506 * Checks if the given user (identified by an object) can execute this
507 * special page (as defined by $mRestriction). Can be overridden by sub-
508 * classes with more complicated permissions schemes.
510 * @param $user User: the user to check
511 * @return Boolean: does the user have permission to view the page?
513 public function userCanExecute( User $user ) {
514 return $user->isAllowed( $this->mRestriction );
518 * Output an error message telling the user what access level they have to have
520 function displayRestrictionError() {
521 throw new PermissionsError( $this->mRestriction );
525 * Sets headers - this should be called from the execute() method of all derived classes!
527 function setHeaders() {
528 $out = $this->getOutput();
529 $out->setArticleRelated( false );
530 $out->setRobotPolicy( "noindex,nofollow" );
531 $out->setPageTitle( $this->getDescription() );
535 * Default execute method
536 * Checks user permissions, calls the function given in mFunction
538 * This must be overridden by subclasses; it will be made abstract in a future version
540 * @param $par String subpage string, if one was specified
542 function execute( $par ) {
543 $this->setHeaders();
545 if ( $this->userCanExecute( $this->getUser() ) ) {
546 $func = $this->mFunction;
547 // only load file if the function does not exist
548 if(!is_callable($func) and $this->mFile) {
549 require_once( $this->mFile );
551 $this->outputHeader();
552 call_user_func( $func, $par, $this );
553 } else {
554 $this->displayRestrictionError();
559 * Outputs a summary message on top of special pages
560 * Per default the message key is the canonical name of the special page
561 * May be overriden, i.e. by extensions to stick with the naming conventions
562 * for message keys: 'extensionname-xxx'
564 * @param $summaryMessageKey String: message key of the summary
566 function outputHeader( $summaryMessageKey = '' ) {
567 global $wgContLang;
569 if( $summaryMessageKey == '' ) {
570 $msg = $wgContLang->lc( $this->getName() ) . '-summary';
571 } else {
572 $msg = $summaryMessageKey;
574 if ( !wfMessage( $msg )->isBlank() and ! $this->including() ) {
575 $this->getOutput()->wrapWikiMsg(
576 "<div class='mw-specialpage-summary'>\n$1\n</div>", $msg );
582 * Returns the name that goes in the \<h1\> in the special page itself, and
583 * also the name that will be listed in Special:Specialpages
585 * Derived classes can override this, but usually it is easier to keep the
586 * default behaviour. Messages can be added at run-time, see
587 * MessageCache.php.
589 * @return String
591 function getDescription() {
592 return wfMsg( strtolower( $this->mName ) );
596 * Get a self-referential title object
598 * @param $subpage String|Bool
599 * @return Title object
601 function getTitle( $subpage = false ) {
602 return self::getTitleFor( $this->mName, $subpage );
606 * Sets the context this SpecialPage is executed in
608 * @param $context RequestContext
609 * @since 1.18
611 public function setContext( $context ) {
612 $this->mContext = $context;
616 * Gets the context this SpecialPage is executed in
618 * @return RequestContext
619 * @since 1.18
621 public function getContext() {
622 if ( $this->mContext instanceof RequestContext ) {
623 return $this->mContext;
624 } else {
625 wfDebug( __METHOD__ . " called and \$mContext is null. Return RequestContext::getMain(); for sanity\n" );
626 return RequestContext::getMain();
631 * Get the WebRequest being used for this instance
633 * @return WebRequest
634 * @since 1.18
636 public function getRequest() {
637 return $this->getContext()->getRequest();
641 * Get the OutputPage being used for this instance
643 * @return OutputPage
644 * @since 1.18
646 public function getOutput() {
647 return $this->getContext()->getOutput();
651 * Shortcut to get the User executing this instance
653 * @return User
654 * @since 1.18
656 public function getUser() {
657 return $this->getContext()->getUser();
661 * Shortcut to get the skin being used for this instance
663 * @return Skin
664 * @since 1.18
666 public function getSkin() {
667 return $this->getContext()->getSkin();
671 * Shortcut to get user's language
673 * @return Language
674 * @since 1.18
676 public function getLang() {
677 return $this->getContext()->getLang();
681 * Return the full title, including $par
683 * @return Title
684 * @since 1.18
686 public function getFullTitle() {
687 return $this->getContext()->getTitle();
691 * Wrapper around wfMessage that sets the current context.
693 * @return Message
694 * @see wfMessage
696 public function msg( /* $args */ ) {
697 return call_user_func_array( array( $this->getContext(), 'msg' ), func_get_args() );
701 * Adds RSS/atom links
703 * @param $params array
705 protected function addFeedLinks( $params ) {
706 global $wgFeedClasses, $wgOut;
708 $feedTemplate = wfScript( 'api' ) . '?';
710 foreach( $wgFeedClasses as $format => $class ) {
711 $theseParams = $params + array( 'feedformat' => $format );
712 $url = $feedTemplate . wfArrayToCGI( $theseParams );
713 $wgOut->addFeedLink( $format, $url );
719 * Special page which uses an HTMLForm to handle processing. This is mostly a
720 * clone of FormAction. More special pages should be built this way; maybe this could be
721 * a new structure for SpecialPages
723 abstract class FormSpecialPage extends SpecialPage {
726 * Get an HTMLForm descriptor array
727 * @return Array
729 protected abstract function getFormFields();
732 * Add pre- or post-text to the form
733 * @return String HTML which will be sent to $form->addPreText()
735 protected function preText() { return ''; }
736 protected function postText() { return ''; }
739 * Play with the HTMLForm if you need to more substantially
740 * @param $form HTMLForm
742 protected function alterForm( HTMLForm $form ) {}
745 * Get the HTMLForm to control behaviour
746 * @return HTMLForm|null
748 protected function getForm() {
749 $this->fields = $this->getFormFields();
751 $form = new HTMLForm( $this->fields, $this->getContext() );
752 $form->setSubmitCallback( array( $this, 'onSubmit' ) );
753 $form->setWrapperLegend( wfMessage( strtolower( $this->getName() ) . '-legend' ) );
754 $form->addHeaderText(
755 wfMessage( strtolower( $this->getName() ) . '-text' )->parseAsBlock() );
757 // Retain query parameters (uselang etc)
758 $params = array_diff_key(
759 $this->getRequest()->getQueryValues(), array( 'title' => null ) );
760 $form->addHiddenField( 'redirectparams', wfArrayToCGI( $params ) );
762 $form->addPreText( $this->preText() );
763 $form->addPostText( $this->postText() );
764 $this->alterForm( $form );
766 // Give hooks a chance to alter the form, adding extra fields or text etc
767 wfRunHooks( "Special{$this->getName()}BeforeFormDisplay", array( &$form ) );
769 return $form;
773 * Process the form on POST submission.
774 * @param $data Array
775 * @return Bool|Array true for success, false for didn't-try, array of errors on failure
777 public abstract function onSubmit( array $data );
780 * Do something exciting on successful processing of the form, most likely to show a
781 * confirmation message
783 public abstract function onSuccess();
786 * Basic SpecialPage workflow: get a form, send it to the user; get some data back,
788 * @param $par String Subpage string if one was specified
790 public function execute( $par ) {
791 $this->setParameter( $par );
792 $this->setHeaders();
794 // This will throw exceptions if there's a problem
795 $this->userCanExecute( $this->getUser() );
797 $form = $this->getForm();
798 if ( $form->show() ) {
799 $this->onSuccess();
804 * Maybe do something interesting with the subpage parameter
805 * @param $par String
807 protected function setParameter( $par ){}
810 * Checks if the given user (identified by an object) can perform this action. Can be
811 * overridden by sub-classes with more complicated permissions schemes. Failures here
812 * must throw subclasses of ErrorPageError
814 * @param $user User: the user to check, or null to use the context user
815 * @return Bool true
816 * @throws ErrorPageError
818 public function userCanExecute( User $user ) {
819 if ( $this->requiresWrite() && wfReadOnly() ) {
820 throw new ReadOnlyError();
823 if ( $this->getRestriction() !== null && !$user->isAllowed( $this->getRestriction() ) ) {
824 throw new PermissionsError( $this->getRestriction() );
827 if ( $this->requiresUnblock() && $user->isBlocked() ) {
828 $block = $user->mBlock;
829 throw new UserBlockedError( $block );
832 return true;
836 * Whether this action requires the wiki not to be locked
837 * @return Bool
839 public function requiresWrite() {
840 return true;
844 * Whether this action cannot be executed by a blocked user
845 * @return Bool
847 public function requiresUnblock() {
848 return true;
853 * Shortcut to construct a special page which is unlisted by default
854 * @ingroup SpecialPage
856 class UnlistedSpecialPage extends SpecialPage {
857 function __construct( $name, $restriction = '', $function = false, $file = 'default' ) {
858 parent::__construct( $name, $restriction, false, $function, $file );
861 public function isListed(){
862 return false;
867 * Shortcut to construct an includable special page
868 * @ingroup SpecialPage
870 class IncludableSpecialPage extends SpecialPage {
871 function __construct(
872 $name, $restriction = '', $listed = true, $function = false, $file = 'default'
874 parent::__construct( $name, $restriction, $listed, $function, $file, true );
877 public function isIncludable(){
878 return true;
883 * Shortcut to construct a special page alias.
884 * @ingroup SpecialPage
886 abstract class RedirectSpecialPage extends UnlistedSpecialPage {
888 // Query parameters that can be passed through redirects
889 protected $mAllowedRedirectParams = array();
891 // Query parameteres added by redirects
892 protected $mAddedRedirectParams = array();
894 public function execute( $par ){
895 $redirect = $this->getRedirect( $par );
896 $query = $this->getRedirectQuery();
897 // Redirect to a page title with possible query parameters
898 if ( $redirect instanceof Title ) {
899 $url = $redirect->getFullUrl( $query );
900 $this->getOutput()->redirect( $url );
901 wfProfileOut( __METHOD__ );
902 return $redirect;
903 // Redirect to index.php with query parameters
904 } elseif ( $redirect === true ) {
905 global $wgScript;
906 $url = $wgScript . '?' . wfArrayToCGI( $query );
907 $this->getOutput()->redirect( $url );
908 wfProfileOut( __METHOD__ );
909 return $redirect;
910 } else {
911 $class = __CLASS__;
912 throw new MWException( "RedirectSpecialPage $class doesn't redirect!" );
917 * If the special page is a redirect, then get the Title object it redirects to.
918 * False otherwise.
920 * @param $par String Subpage string
921 * @return Title|false
923 abstract public function getRedirect( $par );
926 * Return part of the request string for a special redirect page
927 * This allows passing, e.g. action=history to Special:Mypage, etc.
929 * @return String
931 public function getRedirectQuery() {
932 $params = array();
934 foreach( $this->mAllowedRedirectParams as $arg ) {
935 if( $this->getRequest()->getVal( $arg, null ) !== null ){
936 $params[$arg] = $this->getRequest()->getVal( $arg );
940 foreach( $this->mAddedRedirectParams as $arg => $val ) {
941 $params[$arg] = $val;
944 return count( $params )
945 ? $params
946 : false;
950 abstract class SpecialRedirectToSpecial extends RedirectSpecialPage {
951 var $redirName, $redirSubpage;
953 function __construct(
954 $name, $redirName, $redirSubpage = false,
955 $allowedRedirectParams = array(), $addedRedirectParams = array()
957 parent::__construct( $name );
958 $this->redirName = $redirName;
959 $this->redirSubpage = $redirSubpage;
960 $this->mAllowedRedirectParams = $allowedRedirectParams;
961 $this->mAddedRedirectParams = $addedRedirectParams;
964 public function getRedirect( $subpage ) {
965 if ( $this->redirSubpage === false ) {
966 return SpecialPage::getTitleFor( $this->redirName, $subpage );
967 } else {
968 return SpecialPage::getTitleFor( $this->redirName, $this->redirSubpage );
974 * ListAdmins --> ListUsers/admin
976 class SpecialListAdmins extends SpecialRedirectToSpecial {
977 function __construct(){
978 parent::__construct( 'ListAdmins', 'ListUsers', 'sysop' );
983 * ListBots --> ListUsers/admin
985 class SpecialListBots extends SpecialRedirectToSpecial {
986 function __construct(){
987 parent::__construct( 'ListAdmins', 'ListUsers', 'bot' );
992 * CreateAccount --> UserLogin/signup
993 * @todo FIXME: This (and the rest of the login frontend) needs to die a horrible painful death
995 class SpecialCreateAccount extends SpecialRedirectToSpecial {
996 function __construct(){
997 parent::__construct( 'CreateAccount', 'Userlogin', 'signup', array( 'uselang' ) );
1001 * SpecialMypage, SpecialMytalk and SpecialMycontributions special pages
1002 * are used to get user independant links pointing to the user page, talk
1003 * page and list of contributions.
1004 * This can let us cache a single copy of any generated content for all
1005 * users.
1009 * Shortcut to construct a special page pointing to current user user's page.
1010 * @ingroup SpecialPage
1012 class SpecialMypage extends RedirectSpecialPage {
1013 function __construct() {
1014 parent::__construct( 'Mypage' );
1015 $this->mAllowedRedirectParams = array( 'action' , 'preload' , 'editintro',
1016 'section', 'oldid', 'diff', 'dir' );
1019 function getRedirect( $subpage ) {
1020 if ( strval( $subpage ) !== '' ) {
1021 return Title::makeTitle( NS_USER, $this->getUser()->getName() . '/' . $subpage );
1022 } else {
1023 return Title::makeTitle( NS_USER, $this->getUser()->getName() );
1029 * Shortcut to construct a special page pointing to current user talk page.
1030 * @ingroup SpecialPage
1032 class SpecialMytalk extends RedirectSpecialPage {
1033 function __construct() {
1034 parent::__construct( 'Mytalk' );
1035 $this->mAllowedRedirectParams = array( 'action' , 'preload' , 'editintro',
1036 'section', 'oldid', 'diff', 'dir' );
1039 function getRedirect( $subpage ) {
1040 if ( strval( $subpage ) !== '' ) {
1041 return Title::makeTitle( NS_USER_TALK, $this->getUser()->getName() . '/' . $subpage );
1042 } else {
1043 return Title::makeTitle( NS_USER_TALK, $this->getUser()->getName() );
1049 * Shortcut to construct a special page pointing to current user contributions.
1050 * @ingroup SpecialPage
1052 class SpecialMycontributions extends RedirectSpecialPage {
1053 function __construct() {
1054 parent::__construct( 'Mycontributions' );
1055 $this->mAllowedRedirectParams = array( 'limit', 'namespace', 'tagfilter',
1056 'offset', 'dir', 'year', 'month', 'feed' );
1059 function getRedirect( $subpage ) {
1060 return SpecialPage::getTitleFor( 'Contributions', $this->getUser()->getName() );
1065 * Redirect to Special:Listfiles?user=$wgUser
1067 class SpecialMyuploads extends RedirectSpecialPage {
1068 function __construct() {
1069 parent::__construct( 'Myuploads' );
1070 $this->mAllowedRedirectParams = array( 'limit' );
1073 function getRedirect( $subpage ) {
1074 return SpecialPage::getTitleFor( 'Listfiles', $this->getUser()->getName() );
1079 * Redirect from Special:PermanentLink/### to index.php?oldid=###
1081 class SpecialPermanentLink extends RedirectSpecialPage {
1082 function __construct() {
1083 parent::__construct( 'PermanentLink' );
1084 $this->mAllowedRedirectParams = array();
1087 function getRedirect( $subpage ) {
1088 $subpage = intval( $subpage );
1089 $this->mAddedRedirectParams['oldid'] = $subpage;
1090 return true;