3 * Parent class for all special pages.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
21 * @ingroup SpecialPage
25 * Parent class for all special pages.
27 * Includes some static functions for handling the special page list deprecated
28 * in favor of SpecialPageFactory.
30 * @todo Turn this into a real ContextSource
31 * @ingroup SpecialPage
34 // The canonical name of this special page
35 // Also used for the default <h1> heading, @see getDescription()
38 // The local name of this special page
41 // Minimum user level required to access this page, or "" for anyone.
42 // Also used to categorise the pages in Special:Specialpages
43 private $mRestriction;
45 // Listed in Special:Specialpages?
48 // Function name called by the default execute()
51 // File which needs to be included before the function above can be called
54 // Whether or not this special page is being included from an article
55 protected $mIncluding;
57 // Whether the special page can be included in an article
58 protected $mIncludable;
61 * Current request context
67 * Get a localised Title object for a specified special page name
70 * @param string|bool $subpage Subpage string, or false to not use a subpage
71 * @param string $fragment The link fragment (after the "#")
75 public static function getTitleFor( $name, $subpage = false, $fragment = '' ) {
76 $name = SpecialPageFactory
::getLocalNameFor( $name, $subpage );
77 return Title
::makeTitle( NS_SPECIAL
, $name, $fragment );
81 * Get a localised Title object for a page name with a possibly unvalidated subpage
84 * @param string|bool $subpage Subpage string, or false to not use a subpage
85 * @return Title|null Title object or null if the page doesn't exist
87 public static function getSafeTitleFor( $name, $subpage = false ) {
88 $name = SpecialPageFactory
::getLocalNameFor( $name, $subpage );
90 return Title
::makeTitleSafe( NS_SPECIAL
, $name );
97 * Default constructor for special pages
98 * Derivative classes should call this from their constructor
99 * Note that if the user does not have the required level, an error message will
100 * be displayed by the default execute() method, without the global function ever
103 * If you override execute(), you can recover the default behavior with userCanExecute()
104 * and displayRestrictionError()
106 * @param string $name Name of the special page, as seen in links and URLs
107 * @param string $restriction User right required, e.g. "block" or "delete"
108 * @param bool $listed Whether the page is listed in Special:Specialpages
109 * @param callable|bool $function Function called by execute(). By default
110 * it is constructed from $name
111 * @param string $file File which is included by execute(). It is also
112 * constructed from $name by default
113 * @param bool $includable Whether the page can be included in normal pages
115 public function __construct(
116 $name = '', $restriction = '', $listed = true,
117 $function = false, $file = 'default', $includable = false
119 $this->mName
= $name;
120 $this->mRestriction
= $restriction;
121 $this->mListed
= $listed;
122 $this->mIncludable
= $includable;
124 $this->mFunction
= 'wfSpecial' . $name;
126 $this->mFunction
= $function;
128 if ( $file === 'default' ) {
129 $this->mFile
= __DIR__
. "/specials/Special$name.php";
131 $this->mFile
= $file;
136 * Get the name of this Special Page.
144 * Get the permission that a user must have to execute this page
147 function getRestriction() {
148 return $this->mRestriction
;
152 * Get the file which will be included by SpecialPage::execute() if your extension is
153 * still stuck in the past and hasn't overridden the execute() method. No modern code
154 * should want or need to know this.
156 * @deprecated since 1.18
159 wfDeprecated( __METHOD__
, '1.18' );
163 // @todo FIXME: Decide which syntax to use for this, and stick to it
165 * Whether this special page is listed in Special:SpecialPages
166 * @since r3583 (v1.3)
169 function isListed() {
170 return $this->mListed
;
173 * Set whether this page is listed in Special:Specialpages, at run-time
175 * @param bool $listed
178 function setListed( $listed ) {
179 return wfSetVar( $this->mListed
, $listed );
182 * Get or set whether this special page is listed in Special:SpecialPages
187 function listed( $x = null ) {
188 return wfSetVar( $this->mListed
, $x );
192 * Whether it's allowed to transclude the special page via {{Special:Foo/params}}
195 public function isIncludable() {
196 return $this->mIncludable
;
200 * Whether the special page is being evaluated via transclusion
204 function including( $x = null ) {
205 return wfSetVar( $this->mIncluding
, $x );
209 * Get the localised name of the special page
212 function getLocalName() {
213 if ( !isset( $this->mLocalName
) ) {
214 $this->mLocalName
= SpecialPageFactory
::getLocalNameFor( $this->mName
);
216 return $this->mLocalName
;
220 * Is this page expensive (for some definition of expensive)?
221 * Expensive pages are disabled or cached in miser mode. Originally used
222 * (and still overridden) by QueryPage and subclasses, moved here so that
223 * Special:SpecialPages can safely call it for all special pages.
227 public function isExpensive() {
232 * Is this page cached?
233 * Expensive pages are cached or disabled in miser mode.
234 * Used by QueryPage and subclasses, moved here so that
235 * Special:SpecialPages can safely call it for all special pages.
240 public function isCached() {
245 * Can be overridden by subclasses with more complicated permissions
248 * @return bool Should the page be displayed with the restricted-access
251 public function isRestricted() {
252 // DWIM: If anons can do something, then it is not restricted
253 return $this->mRestriction
!= '' && !User
::groupHasPermission( '*', $this->mRestriction
);
257 * Checks if the given user (identified by an object) can execute this
258 * special page (as defined by $mRestriction). Can be overridden by sub-
259 * classes with more complicated permissions schemes.
261 * @param User $user The user to check
262 * @return bool Does the user have permission to view the page?
264 public function userCanExecute( User
$user ) {
265 return $user->isAllowed( $this->mRestriction
);
269 * Output an error message telling the user what access level they have to have
270 * @throws PermissionsError
272 function displayRestrictionError() {
273 throw new PermissionsError( $this->mRestriction
);
277 * Checks if userCanExecute, and if not throws a PermissionsError
281 * @throws PermissionsError
283 public function checkPermissions() {
284 if ( !$this->userCanExecute( $this->getUser() ) ) {
285 $this->displayRestrictionError();
290 * If the wiki is currently in readonly mode, throws a ReadOnlyError
294 * @throws ReadOnlyError
296 public function checkReadOnly() {
297 if ( wfReadOnly() ) {
298 throw new ReadOnlyError
;
303 * If the user is not logged in, throws UserNotLoggedIn error.
305 * Default error message includes a link to Special:Userlogin with properly set 'returnto' query
309 * @param string|Message $reasonMsg [optional] Passed on to UserNotLoggedIn constructor. Strings
310 * will be used as message keys. If a string is given, the message will also receive a
311 * formatted login link (generated using the 'loginreqlink' message) as first parameter. If a
312 * Message is given, it will be passed on verbatim.
313 * @param string|Message $titleMsg [optional] Passed on to UserNotLoggedIn constructor. Strings
314 * will be used as message keys.
315 * @throws UserNotLoggedIn
317 public function requireLogin( $reasonMsg = null, $titleMsg = null ) {
318 if ( $this->getUser()->isAnon() ) {
319 // Use default messages if not given or explicit null passed
321 $reasonMsg = 'exception-nologin-text-manual';
324 $titleMsg = 'exception-nologin';
327 // Convert to Messages with current context
328 if ( is_string( $reasonMsg ) ) {
329 $loginreqlink = Linker
::linkKnown(
330 SpecialPage
::getTitleFor( 'Userlogin' ),
331 $this->msg( 'loginreqlink' )->escaped(),
333 array( 'returnto' => $this->getPageTitle()->getPrefixedText() )
335 $reasonMsg = $this->msg( $reasonMsg )->rawParams( $loginreqlink );
337 if ( is_string( $titleMsg ) ) {
338 $titleMsg = $this->msg( $titleMsg );
341 throw new UserNotLoggedIn( $reasonMsg, $titleMsg );
346 * Sets headers - this should be called from the execute() method of all derived classes!
348 function setHeaders() {
349 $out = $this->getOutput();
350 $out->setArticleRelated( false );
351 $out->setRobotPolicy( "noindex,nofollow" );
352 $out->setPageTitle( $this->getDescription() );
360 * @param string|null $subPage
362 final public function run( $subPage ) {
364 * Gets called before @see SpecialPage::execute.
368 * @param SpecialPage $this
369 * @param string|null $subPage
371 wfRunHooks( 'SpecialPageBeforeExecute', array( $this, $subPage ) );
373 $this->beforeExecute( $subPage );
374 $this->execute( $subPage );
375 $this->afterExecute( $subPage );
378 * Gets called after @see SpecialPage::execute.
382 * @param SpecialPage $this
383 * @param string|null $subPage
385 wfRunHooks( 'SpecialPageAfterExecute', array( $this, $subPage ) );
389 * Gets called before @see SpecialPage::execute.
393 * @param string|null $subPage
395 protected function beforeExecute( $subPage ) {
400 * Gets called after @see SpecialPage::execute.
404 * @param string|null $subPage
406 protected function afterExecute( $subPage ) {
411 * Default execute method
412 * Checks user permissions, calls the function given in mFunction
414 * This must be overridden by subclasses; it will be made abstract in a future version
416 * @param string|null $subPage
418 public function execute( $subPage ) {
420 $this->checkPermissions();
422 $func = $this->mFunction
;
423 // only load file if the function does not exist
424 if ( !is_callable( $func ) && $this->mFile
) {
425 require_once $this->mFile
;
427 $this->outputHeader();
428 call_user_func( $func, $subPage, $this );
432 * Outputs a summary message on top of special pages
433 * Per default the message key is the canonical name of the special page
434 * May be overridden, i.e. by extensions to stick with the naming conventions
435 * for message keys: 'extensionname-xxx'
437 * @param string $summaryMessageKey Message key of the summary
439 function outputHeader( $summaryMessageKey = '' ) {
442 if ( $summaryMessageKey == '' ) {
443 $msg = $wgContLang->lc( $this->getName() ) . '-summary';
445 $msg = $summaryMessageKey;
447 if ( !$this->msg( $msg )->isDisabled() && !$this->including() ) {
448 $this->getOutput()->wrapWikiMsg(
449 "<div class='mw-specialpage-summary'>\n$1\n</div>", $msg );
455 * Returns the name that goes in the \<h1\> in the special page itself, and
456 * also the name that will be listed in Special:Specialpages
458 * Derived classes can override this, but usually it is easier to keep the
463 function getDescription() {
464 return $this->msg( strtolower( $this->mName
) )->text();
468 * Get a self-referential title object
470 * @param string|bool $subpage
472 * @deprecated in 1.23, use SpecialPage::getPageTitle
474 function getTitle( $subpage = false ) {
475 wfDeprecated( __METHOD__
, '1.23' );
476 return $this->getPageTitle( $subpage );
480 * Get a self-referential title object
482 * @param string|bool $subpage
486 function getPageTitle( $subpage = false ) {
487 return self
::getTitleFor( $this->mName
, $subpage );
491 * Sets the context this SpecialPage is executed in
493 * @param IContextSource $context
496 public function setContext( $context ) {
497 $this->mContext
= $context;
501 * Gets the context this SpecialPage is executed in
503 * @return IContextSource|RequestContext
506 public function getContext() {
507 if ( $this->mContext
instanceof IContextSource
) {
508 return $this->mContext
;
510 wfDebug( __METHOD__
. " called and \$mContext is null. " .
511 "Return RequestContext::getMain(); for sanity\n" );
512 return RequestContext
::getMain();
517 * Get the WebRequest being used for this instance
522 public function getRequest() {
523 return $this->getContext()->getRequest();
527 * Get the OutputPage being used for this instance
532 public function getOutput() {
533 return $this->getContext()->getOutput();
537 * Shortcut to get the User executing this instance
542 public function getUser() {
543 return $this->getContext()->getUser();
547 * Shortcut to get the skin being used for this instance
552 public function getSkin() {
553 return $this->getContext()->getSkin();
557 * Shortcut to get user's language
559 * @deprecated since 1.19 Use getLanguage instead
563 public function getLang() {
564 wfDeprecated( __METHOD__
, '1.19' );
565 return $this->getLanguage();
569 * Shortcut to get user's language
574 public function getLanguage() {
575 return $this->getContext()->getLanguage();
579 * Return the full title, including $par
584 public function getFullTitle() {
585 return $this->getContext()->getTitle();
589 * Wrapper around wfMessage that sets the current context.
594 public function msg( /* $args */ ) {
595 $message = call_user_func_array(
596 array( $this->getContext(), 'msg' ),
599 // RequestContext passes context to wfMessage, and the language is set from
600 // the context, but setting the language for Message class removes the
601 // interface message status, which breaks for example usernameless gender
602 // invocations. Restore the flag when not including special page in content.
603 if ( $this->including() ) {
604 $message->setInterfaceMessageFlag( false );
610 * Adds RSS/atom links
612 * @param array $params
614 protected function addFeedLinks( $params ) {
615 global $wgFeedClasses;
617 $feedTemplate = wfScript( 'api' );
619 foreach ( $wgFeedClasses as $format => $class ) {
620 $theseParams = $params +
array( 'feedformat' => $format );
621 $url = wfAppendQuery( $feedTemplate, $theseParams );
622 $this->getOutput()->addFeedLink( $format, $url );
627 * Get the group that the special page belongs in on Special:SpecialPage
628 * Use this method, instead of getGroupName to allow customization
629 * of the group name from the wiki side
631 * @return string Group of this special page
634 public function getFinalGroupName() {
635 global $wgSpecialPageGroups;
636 $name = $this->getName();
638 // Allow overbidding the group from the wiki side
639 $msg = $this->msg( 'specialpages-specialpagegroup-' . strtolower( $name ) )->inContentLanguage();
640 if ( !$msg->isBlank() ) {
641 $group = $msg->text();
643 // Than use the group from this object
644 $group = $this->getGroupName();
646 // Group '-' is used as default to have the chance to determine,
647 // if the special pages overrides this method,
648 // if not overridden, $wgSpecialPageGroups is checked for b/c
649 if ( $group === '-' && isset( $wgSpecialPageGroups[$name] ) ) {
650 $group = $wgSpecialPageGroups[$name];
654 // never give '-' back, change to 'other'
655 if ( $group === '-' ) {
663 * Under which header this special page is listed in Special:SpecialPages
664 * See messages 'specialpages-group-*' for valid names
665 * This method defaults to group 'other'
670 protected function getGroupName() {
671 // '-' used here to determine, if this group is overridden or has a hardcoded 'other'
672 // Needed for b/c in getFinalGroupName