Localisation updates for core and extension messages from translatewiki.net
[mediawiki.git] / includes / SpecialPage.php
blob5ecd013795870dbed7c64947044eb7603b201537
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 wfDeprecated( __METHOD__, '1.18' );
71 // Noop
74 /**
75 * @deprecated since 1.18
77 static function initAliasList() {
78 wfDeprecated( __METHOD__, '1.18' );
79 // Noop
82 /**
83 * Given a special page alias, return the special page name.
84 * Returns false if there is no such alias.
86 * @param $alias String
87 * @return String or false
88 * @deprecated since 1.18 call SpecialPageFactory method directly
90 static function resolveAlias( $alias ) {
91 wfDeprecated( __METHOD__, '1.18' );
92 list( $name, /*...*/ ) = SpecialPageFactory::resolveAlias( $alias );
93 return $name;
96 /**
97 * Given a special page name with a possible subpage, return an array
98 * where the first element is the special page name and the second is the
99 * subpage.
101 * @param $alias String
102 * @return Array
103 * @deprecated since 1.18 call SpecialPageFactory method directly
105 static function resolveAliasWithSubpage( $alias ) {
106 return SpecialPageFactory::resolveAlias( $alias );
110 * Add a page to the list of valid special pages. This used to be the preferred
111 * method for adding special pages in extensions. It's now suggested that you add
112 * an associative record to $wgSpecialPages. This avoids autoloading SpecialPage.
114 * @param $page SpecialPage
115 * @deprecated since 1.7, warnings in 1.17, might be removed in 1.20
117 static function addPage( &$page ) {
118 wfDeprecated( __METHOD__, '1.7' );
119 SpecialPageFactory::getList()->{$page->mName} = $page;
123 * Add a page to a certain display group for Special:SpecialPages
125 * @param $page Mixed: SpecialPage or string
126 * @param $group String
127 * @return null
128 * @deprecated since 1.18 call SpecialPageFactory method directly
130 static function setGroup( $page, $group ) {
131 wfDeprecated( __METHOD__, '1.18' );
132 return SpecialPageFactory::setGroup( $page, $group );
136 * Get the group that the special page belongs in on Special:SpecialPage
138 * @param $page SpecialPage
139 * @return null
140 * @deprecated since 1.18 call SpecialPageFactory method directly
142 static function getGroup( &$page ) {
143 wfDeprecated( __METHOD__, '1.18' );
144 return SpecialPageFactory::getGroup( $page );
148 * Remove a special page from the list
149 * Formerly used to disable expensive or dangerous special pages. The
150 * preferred method is now to add a SpecialPage_initList hook.
151 * @deprecated since 1.18
153 * @param $name String the page to remove
155 static function removePage( $name ) {
156 wfDeprecated( __METHOD__, '1.18' );
157 unset( SpecialPageFactory::getList()->$name );
161 * Check if a given name exist as a special page or as a special page alias
163 * @param $name String: name of a special page
164 * @return Boolean: true if a special page exists with this name
165 * @deprecated since 1.18 call SpecialPageFactory method directly
167 static function exists( $name ) {
168 wfDeprecated( __METHOD__, '1.18' );
169 return SpecialPageFactory::exists( $name );
173 * Find the object with a given name and return it (or NULL)
175 * @param $name String
176 * @return SpecialPage object or null if the page doesn't exist
177 * @deprecated since 1.18 call SpecialPageFactory method directly
179 static function getPage( $name ) {
180 wfDeprecated( __METHOD__, '1.18' );
181 return SpecialPageFactory::getPage( $name );
185 * Get a special page with a given localised name, or NULL if there
186 * is no such special page.
188 * @param $alias String
189 * @return SpecialPage object or null if the page doesn't exist
190 * @deprecated since 1.18 call SpecialPageFactory method directly
192 static function getPageByAlias( $alias ) {
193 wfDeprecated( __METHOD__, '1.18' );
194 return SpecialPageFactory::getPage( $alias );
198 * Return categorised listable special pages which are available
199 * for the current user, and everyone.
201 * @param $user User object to check permissions, $wgUser will be used
202 * if not provided
203 * @return array Associative array mapping page's name to its SpecialPage object
204 * @deprecated since 1.18 call SpecialPageFactory method directly
206 static function getUsablePages( User $user = null ) {
207 wfDeprecated( __METHOD__, '1.18' );
208 return SpecialPageFactory::getUsablePages( $user );
212 * Return categorised listable special pages for all users
214 * @return array Associative array mapping page's name to its SpecialPage object
215 * @deprecated since 1.18 call SpecialPageFactory method directly
217 static function getRegularPages() {
218 wfDeprecated( __METHOD__, '1.18' );
219 return SpecialPageFactory::getRegularPages();
223 * Return categorised listable special pages which are available
224 * for the current user, but not for everyone
226 * @return array Associative array mapping page's name to its SpecialPage object
227 * @deprecated since 1.18 call SpecialPageFactory method directly
229 static function getRestrictedPages() {
230 wfDeprecated( __METHOD__, '1.18' );
231 return SpecialPageFactory::getRestrictedPages();
235 * Execute a special page path.
236 * The path may contain parameters, e.g. Special:Name/Params
237 * Extracts the special page name and call the execute method, passing the parameters
239 * Returns a title object if the page is redirected, false if there was no such special
240 * page, and true if it was successful.
242 * @param $title Title object
243 * @param $context IContextSource
244 * @param $including Bool output is being captured for use in {{special:whatever}}
245 * @return Bool
246 * @deprecated since 1.18 call SpecialPageFactory method directly
248 public static function executePath( &$title, IContextSource &$context, $including = false ) {
249 wfDeprecated( __METHOD__, '1.18' );
250 return SpecialPageFactory::executePath( $title, $context, $including );
254 * Get the local name for a specified canonical name
256 * @param $name String
257 * @param $subpage Mixed: boolean false, or string
259 * @return String
260 * @deprecated since 1.18 call SpecialPageFactory method directly
262 static function getLocalNameFor( $name, $subpage = false ) {
263 wfDeprecated( __METHOD__, '1.18' );
264 return SpecialPageFactory::getLocalNameFor( $name, $subpage );
268 * Get a localised Title object for a specified special page name
270 * @param $name String
271 * @param $subpage String|Bool subpage string, or false to not use a subpage
272 * @return Title object
274 public static function getTitleFor( $name, $subpage = false ) {
275 $name = SpecialPageFactory::getLocalNameFor( $name, $subpage );
276 if ( $name ) {
277 return Title::makeTitle( NS_SPECIAL, $name );
278 } else {
279 throw new MWException( "Invalid special page name \"$name\"" );
284 * Get a localised Title object for a page name with a possibly unvalidated subpage
286 * @param $name String
287 * @param $subpage String|Bool subpage string, or false to not use a subpage
288 * @return Title object or null if the page doesn't exist
290 public static function getSafeTitleFor( $name, $subpage = false ) {
291 $name = SpecialPageFactory::getLocalNameFor( $name, $subpage );
292 if ( $name ) {
293 return Title::makeTitleSafe( NS_SPECIAL, $name );
294 } else {
295 return null;
300 * Get a title for a given alias
302 * @param $alias String
303 * @return Title or null if there is no such alias
304 * @deprecated since 1.18 call SpecialPageFactory method directly
306 static function getTitleForAlias( $alias ) {
307 wfDeprecated( __METHOD__, '1.18' );
308 return SpecialPageFactory::getTitleForAlias( $alias );
312 * Default constructor for special pages
313 * Derivative classes should call this from their constructor
314 * Note that if the user does not have the required level, an error message will
315 * be displayed by the default execute() method, without the global function ever
316 * being called.
318 * If you override execute(), you can recover the default behaviour with userCanExecute()
319 * and displayRestrictionError()
321 * @param $name String: name of the special page, as seen in links and URLs
322 * @param $restriction String: user right required, e.g. "block" or "delete"
323 * @param $listed Bool: whether the page is listed in Special:Specialpages
324 * @param $function Callback|Bool: function called by execute(). By default it is constructed from $name
325 * @param $file String: file which is included by execute(). It is also constructed from $name by default
326 * @param $includable Bool: whether the page can be included in normal pages
328 public function __construct(
329 $name = '', $restriction = '', $listed = true,
330 $function = false, $file = 'default', $includable = false
332 $this->init( $name, $restriction, $listed, $function, $file, $includable );
336 * Do the real work for the constructor, mainly so __call() can intercept
337 * calls to SpecialPage()
338 * @param $name String: name of the special page, as seen in links and URLs
339 * @param $restriction String: user right required, e.g. "block" or "delete"
340 * @param $listed Bool: whether the page is listed in Special:Specialpages
341 * @param $function Callback|Bool: function called by execute(). By default it is constructed from $name
342 * @param $file String: file which is included by execute(). It is also constructed from $name by default
343 * @param $includable Bool: whether the page can be included in normal pages
345 private function init( $name, $restriction, $listed, $function, $file, $includable ) {
346 $this->mName = $name;
347 $this->mRestriction = $restriction;
348 $this->mListed = $listed;
349 $this->mIncludable = $includable;
350 if ( !$function ) {
351 $this->mFunction = 'wfSpecial' . $name;
352 } else {
353 $this->mFunction = $function;
355 if ( $file === 'default' ) {
356 $this->mFile = dirname( __FILE__ ) . "/specials/Special$name.php";
357 } else {
358 $this->mFile = $file;
363 * Use PHP's magic __call handler to get calls to the old PHP4 constructor
364 * because PHP E_STRICT yells at you for having __construct() and SpecialPage()
366 * @param $fName String Name of called method
367 * @param $a Array Arguments to the method
368 * @deprecated since 1.17, call parent::__construct()
370 public function __call( $fName, $a ) {
371 // Deprecated messages now, remove in 1.19 or 1.20?
372 wfDeprecated( __METHOD__, '1.17' );
374 // Sometimes $fName is SpecialPage, sometimes it's specialpage. <3 PHP
375 if ( strtolower( $fName ) == 'specialpage' ) {
376 $name = isset( $a[0] ) ? $a[0] : '';
377 $restriction = isset( $a[1] ) ? $a[1] : '';
378 $listed = isset( $a[2] ) ? $a[2] : true;
379 $function = isset( $a[3] ) ? $a[3] : false;
380 $file = isset( $a[4] ) ? $a[4] : 'default';
381 $includable = isset( $a[5] ) ? $a[5] : false;
382 $this->init( $name, $restriction, $listed, $function, $file, $includable );
383 } else {
384 $className = get_class( $this );
385 throw new MWException( "Call to undefined method $className::$fName" );
390 * Get the name of this Special Page.
391 * @return String
393 function getName() {
394 return $this->mName;
398 * Get the permission that a user must have to execute this page
399 * @return String
401 function getRestriction() {
402 return $this->mRestriction;
406 * Get the file which will be included by SpecialPage::execute() if your extension is
407 * still stuck in the past and hasn't overridden the execute() method. No modern code
408 * should want or need to know this.
409 * @return String
410 * @deprecated since 1.18
412 function getFile() {
413 wfDeprecated( __METHOD__, '1.18' );
414 return $this->mFile;
417 // @todo FIXME: Decide which syntax to use for this, and stick to it
419 * Whether this special page is listed in Special:SpecialPages
420 * @since r3583 (v1.3)
421 * @return Bool
423 function isListed() {
424 return $this->mListed;
427 * Set whether this page is listed in Special:Specialpages, at run-time
428 * @since r3583 (v1.3)
429 * @param $listed Bool
430 * @return Bool
432 function setListed( $listed ) {
433 return wfSetVar( $this->mListed, $listed );
436 * Get or set whether this special page is listed in Special:SpecialPages
437 * @since r11308 (v1.6)
438 * @param $x Bool
439 * @return Bool
441 function listed( $x = null ) {
442 return wfSetVar( $this->mListed, $x );
446 * Whether it's allowed to transclude the special page via {{Special:Foo/params}}
447 * @return Bool
449 public function isIncludable() {
450 return $this->mIncludable;
454 * These mutators are very evil, as the relevant variables should not mutate. So
455 * don't use them.
456 * @param $x Mixed
457 * @return Mixed
458 * @deprecated since 1.18
460 function name( $x = null ) { wfDeprecated( __METHOD__, '1.18' ); return wfSetVar( $this->mName, $x ); }
463 * These mutators are very evil, as the relevant variables should not mutate. So
464 * don't use them.
465 * @param $x Mixed
466 * @return Mixed
467 * @deprecated since 1.18
469 function restriction( $x = null ) { wfDeprecated( __METHOD__, '1.18' ); return wfSetVar( $this->mRestriction, $x ); }
472 * These mutators are very evil, as the relevant variables should not mutate. So
473 * don't use them.
474 * @param $x Mixed
475 * @return Mixed
476 * @deprecated since 1.18
478 function func( $x = null ) { wfDeprecated( __METHOD__, '1.18' ); return wfSetVar( $this->mFunction, $x ); }
481 * These mutators are very evil, as the relevant variables should not mutate. So
482 * don't use them.
483 * @param $x Mixed
484 * @return Mixed
485 * @deprecated since 1.18
487 function file( $x = null ) { wfDeprecated( __METHOD__, '1.18' ); return wfSetVar( $this->mFile, $x ); }
490 * These mutators are very evil, as the relevant variables should not mutate. So
491 * don't use them.
492 * @param $x Mixed
493 * @return Mixed
494 * @deprecated since 1.18
496 function includable( $x = null ) { wfDeprecated( __METHOD__, '1.18' ); return wfSetVar( $this->mIncludable, $x ); }
499 * Whether the special page is being evaluated via transclusion
500 * @param $x Bool
501 * @return Bool
503 function including( $x = null ) {
504 return wfSetVar( $this->mIncluding, $x );
508 * Get the localised name of the special page
510 function getLocalName() {
511 if ( !isset( $this->mLocalName ) ) {
512 $this->mLocalName = SpecialPageFactory::getLocalNameFor( $this->mName );
514 return $this->mLocalName;
518 * Is this page expensive (for some definition of expensive)?
519 * Expensive pages are disabled or cached in miser mode. Originally used
520 * (and still overridden) by QueryPage and subclasses, moved here so that
521 * Special:SpecialPages can safely call it for all special pages.
523 * @return Boolean
525 public function isExpensive() {
526 return false;
530 * Can be overridden by subclasses with more complicated permissions
531 * schemes.
533 * @return Boolean: should the page be displayed with the restricted-access
534 * pages?
536 public function isRestricted() {
537 global $wgGroupPermissions;
538 // DWIM: If all anons can do something, then it is not restricted
539 return $this->mRestriction != '' && empty( $wgGroupPermissions['*'][$this->mRestriction] );
543 * Checks if the given user (identified by an object) can execute this
544 * special page (as defined by $mRestriction). Can be overridden by sub-
545 * classes with more complicated permissions schemes.
547 * @param $user User: the user to check
548 * @return Boolean: does the user have permission to view the page?
550 public function userCanExecute( User $user ) {
551 return $user->isAllowed( $this->mRestriction );
555 * Output an error message telling the user what access level they have to have
557 function displayRestrictionError() {
558 throw new PermissionsError( $this->mRestriction );
562 * Checks if userCanExecute, and if not throws a PermissionsError
564 * @since 1.19
566 public function checkPermissions() {
567 if ( !$this->userCanExecute( $this->getUser() ) ) {
568 $this->displayRestrictionError();
573 * If the wiki is currently in readonly mode, throws a ReadOnlyError
575 * @since 1.19
576 * @throws ReadOnlyError
578 public function checkReadOnly() {
579 if ( wfReadOnly() ) {
580 throw new ReadOnlyError;
585 * Sets headers - this should be called from the execute() method of all derived classes!
587 function setHeaders() {
588 $out = $this->getOutput();
589 $out->setArticleRelated( false );
590 $out->setRobotPolicy( "noindex,nofollow" );
591 $out->setPageTitle( $this->getDescription() );
595 * Default execute method
596 * Checks user permissions, calls the function given in mFunction
598 * This must be overridden by subclasses; it will be made abstract in a future version
600 * @param $par String subpage string, if one was specified
602 function execute( $par ) {
603 $this->setHeaders();
604 $this->checkPermissions();
606 $func = $this->mFunction;
607 // only load file if the function does not exist
608 if ( !is_callable( $func ) && $this->mFile ) {
609 require_once( $this->mFile );
611 $this->outputHeader();
612 call_user_func( $func, $par, $this );
616 * Outputs a summary message on top of special pages
617 * Per default the message key is the canonical name of the special page
618 * May be overriden, i.e. by extensions to stick with the naming conventions
619 * for message keys: 'extensionname-xxx'
621 * @param $summaryMessageKey String: message key of the summary
623 function outputHeader( $summaryMessageKey = '' ) {
624 global $wgContLang;
626 if ( $summaryMessageKey == '' ) {
627 $msg = $wgContLang->lc( $this->getName() ) . '-summary';
628 } else {
629 $msg = $summaryMessageKey;
631 if ( !$this->msg( $msg )->isBlank() && !$this->including() ) {
632 $this->getOutput()->wrapWikiMsg(
633 "<div class='mw-specialpage-summary'>\n$1\n</div>", $msg );
639 * Returns the name that goes in the \<h1\> in the special page itself, and
640 * also the name that will be listed in Special:Specialpages
642 * Derived classes can override this, but usually it is easier to keep the
643 * default behaviour. Messages can be added at run-time, see
644 * MessageCache.php.
646 * @return String
648 function getDescription() {
649 return $this->msg( strtolower( $this->mName ) )->text();
653 * Get a self-referential title object
655 * @param $subpage String|Bool
656 * @return Title object
658 function getTitle( $subpage = false ) {
659 return self::getTitleFor( $this->mName, $subpage );
663 * Sets the context this SpecialPage is executed in
665 * @param $context IContextSource
666 * @since 1.18
668 public function setContext( $context ) {
669 $this->mContext = $context;
673 * Gets the context this SpecialPage is executed in
675 * @return IContextSource|RequestContext
676 * @since 1.18
678 public function getContext() {
679 if ( $this->mContext instanceof IContextSource ) {
680 return $this->mContext;
681 } else {
682 wfDebug( __METHOD__ . " called and \$mContext is null. Return RequestContext::getMain(); for sanity\n" );
683 return RequestContext::getMain();
688 * Get the WebRequest being used for this instance
690 * @return WebRequest
691 * @since 1.18
693 public function getRequest() {
694 return $this->getContext()->getRequest();
698 * Get the OutputPage being used for this instance
700 * @return OutputPage
701 * @since 1.18
703 public function getOutput() {
704 return $this->getContext()->getOutput();
708 * Shortcut to get the User executing this instance
710 * @return User
711 * @since 1.18
713 public function getUser() {
714 return $this->getContext()->getUser();
718 * Shortcut to get the skin being used for this instance
720 * @return Skin
721 * @since 1.18
723 public function getSkin() {
724 return $this->getContext()->getSkin();
728 * Shortcut to get user's language
730 * @deprecated 1.19 Use getLanguage instead
731 * @return Language
732 * @since 1.18
734 public function getLang() {
735 wfDeprecated( __METHOD__, '1.19' );
736 return $this->getLanguage();
740 * Shortcut to get user's language
742 * @return Language
743 * @since 1.19
745 public function getLanguage() {
746 return $this->getContext()->getLanguage();
750 * Return the full title, including $par
752 * @return Title
753 * @since 1.18
755 public function getFullTitle() {
756 return $this->getContext()->getTitle();
760 * Wrapper around wfMessage that sets the current context.
762 * @return Message
763 * @see wfMessage
765 public function msg( /* $args */ ) {
766 // Note: can't use func_get_args() directly as second or later item in
767 // a parameter list until PHP 5.3 or you get a fatal error.
768 // Works fine as the first parameter, which appears elsewhere in the
769 // code base. Sighhhh.
770 $args = func_get_args();
771 return call_user_func_array( array( $this->getContext(), 'msg' ), $args );
775 * Adds RSS/atom links
777 * @param $params array
779 protected function addFeedLinks( $params ) {
780 global $wgFeedClasses;
782 $feedTemplate = wfScript( 'api' ) . '?';
784 foreach ( $wgFeedClasses as $format => $class ) {
785 $theseParams = $params + array( 'feedformat' => $format );
786 $url = $feedTemplate . wfArrayToCGI( $theseParams );
787 $this->getOutput()->addFeedLink( $format, $url );
793 * Special page which uses an HTMLForm to handle processing. This is mostly a
794 * clone of FormAction. More special pages should be built this way; maybe this could be
795 * a new structure for SpecialPages
797 abstract class FormSpecialPage extends SpecialPage {
800 * Get an HTMLForm descriptor array
801 * @return Array
803 protected abstract function getFormFields();
806 * Add pre- or post-text to the form
807 * @return String HTML which will be sent to $form->addPreText()
809 protected function preText() { return ''; }
810 protected function postText() { return ''; }
813 * Play with the HTMLForm if you need to more substantially
814 * @param $form HTMLForm
816 protected function alterForm( HTMLForm $form ) {}
819 * Get the HTMLForm to control behaviour
820 * @return HTMLForm|null
822 protected function getForm() {
823 $this->fields = $this->getFormFields();
825 $form = new HTMLForm( $this->fields, $this->getContext() );
826 $form->setSubmitCallback( array( $this, 'onSubmit' ) );
827 $form->setWrapperLegend( $this->msg( strtolower( $this->getName() ) . '-legend' ) );
828 $form->addHeaderText(
829 $this->msg( strtolower( $this->getName() ) . '-text' )->parseAsBlock() );
831 // Retain query parameters (uselang etc)
832 $params = array_diff_key(
833 $this->getRequest()->getQueryValues(), array( 'title' => null ) );
834 $form->addHiddenField( 'redirectparams', wfArrayToCGI( $params ) );
836 $form->addPreText( $this->preText() );
837 $form->addPostText( $this->postText() );
838 $this->alterForm( $form );
840 // Give hooks a chance to alter the form, adding extra fields or text etc
841 wfRunHooks( "Special{$this->getName()}BeforeFormDisplay", array( &$form ) );
843 return $form;
847 * Process the form on POST submission.
848 * @param $data Array
849 * @return Bool|Array true for success, false for didn't-try, array of errors on failure
851 public abstract function onSubmit( array $data );
854 * Do something exciting on successful processing of the form, most likely to show a
855 * confirmation message
857 public abstract function onSuccess();
860 * Basic SpecialPage workflow: get a form, send it to the user; get some data back,
862 * @param $par String Subpage string if one was specified
864 public function execute( $par ) {
865 $this->setParameter( $par );
866 $this->setHeaders();
868 // This will throw exceptions if there's a problem
869 $this->checkExecutePermissions( $this->getUser() );
871 $form = $this->getForm();
872 if ( $form->show() ) {
873 $this->onSuccess();
878 * Maybe do something interesting with the subpage parameter
879 * @param $par String
881 protected function setParameter( $par ) {}
884 * Called from execute() to check if the given user can perform this action.
885 * Failures here must throw subclasses of ErrorPageError.
886 * @param $user User
887 * @return Bool true
888 * @throws ErrorPageError
890 protected function checkExecutePermissions( User $user ) {
891 $this->checkPermissions();
893 if ( $this->requiresUnblock() && $user->isBlocked() ) {
894 $block = $user->getBlock();
895 throw new UserBlockedError( $block );
898 if ( $this->requiresWrite() ) {
899 $this->checkReadOnly();
902 return true;
906 * Whether this action requires the wiki not to be locked
907 * @return Bool
909 public function requiresWrite() {
910 return true;
914 * Whether this action cannot be executed by a blocked user
915 * @return Bool
917 public function requiresUnblock() {
918 return true;
923 * Shortcut to construct a special page which is unlisted by default
924 * @ingroup SpecialPage
926 class UnlistedSpecialPage extends SpecialPage {
927 function __construct( $name, $restriction = '', $function = false, $file = 'default' ) {
928 parent::__construct( $name, $restriction, false, $function, $file );
931 public function isListed() {
932 return false;
937 * Shortcut to construct an includable special page
938 * @ingroup SpecialPage
940 class IncludableSpecialPage extends SpecialPage {
941 function __construct(
942 $name, $restriction = '', $listed = true, $function = false, $file = 'default'
944 parent::__construct( $name, $restriction, $listed, $function, $file, true );
947 public function isIncludable() {
948 return true;
953 * Shortcut to construct a special page alias.
954 * @ingroup SpecialPage
956 abstract class RedirectSpecialPage extends UnlistedSpecialPage {
958 // Query parameters that can be passed through redirects
959 protected $mAllowedRedirectParams = array();
961 // Query parameteres added by redirects
962 protected $mAddedRedirectParams = array();
964 public function execute( $par ) {
965 $redirect = $this->getRedirect( $par );
966 $query = $this->getRedirectQuery();
967 // Redirect to a page title with possible query parameters
968 if ( $redirect instanceof Title ) {
969 $url = $redirect->getFullUrl( $query );
970 $this->getOutput()->redirect( $url );
971 wfProfileOut( __METHOD__ );
972 return $redirect;
973 // Redirect to index.php with query parameters
974 } elseif ( $redirect === true ) {
975 global $wgScript;
976 $url = $wgScript . '?' . wfArrayToCGI( $query );
977 $this->getOutput()->redirect( $url );
978 wfProfileOut( __METHOD__ );
979 return $redirect;
980 } else {
981 $class = __CLASS__;
982 throw new MWException( "RedirectSpecialPage $class doesn't redirect!" );
987 * If the special page is a redirect, then get the Title object it redirects to.
988 * False otherwise.
990 * @param $par String Subpage string
991 * @return Title|bool
993 abstract public function getRedirect( $par );
996 * Return part of the request string for a special redirect page
997 * This allows passing, e.g. action=history to Special:Mypage, etc.
999 * @return String
1001 public function getRedirectQuery() {
1002 $params = array();
1004 foreach ( $this->mAllowedRedirectParams as $arg ) {
1005 if ( $this->getRequest()->getVal( $arg, null ) !== null ) {
1006 $params[$arg] = $this->getRequest()->getVal( $arg );
1010 foreach ( $this->mAddedRedirectParams as $arg => $val ) {
1011 $params[$arg] = $val;
1014 return count( $params )
1015 ? $params
1016 : false;
1020 abstract class SpecialRedirectToSpecial extends RedirectSpecialPage {
1021 var $redirName, $redirSubpage;
1023 function __construct(
1024 $name, $redirName, $redirSubpage = false,
1025 $allowedRedirectParams = array(), $addedRedirectParams = array()
1027 parent::__construct( $name );
1028 $this->redirName = $redirName;
1029 $this->redirSubpage = $redirSubpage;
1030 $this->mAllowedRedirectParams = $allowedRedirectParams;
1031 $this->mAddedRedirectParams = $addedRedirectParams;
1034 public function getRedirect( $subpage ) {
1035 if ( $this->redirSubpage === false ) {
1036 return SpecialPage::getTitleFor( $this->redirName, $subpage );
1037 } else {
1038 return SpecialPage::getTitleFor( $this->redirName, $this->redirSubpage );
1044 * ListAdmins --> ListUsers/sysop
1046 class SpecialListAdmins extends SpecialRedirectToSpecial {
1047 function __construct() {
1048 parent::__construct( 'Listadmins', 'Listusers', 'sysop' );
1053 * ListBots --> ListUsers/bot
1055 class SpecialListBots extends SpecialRedirectToSpecial {
1056 function __construct() {
1057 parent::__construct( 'Listbots', 'Listusers', 'bot' );
1062 * CreateAccount --> UserLogin/signup
1063 * @todo FIXME: This (and the rest of the login frontend) needs to die a horrible painful death
1065 class SpecialCreateAccount extends SpecialRedirectToSpecial {
1066 function __construct() {
1067 parent::__construct( 'CreateAccount', 'Userlogin', 'signup', array( 'uselang' ) );
1071 * SpecialMypage, SpecialMytalk and SpecialMycontributions special pages
1072 * are used to get user independant links pointing to the user page, talk
1073 * page and list of contributions.
1074 * This can let us cache a single copy of any generated content for all
1075 * users.
1079 * Shortcut to construct a special page pointing to current user user's page.
1080 * @ingroup SpecialPage
1082 class SpecialMypage extends RedirectSpecialPage {
1083 function __construct() {
1084 parent::__construct( 'Mypage' );
1085 $this->mAllowedRedirectParams = array( 'action' , 'preload' , 'editintro',
1086 'section', 'oldid', 'diff', 'dir',
1087 // Options for action=raw; missing ctype can break JS or CSS in some browsers
1088 'ctype', 'maxage', 'smaxage' );
1091 function getRedirect( $subpage ) {
1092 if ( strval( $subpage ) !== '' ) {
1093 return Title::makeTitle( NS_USER, $this->getUser()->getName() . '/' . $subpage );
1094 } else {
1095 return Title::makeTitle( NS_USER, $this->getUser()->getName() );
1101 * Shortcut to construct a special page pointing to current user talk page.
1102 * @ingroup SpecialPage
1104 class SpecialMytalk extends RedirectSpecialPage {
1105 function __construct() {
1106 parent::__construct( 'Mytalk' );
1107 $this->mAllowedRedirectParams = array( 'action' , 'preload' , 'editintro',
1108 'section', 'oldid', 'diff', 'dir' );
1111 function getRedirect( $subpage ) {
1112 if ( strval( $subpage ) !== '' ) {
1113 return Title::makeTitle( NS_USER_TALK, $this->getUser()->getName() . '/' . $subpage );
1114 } else {
1115 return Title::makeTitle( NS_USER_TALK, $this->getUser()->getName() );
1121 * Shortcut to construct a special page pointing to current user contributions.
1122 * @ingroup SpecialPage
1124 class SpecialMycontributions extends RedirectSpecialPage {
1125 function __construct() {
1126 parent::__construct( 'Mycontributions' );
1127 $this->mAllowedRedirectParams = array( 'limit', 'namespace', 'tagfilter',
1128 'offset', 'dir', 'year', 'month', 'feed' );
1131 function getRedirect( $subpage ) {
1132 return SpecialPage::getTitleFor( 'Contributions', $this->getUser()->getName() );
1137 * Redirect to Special:Listfiles?user=$wgUser
1139 class SpecialMyuploads extends RedirectSpecialPage {
1140 function __construct() {
1141 parent::__construct( 'Myuploads' );
1142 $this->mAllowedRedirectParams = array( 'limit' );
1145 function getRedirect( $subpage ) {
1146 return SpecialPage::getTitleFor( 'Listfiles', $this->getUser()->getName() );
1151 * Redirect from Special:PermanentLink/### to index.php?oldid=###
1153 class SpecialPermanentLink extends RedirectSpecialPage {
1154 function __construct() {
1155 parent::__construct( 'PermanentLink' );
1156 $this->mAllowedRedirectParams = array();
1159 function getRedirect( $subpage ) {
1160 $subpage = intval( $subpage );
1161 if ( $subpage === 0 ) {
1162 # throw an error page when no subpage was given
1163 throw new ErrorPageError( 'nopagetitle', 'nopagetext' );
1165 $this->mAddedRedirectParams['oldid'] = $subpage;
1166 return true;