2004-05-15 03:36:39 +00:00
|
|
|
<?php
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
2006-06-25 08:38:17 +00:00
|
|
|
* SpecialPage: handling special pages and lists thereof.
|
2004-09-02 23:28:24 +00:00
|
|
|
*
|
2008-04-14 07:45:50 +00:00
|
|
|
* To add a special page in an extension, add to $wgSpecialPages either
|
|
|
|
|
* an object instance or an array containing the name and constructor
|
|
|
|
|
* parameters. The latter is preferred for performance reasons.
|
2006-06-25 08:38:17 +00:00
|
|
|
*
|
2008-04-14 07:45:50 +00:00
|
|
|
* The object instantiated must be either an instance of SpecialPage or a
|
|
|
|
|
* sub-class thereof. It must have an execute() method, which sends the HTML
|
|
|
|
|
* for the special page to $wgOut. The parent class has an execute() method
|
|
|
|
|
* which distributes the call to the historical global functions. Additionally,
|
|
|
|
|
* execute() also checks if the user has the necessary access privileges
|
2006-06-25 08:38:17 +00:00
|
|
|
* and bails out if not.
|
|
|
|
|
*
|
2008-04-14 07:45:50 +00:00
|
|
|
* To add a core special page, use the similar static list in
|
2006-06-25 08:38:17 +00:00
|
|
|
* SpecialPage::$mList. To remove a core static special page at runtime, use
|
|
|
|
|
* a SpecialPage_initList hook.
|
2004-09-03 23:00:01 +00:00
|
|
|
*
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @file
|
|
|
|
|
* @ingroup SpecialPage
|
|
|
|
|
* @defgroup SpecialPage SpecialPage
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
2004-08-12 14:55:35 +00:00
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
|
|
|
|
* Parent special page class, also static functions for handling the special
|
2007-04-20 08:55:14 +00:00
|
|
|
* page list.
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @ingroup SpecialPage
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
2011-11-23 09:53:37 +00:00
|
|
|
class SpecialPage {
|
2011-04-18 21:25:06 +00:00
|
|
|
|
|
|
|
|
// The canonical name of this special page
|
|
|
|
|
// Also used for the default <h1> heading, @see getDescription()
|
2011-07-28 06:13:13 +00:00
|
|
|
protected $mName;
|
2011-04-18 21:25:06 +00:00
|
|
|
|
|
|
|
|
// The local name of this special page
|
|
|
|
|
private $mLocalName;
|
|
|
|
|
|
|
|
|
|
// Minimum user level required to access this page, or "" for anyone.
|
|
|
|
|
// Also used to categorise the pages in Special:Specialpages
|
|
|
|
|
private $mRestriction;
|
|
|
|
|
|
|
|
|
|
// Listed in Special:Specialpages?
|
|
|
|
|
private $mListed;
|
|
|
|
|
|
|
|
|
|
// Function name called by the default execute()
|
|
|
|
|
private $mFunction;
|
|
|
|
|
|
|
|
|
|
// File which needs to be included before the function above can be called
|
|
|
|
|
private $mFile;
|
|
|
|
|
|
|
|
|
|
// Whether or not this special page is being included from an article
|
|
|
|
|
protected $mIncluding;
|
|
|
|
|
|
|
|
|
|
// Whether the special page can be included in an article
|
|
|
|
|
protected $mIncludable;
|
|
|
|
|
|
2011-02-10 16:14:56 +00:00
|
|
|
/**
|
2011-04-03 10:41:14 +00:00
|
|
|
* Current request context
|
2011-09-15 15:19:49 +00:00
|
|
|
* @var IContextSource
|
2011-02-10 16:14:56 +00:00
|
|
|
*/
|
2011-04-03 10:41:14 +00:00
|
|
|
protected $mContext;
|
2005-05-28 11:09:22 +00:00
|
|
|
|
2006-06-25 08:38:17 +00:00
|
|
|
/**
|
|
|
|
|
* Initialise the special page list
|
|
|
|
|
* This must be called before accessing SpecialPage::$mList
|
2011-04-17 11:31:11 +00:00
|
|
|
* @deprecated since 1.18
|
2006-06-25 08:38:17 +00:00
|
|
|
*/
|
|
|
|
|
static function initList() {
|
2011-12-13 19:51:03 +00:00
|
|
|
wfDeprecated( __METHOD__, '1.18' );
|
2011-04-17 11:31:11 +00:00
|
|
|
// Noop
|
2006-06-25 08:38:17 +00:00
|
|
|
}
|
2005-07-23 05:47:25 +00:00
|
|
|
|
2011-04-17 11:31:11 +00:00
|
|
|
/**
|
|
|
|
|
* @deprecated since 1.18
|
|
|
|
|
*/
|
2006-10-30 06:25:31 +00:00
|
|
|
static function initAliasList() {
|
2011-12-13 19:51:03 +00:00
|
|
|
wfDeprecated( __METHOD__, '1.18' );
|
2011-04-17 11:31:11 +00:00
|
|
|
// Noop
|
2006-10-30 06:25:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Given a special page alias, return the special page name.
|
|
|
|
|
* Returns false if there is no such alias.
|
2010-02-25 22:03:36 +00:00
|
|
|
*
|
|
|
|
|
* @param $alias String
|
|
|
|
|
* @return String or false
|
2011-04-17 11:31:11 +00:00
|
|
|
* @deprecated since 1.18 call SpecialPageFactory method directly
|
2006-10-30 06:25:31 +00:00
|
|
|
*/
|
|
|
|
|
static function resolveAlias( $alias ) {
|
2011-12-13 19:51:03 +00:00
|
|
|
wfDeprecated( __METHOD__, '1.18' );
|
2011-04-17 11:31:11 +00:00
|
|
|
list( $name, /*...*/ ) = SpecialPageFactory::resolveAlias( $alias );
|
|
|
|
|
return $name;
|
2006-10-30 06:25:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2008-04-14 07:45:50 +00:00
|
|
|
* Given a special page name with a possible subpage, return an array
|
2006-10-30 06:25:31 +00:00
|
|
|
* where the first element is the special page name and the second is the
|
|
|
|
|
* subpage.
|
2010-02-25 22:03:36 +00:00
|
|
|
*
|
|
|
|
|
* @param $alias String
|
|
|
|
|
* @return Array
|
2011-04-17 11:31:11 +00:00
|
|
|
* @deprecated since 1.18 call SpecialPageFactory method directly
|
2006-10-30 06:25:31 +00:00
|
|
|
*/
|
|
|
|
|
static function resolveAliasWithSubpage( $alias ) {
|
2011-04-17 11:31:11 +00:00
|
|
|
return SpecialPageFactory::resolveAlias( $alias );
|
2006-10-30 06:25:31 +00:00
|
|
|
}
|
|
|
|
|
|
2004-09-19 19:37:26 +00:00
|
|
|
/**
|
2008-04-14 07:45:50 +00:00
|
|
|
* Add a page to the list of valid special pages. This used to be the preferred
|
|
|
|
|
* method for adding special pages in extensions. It's now suggested that you add
|
2006-06-25 08:38:17 +00:00
|
|
|
* an associative record to $wgSpecialPages. This avoids autoloading SpecialPage.
|
|
|
|
|
*
|
2010-02-25 22:03:36 +00:00
|
|
|
* @param $page SpecialPage
|
2011-05-17 08:46:29 +00:00
|
|
|
* @deprecated since 1.7, warnings in 1.17, might be removed in 1.20
|
2004-09-19 19:37:26 +00:00
|
|
|
*/
|
2006-06-25 08:38:17 +00:00
|
|
|
static function addPage( &$page ) {
|
2011-12-13 19:51:03 +00:00
|
|
|
wfDeprecated( __METHOD__, '1.7' );
|
2011-04-17 11:31:11 +00:00
|
|
|
SpecialPageFactory::getList()->{$page->mName} = $page;
|
2004-05-15 03:36:39 +00:00
|
|
|
}
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2008-04-12 21:42:19 +00:00
|
|
|
/**
|
|
|
|
|
* Add a page to a certain display group for Special:SpecialPages
|
|
|
|
|
*
|
2010-02-25 22:03:36 +00:00
|
|
|
* @param $page Mixed: SpecialPage or string
|
|
|
|
|
* @param $group String
|
2011-06-26 23:25:50 +00:00
|
|
|
* @return null
|
2011-04-17 11:31:11 +00:00
|
|
|
* @deprecated since 1.18 call SpecialPageFactory method directly
|
2008-04-12 21:42:19 +00:00
|
|
|
*/
|
2008-04-14 16:04:20 +00:00
|
|
|
static function setGroup( $page, $group ) {
|
2011-12-13 19:51:03 +00:00
|
|
|
wfDeprecated( __METHOD__, '1.18' );
|
2011-04-17 11:31:11 +00:00
|
|
|
return SpecialPageFactory::setGroup( $page, $group );
|
2008-04-12 21:42:19 +00:00
|
|
|
}
|
2008-04-14 07:45:50 +00:00
|
|
|
|
2008-04-12 21:42:19 +00:00
|
|
|
/**
|
2011-06-26 23:25:50 +00:00
|
|
|
* Get the group that the special page belongs in on Special:SpecialPage
|
2008-04-12 21:42:19 +00:00
|
|
|
*
|
2010-02-25 22:03:36 +00:00
|
|
|
* @param $page SpecialPage
|
2011-06-26 23:25:50 +00:00
|
|
|
* @return null
|
2011-04-17 11:31:11 +00:00
|
|
|
* @deprecated since 1.18 call SpecialPageFactory method directly
|
2008-04-12 21:42:19 +00:00
|
|
|
*/
|
|
|
|
|
static function getGroup( &$page ) {
|
2011-12-13 19:51:03 +00:00
|
|
|
wfDeprecated( __METHOD__, '1.18' );
|
2011-04-17 11:31:11 +00:00
|
|
|
return SpecialPageFactory::getGroup( $page );
|
2008-04-12 21:42:19 +00:00
|
|
|
}
|
2004-05-15 03:36:39 +00:00
|
|
|
|
2004-09-19 19:37:26 +00:00
|
|
|
/**
|
|
|
|
|
* Remove a special page from the list
|
2008-04-14 07:45:50 +00:00
|
|
|
* Formerly used to disable expensive or dangerous special pages. The
|
2006-06-25 08:38:17 +00:00
|
|
|
* preferred method is now to add a SpecialPage_initList hook.
|
2011-04-17 11:31:11 +00:00
|
|
|
* @deprecated since 1.18
|
2011-06-26 23:25:50 +00:00
|
|
|
*
|
|
|
|
|
* @param $name String the page to remove
|
2004-09-19 19:37:26 +00:00
|
|
|
*/
|
2006-05-30 12:38:07 +00:00
|
|
|
static function removePage( $name ) {
|
2011-12-13 19:51:03 +00:00
|
|
|
wfDeprecated( __METHOD__, '1.18' );
|
2011-04-17 11:31:11 +00:00
|
|
|
unset( SpecialPageFactory::getList()->$name );
|
2004-05-15 03:36:39 +00:00
|
|
|
}
|
|
|
|
|
|
2007-05-26 16:23:34 +00:00
|
|
|
/**
|
|
|
|
|
* Check if a given name exist as a special page or as a special page alias
|
2010-02-25 22:03:36 +00:00
|
|
|
*
|
|
|
|
|
* @param $name String: name of a special page
|
|
|
|
|
* @return Boolean: true if a special page exists with this name
|
2011-04-17 11:31:11 +00:00
|
|
|
* @deprecated since 1.18 call SpecialPageFactory method directly
|
2007-05-26 16:23:34 +00:00
|
|
|
*/
|
|
|
|
|
static function exists( $name ) {
|
2011-12-13 19:51:03 +00:00
|
|
|
wfDeprecated( __METHOD__, '1.18' );
|
2011-04-17 11:31:11 +00:00
|
|
|
return SpecialPageFactory::exists( $name );
|
2007-05-26 16:23:34 +00:00
|
|
|
}
|
|
|
|
|
|
2004-09-19 19:37:26 +00:00
|
|
|
/**
|
|
|
|
|
* Find the object with a given name and return it (or NULL)
|
2010-02-25 22:03:36 +00:00
|
|
|
*
|
|
|
|
|
* @param $name String
|
|
|
|
|
* @return SpecialPage object or null if the page doesn't exist
|
2011-04-17 11:31:11 +00:00
|
|
|
* @deprecated since 1.18 call SpecialPageFactory method directly
|
2004-09-19 19:37:26 +00:00
|
|
|
*/
|
2006-05-30 12:38:07 +00:00
|
|
|
static function getPage( $name ) {
|
2011-12-14 11:49:09 +00:00
|
|
|
wfDeprecated( __METHOD__, '1.18' );
|
2011-04-17 11:31:11 +00:00
|
|
|
return SpecialPageFactory::getPage( $name );
|
2004-05-15 03:36:39 +00:00
|
|
|
}
|
2005-07-23 05:47:25 +00:00
|
|
|
|
2005-05-11 03:21:25 +00:00
|
|
|
/**
|
2006-10-30 06:25:31 +00:00
|
|
|
* Get a special page with a given localised name, or NULL if there
|
|
|
|
|
* is no such special page.
|
2010-02-25 22:03:36 +00:00
|
|
|
*
|
2011-06-26 23:25:50 +00:00
|
|
|
* @param $alias String
|
2010-02-25 22:03:36 +00:00
|
|
|
* @return SpecialPage object or null if the page doesn't exist
|
2011-04-17 11:31:11 +00:00
|
|
|
* @deprecated since 1.18 call SpecialPageFactory method directly
|
2005-05-11 03:21:25 +00:00
|
|
|
*/
|
2006-10-30 06:25:31 +00:00
|
|
|
static function getPageByAlias( $alias ) {
|
2011-12-13 19:51:03 +00:00
|
|
|
wfDeprecated( __METHOD__, '1.18' );
|
2011-04-17 11:31:11 +00:00
|
|
|
return SpecialPageFactory::getPage( $alias );
|
2006-10-30 06:25:31 +00:00
|
|
|
}
|
2006-04-30 02:27:43 +00:00
|
|
|
|
2008-06-01 04:27:47 +00:00
|
|
|
/**
|
|
|
|
|
* Return categorised listable special pages which are available
|
|
|
|
|
* for the current user, and everyone.
|
2010-02-25 22:03:36 +00:00
|
|
|
*
|
2011-10-17 14:33:04 +00:00
|
|
|
* @param $user User object to check permissions, $wgUser will be used
|
|
|
|
|
* if not provided
|
2012-02-09 18:01:10 +00:00
|
|
|
* @return array Associative array mapping page's name to its SpecialPage object
|
2011-04-17 11:31:11 +00:00
|
|
|
* @deprecated since 1.18 call SpecialPageFactory method directly
|
2008-06-01 04:27:47 +00:00
|
|
|
*/
|
2011-10-17 14:33:04 +00:00
|
|
|
static function getUsablePages( User $user = null ) {
|
2011-12-13 19:51:03 +00:00
|
|
|
wfDeprecated( __METHOD__, '1.18' );
|
2011-10-17 14:33:04 +00:00
|
|
|
return SpecialPageFactory::getUsablePages( $user );
|
2008-06-01 04:27:47 +00:00
|
|
|
}
|
|
|
|
|
|
2004-09-19 19:37:26 +00:00
|
|
|
/**
|
2006-08-23 13:24:16 +00:00
|
|
|
* Return categorised listable special pages for all users
|
2010-02-25 22:03:36 +00:00
|
|
|
*
|
2012-02-09 18:01:10 +00:00
|
|
|
* @return array Associative array mapping page's name to its SpecialPage object
|
2011-04-17 11:31:11 +00:00
|
|
|
* @deprecated since 1.18 call SpecialPageFactory method directly
|
2004-09-19 19:37:26 +00:00
|
|
|
*/
|
2006-08-23 13:24:16 +00:00
|
|
|
static function getRegularPages() {
|
2011-12-13 19:51:03 +00:00
|
|
|
wfDeprecated( __METHOD__, '1.18' );
|
2011-04-17 11:31:11 +00:00
|
|
|
return SpecialPageFactory::getRegularPages();
|
2006-08-23 13:24:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Return categorised listable special pages which are available
|
|
|
|
|
* for the current user, but not for everyone
|
2010-02-25 22:03:36 +00:00
|
|
|
*
|
2012-02-09 18:01:10 +00:00
|
|
|
* @return array Associative array mapping page's name to its SpecialPage object
|
2011-04-17 11:31:11 +00:00
|
|
|
* @deprecated since 1.18 call SpecialPageFactory method directly
|
2006-08-23 13:24:16 +00:00
|
|
|
*/
|
|
|
|
|
static function getRestrictedPages() {
|
2011-12-13 19:51:03 +00:00
|
|
|
wfDeprecated( __METHOD__, '1.18' );
|
2011-04-17 11:31:11 +00:00
|
|
|
return SpecialPageFactory::getRestrictedPages();
|
2004-05-20 14:13:03 +00:00
|
|
|
}
|
|
|
|
|
|
2004-09-19 19:37:26 +00:00
|
|
|
/**
|
|
|
|
|
* Execute a special page path.
|
2011-01-11 13:46:31 +00:00
|
|
|
* The path may contain parameters, e.g. Special:Name/Params
|
2004-09-19 19:37:26 +00:00
|
|
|
* Extracts the special page name and call the execute method, passing the parameters
|
|
|
|
|
*
|
2005-07-23 05:47:25 +00:00
|
|
|
* Returns a title object if the page is redirected, false if there was no such special
|
2005-05-28 11:09:22 +00:00
|
|
|
* page, and true if it was successful.
|
|
|
|
|
*
|
2011-04-03 21:32:50 +00:00
|
|
|
* @param $title Title object
|
2011-09-15 15:19:49 +00:00
|
|
|
* @param $context IContextSource
|
2011-04-03 21:32:50 +00:00
|
|
|
* @param $including Bool output is being captured for use in {{special:whatever}}
|
2011-06-26 23:25:50 +00:00
|
|
|
* @return Bool
|
2011-04-17 11:31:11 +00:00
|
|
|
* @deprecated since 1.18 call SpecialPageFactory method directly
|
2004-09-19 19:37:26 +00:00
|
|
|
*/
|
2011-09-15 15:19:49 +00:00
|
|
|
public static function executePath( &$title, IContextSource &$context, $including = false ) {
|
2011-12-13 19:51:03 +00:00
|
|
|
wfDeprecated( __METHOD__, '1.18' );
|
2011-04-17 11:31:11 +00:00
|
|
|
return SpecialPageFactory::executePath( $title, $context, $including );
|
2005-05-28 11:09:22 +00:00
|
|
|
}
|
|
|
|
|
|
2006-10-30 06:25:31 +00:00
|
|
|
/**
|
|
|
|
|
* Get the local name for a specified canonical name
|
2007-11-23 17:49:08 +00:00
|
|
|
*
|
2010-02-25 22:03:36 +00:00
|
|
|
* @param $name String
|
|
|
|
|
* @param $subpage Mixed: boolean false, or string
|
2007-11-23 17:49:08 +00:00
|
|
|
*
|
2010-02-25 22:03:36 +00:00
|
|
|
* @return String
|
2011-04-17 11:31:11 +00:00
|
|
|
* @deprecated since 1.18 call SpecialPageFactory method directly
|
2006-10-30 06:25:31 +00:00
|
|
|
*/
|
|
|
|
|
static function getLocalNameFor( $name, $subpage = false ) {
|
2011-12-13 19:51:03 +00:00
|
|
|
wfDeprecated( __METHOD__, '1.18' );
|
2011-04-17 11:31:11 +00:00
|
|
|
return SpecialPageFactory::getLocalNameFor( $name, $subpage );
|
2006-10-30 06:25:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get a localised Title object for a specified special page name
|
2010-02-25 22:03:36 +00:00
|
|
|
*
|
2011-06-26 23:25:50 +00:00
|
|
|
* @param $name String
|
|
|
|
|
* @param $subpage String|Bool subpage string, or false to not use a subpage
|
2010-02-25 22:03:36 +00:00
|
|
|
* @return Title object
|
2006-10-30 06:25:31 +00:00
|
|
|
*/
|
2011-04-17 11:31:11 +00:00
|
|
|
public static function getTitleFor( $name, $subpage = false ) {
|
|
|
|
|
$name = SpecialPageFactory::getLocalNameFor( $name, $subpage );
|
2006-10-31 13:25:47 +00:00
|
|
|
if ( $name ) {
|
|
|
|
|
return Title::makeTitle( NS_SPECIAL, $name );
|
|
|
|
|
} else {
|
|
|
|
|
throw new MWException( "Invalid special page name \"$name\"" );
|
|
|
|
|
}
|
2006-10-30 06:25:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get a localised Title object for a page name with a possibly unvalidated subpage
|
2010-02-25 22:03:36 +00:00
|
|
|
*
|
2011-06-26 23:25:50 +00:00
|
|
|
* @param $name String
|
|
|
|
|
* @param $subpage String|Bool subpage string, or false to not use a subpage
|
2010-02-25 22:03:36 +00:00
|
|
|
* @return Title object or null if the page doesn't exist
|
2006-10-30 06:25:31 +00:00
|
|
|
*/
|
2011-04-17 11:31:11 +00:00
|
|
|
public static function getSafeTitleFor( $name, $subpage = false ) {
|
|
|
|
|
$name = SpecialPageFactory::getLocalNameFor( $name, $subpage );
|
2006-10-31 13:25:47 +00:00
|
|
|
if ( $name ) {
|
|
|
|
|
return Title::makeTitleSafe( NS_SPECIAL, $name );
|
|
|
|
|
} else {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2006-10-30 06:25:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get a title for a given alias
|
2010-02-25 22:03:36 +00:00
|
|
|
*
|
2011-06-26 23:25:50 +00:00
|
|
|
* @param $alias String
|
2006-10-31 13:25:47 +00:00
|
|
|
* @return Title or null if there is no such alias
|
2011-04-17 11:31:11 +00:00
|
|
|
* @deprecated since 1.18 call SpecialPageFactory method directly
|
2006-10-30 06:25:31 +00:00
|
|
|
*/
|
|
|
|
|
static function getTitleForAlias( $alias ) {
|
2011-12-13 19:51:03 +00:00
|
|
|
wfDeprecated( __METHOD__, '1.18' );
|
2011-04-17 11:31:11 +00:00
|
|
|
return SpecialPageFactory::getTitleForAlias( $alias );
|
2006-10-30 06:25:31 +00:00
|
|
|
}
|
|
|
|
|
|
2004-09-19 19:37:26 +00:00
|
|
|
/**
|
|
|
|
|
* Default constructor for special pages
|
|
|
|
|
* Derivative classes should call this from their constructor
|
|
|
|
|
* Note that if the user does not have the required level, an error message will
|
|
|
|
|
* be displayed by the default execute() method, without the global function ever
|
|
|
|
|
* being called.
|
|
|
|
|
*
|
|
|
|
|
* If you override execute(), you can recover the default behaviour with userCanExecute()
|
|
|
|
|
* and displayRestrictionError()
|
|
|
|
|
*
|
2010-02-25 22:03:36 +00:00
|
|
|
* @param $name String: name of the special page, as seen in links and URLs
|
|
|
|
|
* @param $restriction String: user right required, e.g. "block" or "delete"
|
2011-06-26 23:25:50 +00:00
|
|
|
* @param $listed Bool: whether the page is listed in Special:Specialpages
|
|
|
|
|
* @param $function Callback|Bool: function called by execute(). By default it is constructed from $name
|
2010-02-25 22:03:36 +00:00
|
|
|
* @param $file String: file which is included by execute(). It is also constructed from $name by default
|
2011-06-26 23:25:50 +00:00
|
|
|
* @param $includable Bool: whether the page can be included in normal pages
|
2004-09-19 19:37:26 +00:00
|
|
|
*/
|
2011-06-27 20:36:59 +00:00
|
|
|
public function __construct(
|
|
|
|
|
$name = '', $restriction = '', $listed = true,
|
|
|
|
|
$function = false, $file = 'default', $includable = false
|
|
|
|
|
) {
|
2010-12-10 15:15:16 +00:00
|
|
|
$this->init( $name, $restriction, $listed, $function, $file, $includable );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Do the real work for the constructor, mainly so __call() can intercept
|
|
|
|
|
* calls to SpecialPage()
|
2011-06-26 23:25:50 +00:00
|
|
|
* @param $name String: name of the special page, as seen in links and URLs
|
|
|
|
|
* @param $restriction String: user right required, e.g. "block" or "delete"
|
|
|
|
|
* @param $listed Bool: whether the page is listed in Special:Specialpages
|
|
|
|
|
* @param $function Callback|Bool: function called by execute(). By default it is constructed from $name
|
|
|
|
|
* @param $file String: file which is included by execute(). It is also constructed from $name by default
|
|
|
|
|
* @param $includable Bool: whether the page can be included in normal pages
|
2010-12-10 15:15:16 +00:00
|
|
|
*/
|
|
|
|
|
private function init( $name, $restriction, $listed, $function, $file, $includable ) {
|
2004-05-15 03:36:39 +00:00
|
|
|
$this->mName = $name;
|
|
|
|
|
$this->mRestriction = $restriction;
|
|
|
|
|
$this->mListed = $listed;
|
2005-05-28 11:09:22 +00:00
|
|
|
$this->mIncludable = $includable;
|
2010-06-09 11:44:05 +00:00
|
|
|
if ( !$function ) {
|
2011-12-16 09:29:18 +00:00
|
|
|
$this->mFunction = 'wfSpecial' . $name;
|
2004-05-15 03:36:39 +00:00
|
|
|
} else {
|
|
|
|
|
$this->mFunction = $function;
|
|
|
|
|
}
|
2004-09-19 19:37:26 +00:00
|
|
|
if ( $file === 'default' ) {
|
2011-12-16 09:29:18 +00:00
|
|
|
$this->mFile = dirname( __FILE__ ) . "/specials/Special$name.php";
|
2004-05-15 03:36:39 +00:00
|
|
|
} else {
|
|
|
|
|
$this->mFile = $file;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-10 15:15:16 +00:00
|
|
|
/**
|
|
|
|
|
* Use PHP's magic __call handler to get calls to the old PHP4 constructor
|
|
|
|
|
* because PHP E_STRICT yells at you for having __construct() and SpecialPage()
|
|
|
|
|
*
|
2010-12-13 12:44:34 +00:00
|
|
|
* @param $fName String Name of called method
|
2010-12-10 15:15:16 +00:00
|
|
|
* @param $a Array Arguments to the method
|
2011-04-14 15:11:30 +00:00
|
|
|
* @deprecated since 1.17, call parent::__construct()
|
2010-12-10 15:15:16 +00:00
|
|
|
*/
|
|
|
|
|
public function __call( $fName, $a ) {
|
2011-12-13 19:51:03 +00:00
|
|
|
// Deprecated messages now, remove in 1.19 or 1.20?
|
|
|
|
|
wfDeprecated( __METHOD__, '1.17' );
|
2011-12-16 09:29:18 +00:00
|
|
|
|
2010-12-10 15:15:16 +00:00
|
|
|
// Sometimes $fName is SpecialPage, sometimes it's specialpage. <3 PHP
|
2011-12-16 09:29:18 +00:00
|
|
|
if ( strtolower( $fName ) == 'specialpage' ) {
|
2010-12-10 15:15:16 +00:00
|
|
|
$name = isset( $a[0] ) ? $a[0] : '';
|
|
|
|
|
$restriction = isset( $a[1] ) ? $a[1] : '';
|
|
|
|
|
$listed = isset( $a[2] ) ? $a[2] : true;
|
|
|
|
|
$function = isset( $a[3] ) ? $a[3] : false;
|
|
|
|
|
$file = isset( $a[4] ) ? $a[4] : 'default';
|
|
|
|
|
$includable = isset( $a[5] ) ? $a[5] : false;
|
|
|
|
|
$this->init( $name, $restriction, $listed, $function, $file, $includable );
|
2010-12-21 17:15:25 +00:00
|
|
|
} else {
|
2010-12-21 17:41:05 +00:00
|
|
|
$className = get_class( $this );
|
|
|
|
|
throw new MWException( "Call to undefined method $className::$fName" );
|
2010-12-10 15:15:16 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-18 21:25:06 +00:00
|
|
|
/**
|
|
|
|
|
* Get the name of this Special Page.
|
|
|
|
|
* @return String
|
|
|
|
|
*/
|
|
|
|
|
function getName() {
|
|
|
|
|
return $this->mName;
|
|
|
|
|
}
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2011-04-18 21:25:06 +00:00
|
|
|
/**
|
|
|
|
|
* Get the permission that a user must have to execute this page
|
|
|
|
|
* @return String
|
|
|
|
|
*/
|
|
|
|
|
function getRestriction() {
|
|
|
|
|
return $this->mRestriction;
|
2009-07-24 20:12:44 +00:00
|
|
|
}
|
2011-04-18 21:25:06 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the file which will be included by SpecialPage::execute() if your extension is
|
|
|
|
|
* still stuck in the past and hasn't overridden the execute() method. No modern code
|
|
|
|
|
* should want or need to know this.
|
|
|
|
|
* @return String
|
|
|
|
|
* @deprecated since 1.18
|
|
|
|
|
*/
|
|
|
|
|
function getFile() {
|
2011-12-16 09:29:18 +00:00
|
|
|
wfDeprecated( __METHOD__, '1.18' );
|
2011-04-18 21:25:06 +00:00
|
|
|
return $this->mFile;
|
|
|
|
|
}
|
|
|
|
|
|
2011-05-17 22:03:20 +00:00
|
|
|
// @todo FIXME: Decide which syntax to use for this, and stick to it
|
2011-04-18 21:25:06 +00:00
|
|
|
/**
|
|
|
|
|
* Whether this special page is listed in Special:SpecialPages
|
|
|
|
|
* @since r3583 (v1.3)
|
|
|
|
|
* @return Bool
|
|
|
|
|
*/
|
|
|
|
|
function isListed() {
|
|
|
|
|
return $this->mListed;
|
|
|
|
|
}
|
|
|
|
|
/**
|
|
|
|
|
* Set whether this page is listed in Special:Specialpages, at run-time
|
|
|
|
|
* @since r3583 (v1.3)
|
2011-06-26 23:25:50 +00:00
|
|
|
* @param $listed Bool
|
2011-04-18 21:25:06 +00:00
|
|
|
* @return Bool
|
|
|
|
|
*/
|
|
|
|
|
function setListed( $listed ) {
|
|
|
|
|
return wfSetVar( $this->mListed, $listed );
|
|
|
|
|
}
|
|
|
|
|
/**
|
|
|
|
|
* Get or set whether this special page is listed in Special:SpecialPages
|
|
|
|
|
* @since r11308 (v1.6)
|
2011-06-26 23:25:50 +00:00
|
|
|
* @param $x Bool
|
2011-04-18 21:25:06 +00:00
|
|
|
* @return Bool
|
|
|
|
|
*/
|
2011-12-16 09:29:18 +00:00
|
|
|
function listed( $x = null ) {
|
2011-04-18 21:25:06 +00:00
|
|
|
return wfSetVar( $this->mListed, $x );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Whether it's allowed to transclude the special page via {{Special:Foo/params}}
|
|
|
|
|
* @return Bool
|
|
|
|
|
*/
|
2011-12-16 09:29:18 +00:00
|
|
|
public function isIncludable() {
|
2011-04-18 21:25:06 +00:00
|
|
|
return $this->mIncludable;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* These mutators are very evil, as the relevant variables should not mutate. So
|
|
|
|
|
* don't use them.
|
2011-06-26 23:25:50 +00:00
|
|
|
* @param $x Mixed
|
|
|
|
|
* @return Mixed
|
2011-04-18 21:25:06 +00:00
|
|
|
* @deprecated since 1.18
|
|
|
|
|
*/
|
2011-12-13 19:51:03 +00:00
|
|
|
function name( $x = null ) { wfDeprecated( __METHOD__, '1.18' ); return wfSetVar( $this->mName, $x ); }
|
2011-12-13 20:20:03 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* These mutators are very evil, as the relevant variables should not mutate. So
|
|
|
|
|
* don't use them.
|
|
|
|
|
* @param $x Mixed
|
|
|
|
|
* @return Mixed
|
|
|
|
|
* @deprecated since 1.18
|
|
|
|
|
*/
|
2011-12-16 09:29:18 +00:00
|
|
|
function restriction( $x = null ) { wfDeprecated( __METHOD__, '1.18' ); return wfSetVar( $this->mRestriction, $x ); }
|
2011-12-13 20:20:03 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* These mutators are very evil, as the relevant variables should not mutate. So
|
|
|
|
|
* don't use them.
|
|
|
|
|
* @param $x Mixed
|
|
|
|
|
* @return Mixed
|
|
|
|
|
* @deprecated since 1.18
|
|
|
|
|
*/
|
2011-12-16 09:29:18 +00:00
|
|
|
function func( $x = null ) { wfDeprecated( __METHOD__, '1.18' ); return wfSetVar( $this->mFunction, $x ); }
|
2011-12-13 20:20:03 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* These mutators are very evil, as the relevant variables should not mutate. So
|
|
|
|
|
* don't use them.
|
|
|
|
|
* @param $x Mixed
|
|
|
|
|
* @return Mixed
|
|
|
|
|
* @deprecated since 1.18
|
|
|
|
|
*/
|
2011-12-16 09:29:18 +00:00
|
|
|
function file( $x = null ) { wfDeprecated( __METHOD__, '1.18' ); return wfSetVar( $this->mFile, $x ); }
|
2011-12-13 20:20:03 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* These mutators are very evil, as the relevant variables should not mutate. So
|
|
|
|
|
* don't use them.
|
|
|
|
|
* @param $x Mixed
|
|
|
|
|
* @return Mixed
|
|
|
|
|
* @deprecated since 1.18
|
|
|
|
|
*/
|
2011-12-13 19:51:03 +00:00
|
|
|
function includable( $x = null ) { wfDeprecated( __METHOD__, '1.18' ); return wfSetVar( $this->mIncludable, $x ); }
|
2011-04-18 21:25:06 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Whether the special page is being evaluated via transclusion
|
2011-06-26 23:25:50 +00:00
|
|
|
* @param $x Bool
|
2011-04-18 21:25:06 +00:00
|
|
|
* @return Bool
|
|
|
|
|
*/
|
|
|
|
|
function including( $x = null ) {
|
|
|
|
|
return wfSetVar( $this->mIncluding, $x );
|
|
|
|
|
}
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2006-10-30 06:25:31 +00:00
|
|
|
/**
|
|
|
|
|
* Get the localised name of the special page
|
|
|
|
|
*/
|
|
|
|
|
function getLocalName() {
|
|
|
|
|
if ( !isset( $this->mLocalName ) ) {
|
2011-04-17 11:31:11 +00:00
|
|
|
$this->mLocalName = SpecialPageFactory::getLocalNameFor( $this->mName );
|
2006-10-30 06:25:31 +00:00
|
|
|
}
|
|
|
|
|
return $this->mLocalName;
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-09 00:06:57 +00:00
|
|
|
/**
|
|
|
|
|
* Is this page expensive (for some definition of expensive)?
|
|
|
|
|
* Expensive pages are disabled or cached in miser mode. Originally used
|
|
|
|
|
* (and still overridden) by QueryPage and subclasses, moved here so that
|
|
|
|
|
* Special:SpecialPages can safely call it for all special pages.
|
|
|
|
|
*
|
|
|
|
|
* @return Boolean
|
|
|
|
|
*/
|
|
|
|
|
public function isExpensive() {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2008-01-03 23:43:24 +00:00
|
|
|
/**
|
|
|
|
|
* Can be overridden by subclasses with more complicated permissions
|
|
|
|
|
* schemes.
|
|
|
|
|
*
|
2010-02-25 22:03:36 +00:00
|
|
|
* @return Boolean: should the page be displayed with the restricted-access
|
2008-01-03 23:43:24 +00:00
|
|
|
* pages?
|
|
|
|
|
*/
|
|
|
|
|
public function isRestricted() {
|
2009-03-18 21:13:34 +00:00
|
|
|
global $wgGroupPermissions;
|
|
|
|
|
// DWIM: If all anons can do something, then it is not restricted
|
2011-12-16 09:29:18 +00:00
|
|
|
return $this->mRestriction != '' && empty( $wgGroupPermissions['*'][$this->mRestriction] );
|
2008-01-03 23:43:24 +00:00
|
|
|
}
|
|
|
|
|
|
2004-09-19 19:37:26 +00:00
|
|
|
/**
|
|
|
|
|
* Checks if the given user (identified by an object) can execute this
|
2008-01-03 23:43:24 +00:00
|
|
|
* special page (as defined by $mRestriction). Can be overridden by sub-
|
|
|
|
|
* classes with more complicated permissions schemes.
|
|
|
|
|
*
|
2010-02-25 22:03:36 +00:00
|
|
|
* @param $user User: the user to check
|
|
|
|
|
* @return Boolean: does the user have permission to view the page?
|
2004-09-19 19:37:26 +00:00
|
|
|
*/
|
2011-04-19 15:45:03 +00:00
|
|
|
public function userCanExecute( User $user ) {
|
2006-07-16 16:10:41 +00:00
|
|
|
return $user->isAllowed( $this->mRestriction );
|
2004-05-15 03:36:39 +00:00
|
|
|
}
|
2004-08-13 02:48:42 +00:00
|
|
|
|
2004-09-19 19:37:26 +00:00
|
|
|
/**
|
|
|
|
|
* Output an error message telling the user what access level they have to have
|
|
|
|
|
*/
|
2004-05-15 03:36:39 +00:00
|
|
|
function displayRestrictionError() {
|
2011-04-17 11:31:11 +00:00
|
|
|
throw new PermissionsError( $this->mRestriction );
|
2004-05-15 03:36:39 +00:00
|
|
|
}
|
2004-08-13 02:48:42 +00:00
|
|
|
|
2011-11-15 00:37:38 +00:00
|
|
|
/**
|
|
|
|
|
* Checks if userCanExecute, and if not throws a PermissionsError
|
|
|
|
|
*
|
|
|
|
|
* @since 1.19
|
|
|
|
|
*/
|
|
|
|
|
public function checkPermissions() {
|
|
|
|
|
if ( !$this->userCanExecute( $this->getUser() ) ) {
|
|
|
|
|
$this->displayRestrictionError();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-15 01:19:04 +00:00
|
|
|
/**
|
|
|
|
|
* If the wiki is currently in readonly mode, throws a ReadOnlyError
|
|
|
|
|
*
|
|
|
|
|
* @since 1.19
|
|
|
|
|
* @throws ReadOnlyError
|
|
|
|
|
*/
|
|
|
|
|
public function checkReadOnly() {
|
|
|
|
|
if ( wfReadOnly() ) {
|
|
|
|
|
throw new ReadOnlyError;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-09-19 19:37:26 +00:00
|
|
|
/**
|
|
|
|
|
* Sets headers - this should be called from the execute() method of all derived classes!
|
|
|
|
|
*/
|
2004-05-15 03:36:39 +00:00
|
|
|
function setHeaders() {
|
2011-04-03 05:46:42 +00:00
|
|
|
$out = $this->getOutput();
|
|
|
|
|
$out->setArticleRelated( false );
|
|
|
|
|
$out->setRobotPolicy( "noindex,nofollow" );
|
|
|
|
|
$out->setPageTitle( $this->getDescription() );
|
2004-05-15 03:36:39 +00:00
|
|
|
}
|
|
|
|
|
|
2004-09-19 19:37:26 +00:00
|
|
|
/**
|
|
|
|
|
* Default execute method
|
|
|
|
|
* Checks user permissions, calls the function given in mFunction
|
2006-10-30 06:25:31 +00:00
|
|
|
*
|
2011-04-18 21:07:30 +00:00
|
|
|
* This must be overridden by subclasses; it will be made abstract in a future version
|
2011-06-26 23:25:50 +00:00
|
|
|
*
|
|
|
|
|
* @param $par String subpage string, if one was specified
|
2004-09-19 19:37:26 +00:00
|
|
|
*/
|
2004-05-15 03:36:39 +00:00
|
|
|
function execute( $par ) {
|
|
|
|
|
$this->setHeaders();
|
2011-11-15 00:37:38 +00:00
|
|
|
$this->checkPermissions();
|
2004-08-13 02:48:42 +00:00
|
|
|
|
2011-11-15 00:37:38 +00:00
|
|
|
$func = $this->mFunction;
|
|
|
|
|
// only load file if the function does not exist
|
2011-12-16 09:29:18 +00:00
|
|
|
if ( !is_callable( $func ) && $this->mFile ) {
|
2011-11-15 00:37:38 +00:00
|
|
|
require_once( $this->mFile );
|
2004-05-15 03:36:39 +00:00
|
|
|
}
|
2011-11-15 00:37:38 +00:00
|
|
|
$this->outputHeader();
|
|
|
|
|
call_user_func( $func, $par, $this );
|
2004-05-15 03:36:39 +00:00
|
|
|
}
|
|
|
|
|
|
2009-02-27 09:07:08 +00:00
|
|
|
/**
|
|
|
|
|
* Outputs a summary message on top of special pages
|
|
|
|
|
* Per default the message key is the canonical name of the special page
|
|
|
|
|
* May be overriden, i.e. by extensions to stick with the naming conventions
|
2010-01-07 09:32:09 +00:00
|
|
|
* for message keys: 'extensionname-xxx'
|
2009-02-27 09:07:08 +00:00
|
|
|
*
|
2010-02-25 22:03:36 +00:00
|
|
|
* @param $summaryMessageKey String: message key of the summary
|
2009-02-27 09:07:08 +00:00
|
|
|
*/
|
|
|
|
|
function outputHeader( $summaryMessageKey = '' ) {
|
2011-04-03 05:46:42 +00:00
|
|
|
global $wgContLang;
|
2005-11-10 05:40:25 +00:00
|
|
|
|
2011-12-16 09:29:18 +00:00
|
|
|
if ( $summaryMessageKey == '' ) {
|
2011-04-18 19:03:46 +00:00
|
|
|
$msg = $wgContLang->lc( $this->getName() ) . '-summary';
|
2009-02-27 09:07:08 +00:00
|
|
|
} else {
|
|
|
|
|
$msg = $summaryMessageKey;
|
|
|
|
|
}
|
2011-10-17 14:17:52 +00:00
|
|
|
if ( !$this->msg( $msg )->isBlank() && !$this->including() ) {
|
2011-06-27 20:36:59 +00:00
|
|
|
$this->getOutput()->wrapWikiMsg(
|
|
|
|
|
"<div class='mw-specialpage-summary'>\n$1\n</div>", $msg );
|
2008-02-18 07:25:35 +00:00
|
|
|
}
|
2005-11-10 05:40:25 +00:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-25 22:03:36 +00:00
|
|
|
/**
|
|
|
|
|
* Returns the name that goes in the \<h1\> in the special page itself, and
|
|
|
|
|
* also the name that will be listed in Special:Specialpages
|
|
|
|
|
*
|
|
|
|
|
* Derived classes can override this, but usually it is easier to keep the
|
|
|
|
|
* default behaviour. Messages can be added at run-time, see
|
|
|
|
|
* MessageCache.php.
|
|
|
|
|
*
|
|
|
|
|
* @return String
|
|
|
|
|
*/
|
2004-05-15 03:36:39 +00:00
|
|
|
function getDescription() {
|
2011-10-17 14:17:52 +00:00
|
|
|
return $this->msg( strtolower( $this->mName ) )->text();
|
2004-05-15 03:36:39 +00:00
|
|
|
}
|
|
|
|
|
|
2004-09-19 19:37:26 +00:00
|
|
|
/**
|
|
|
|
|
* Get a self-referential title object
|
2010-02-25 22:03:36 +00:00
|
|
|
*
|
2011-06-26 23:25:50 +00:00
|
|
|
* @param $subpage String|Bool
|
2010-02-25 22:03:36 +00:00
|
|
|
* @return Title object
|
2004-09-19 19:37:26 +00:00
|
|
|
*/
|
2009-07-07 16:13:58 +00:00
|
|
|
function getTitle( $subpage = false ) {
|
2006-10-30 06:25:31 +00:00
|
|
|
return self::getTitleFor( $this->mName, $subpage );
|
2004-05-15 03:36:39 +00:00
|
|
|
}
|
2011-05-25 15:39:47 +00:00
|
|
|
|
2011-11-23 09:53:37 +00:00
|
|
|
/**
|
|
|
|
|
* Sets the context this SpecialPage is executed in
|
|
|
|
|
*
|
|
|
|
|
* @param $context IContextSource
|
|
|
|
|
* @since 1.18
|
|
|
|
|
*/
|
|
|
|
|
public function setContext( $context ) {
|
|
|
|
|
$this->mContext = $context;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Gets the context this SpecialPage is executed in
|
|
|
|
|
*
|
2011-12-24 23:11:25 +00:00
|
|
|
* @return IContextSource|RequestContext
|
2011-11-23 09:53:37 +00:00
|
|
|
* @since 1.18
|
|
|
|
|
*/
|
|
|
|
|
public function getContext() {
|
|
|
|
|
if ( $this->mContext instanceof IContextSource ) {
|
|
|
|
|
return $this->mContext;
|
|
|
|
|
} else {
|
|
|
|
|
wfDebug( __METHOD__ . " called and \$mContext is null. Return RequestContext::getMain(); for sanity\n" );
|
|
|
|
|
return RequestContext::getMain();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the WebRequest being used for this instance
|
|
|
|
|
*
|
|
|
|
|
* @return WebRequest
|
|
|
|
|
* @since 1.18
|
|
|
|
|
*/
|
|
|
|
|
public function getRequest() {
|
|
|
|
|
return $this->getContext()->getRequest();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the OutputPage being used for this instance
|
|
|
|
|
*
|
|
|
|
|
* @return OutputPage
|
|
|
|
|
* @since 1.18
|
|
|
|
|
*/
|
|
|
|
|
public function getOutput() {
|
|
|
|
|
return $this->getContext()->getOutput();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Shortcut to get the User executing this instance
|
|
|
|
|
*
|
|
|
|
|
* @return User
|
|
|
|
|
* @since 1.18
|
|
|
|
|
*/
|
|
|
|
|
public function getUser() {
|
|
|
|
|
return $this->getContext()->getUser();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Shortcut to get the skin being used for this instance
|
|
|
|
|
*
|
|
|
|
|
* @return Skin
|
|
|
|
|
* @since 1.18
|
|
|
|
|
*/
|
|
|
|
|
public function getSkin() {
|
|
|
|
|
return $this->getContext()->getSkin();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Shortcut to get user's language
|
|
|
|
|
*
|
|
|
|
|
* @deprecated 1.19 Use getLanguage instead
|
|
|
|
|
* @return Language
|
|
|
|
|
* @since 1.18
|
|
|
|
|
*/
|
|
|
|
|
public function getLang() {
|
2011-12-13 19:51:03 +00:00
|
|
|
wfDeprecated( __METHOD__, '1.19' );
|
2011-11-23 09:53:37 +00:00
|
|
|
return $this->getLanguage();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Shortcut to get user's language
|
|
|
|
|
*
|
|
|
|
|
* @return Language
|
|
|
|
|
* @since 1.19
|
|
|
|
|
*/
|
|
|
|
|
public function getLanguage() {
|
|
|
|
|
return $this->getContext()->getLanguage();
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-03 10:41:14 +00:00
|
|
|
/**
|
|
|
|
|
* Return the full title, including $par
|
|
|
|
|
*
|
|
|
|
|
* @return Title
|
|
|
|
|
* @since 1.18
|
|
|
|
|
*/
|
|
|
|
|
public function getFullTitle() {
|
|
|
|
|
return $this->getContext()->getTitle();
|
2011-04-03 04:36:02 +00:00
|
|
|
}
|
|
|
|
|
|
2011-02-10 16:14:56 +00:00
|
|
|
/**
|
2011-07-07 20:17:55 +00:00
|
|
|
* Wrapper around wfMessage that sets the current context.
|
2011-05-25 15:39:47 +00:00
|
|
|
*
|
2011-06-26 23:25:50 +00:00
|
|
|
* @return Message
|
2011-02-10 16:14:56 +00:00
|
|
|
* @see wfMessage
|
|
|
|
|
*/
|
|
|
|
|
public function msg( /* $args */ ) {
|
2011-10-01 02:03:05 +00:00
|
|
|
// Note: can't use func_get_args() directly as second or later item in
|
|
|
|
|
// a parameter list until PHP 5.3 or you get a fatal error.
|
|
|
|
|
// Works fine as the first parameter, which appears elsewhere in the
|
|
|
|
|
// code base. Sighhhh.
|
|
|
|
|
$args = func_get_args();
|
|
|
|
|
return call_user_func_array( array( $this->getContext(), 'msg' ), $args );
|
2011-02-10 16:14:56 +00:00
|
|
|
}
|
2011-06-06 15:07:23 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Adds RSS/atom links
|
|
|
|
|
*
|
|
|
|
|
* @param $params array
|
|
|
|
|
*/
|
|
|
|
|
protected function addFeedLinks( $params ) {
|
2011-09-29 15:07:13 +00:00
|
|
|
global $wgFeedClasses;
|
2011-06-06 15:07:23 +00:00
|
|
|
|
|
|
|
|
$feedTemplate = wfScript( 'api' ) . '?';
|
|
|
|
|
|
2011-12-16 09:29:18 +00:00
|
|
|
foreach ( $wgFeedClasses as $format => $class ) {
|
2011-06-06 15:07:23 +00:00
|
|
|
$theseParams = $params + array( 'feedformat' => $format );
|
|
|
|
|
$url = $feedTemplate . wfArrayToCGI( $theseParams );
|
2011-09-29 15:07:13 +00:00
|
|
|
$this->getOutput()->addFeedLink( $format, $url );
|
2011-06-06 15:07:23 +00:00
|
|
|
}
|
|
|
|
|
}
|
2004-05-15 03:36:39 +00:00
|
|
|
}
|
|
|
|
|
|
2011-04-20 15:27:09 +00:00
|
|
|
/**
|
|
|
|
|
* Special page which uses an HTMLForm to handle processing. This is mostly a
|
|
|
|
|
* clone of FormAction. More special pages should be built this way; maybe this could be
|
|
|
|
|
* a new structure for SpecialPages
|
|
|
|
|
*/
|
|
|
|
|
abstract class FormSpecialPage extends SpecialPage {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get an HTMLForm descriptor array
|
|
|
|
|
* @return Array
|
|
|
|
|
*/
|
|
|
|
|
protected abstract function getFormFields();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Add pre- or post-text to the form
|
|
|
|
|
* @return String HTML which will be sent to $form->addPreText()
|
|
|
|
|
*/
|
|
|
|
|
protected function preText() { return ''; }
|
|
|
|
|
protected function postText() { return ''; }
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Play with the HTMLForm if you need to more substantially
|
|
|
|
|
* @param $form HTMLForm
|
|
|
|
|
*/
|
|
|
|
|
protected function alterForm( HTMLForm $form ) {}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the HTMLForm to control behaviour
|
|
|
|
|
* @return HTMLForm|null
|
|
|
|
|
*/
|
|
|
|
|
protected function getForm() {
|
|
|
|
|
$this->fields = $this->getFormFields();
|
|
|
|
|
|
|
|
|
|
$form = new HTMLForm( $this->fields, $this->getContext() );
|
|
|
|
|
$form->setSubmitCallback( array( $this, 'onSubmit' ) );
|
2011-10-17 14:17:52 +00:00
|
|
|
$form->setWrapperLegend( $this->msg( strtolower( $this->getName() ) . '-legend' ) );
|
2011-06-27 20:36:59 +00:00
|
|
|
$form->addHeaderText(
|
2011-10-17 14:17:52 +00:00
|
|
|
$this->msg( strtolower( $this->getName() ) . '-text' )->parseAsBlock() );
|
2011-04-20 15:27:09 +00:00
|
|
|
|
|
|
|
|
// Retain query parameters (uselang etc)
|
2011-06-27 20:36:59 +00:00
|
|
|
$params = array_diff_key(
|
|
|
|
|
$this->getRequest()->getQueryValues(), array( 'title' => null ) );
|
2011-04-20 15:27:09 +00:00
|
|
|
$form->addHiddenField( 'redirectparams', wfArrayToCGI( $params ) );
|
|
|
|
|
|
|
|
|
|
$form->addPreText( $this->preText() );
|
|
|
|
|
$form->addPostText( $this->postText() );
|
|
|
|
|
$this->alterForm( $form );
|
|
|
|
|
|
|
|
|
|
// Give hooks a chance to alter the form, adding extra fields or text etc
|
|
|
|
|
wfRunHooks( "Special{$this->getName()}BeforeFormDisplay", array( &$form ) );
|
|
|
|
|
|
|
|
|
|
return $form;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Process the form on POST submission.
|
|
|
|
|
* @param $data Array
|
|
|
|
|
* @return Bool|Array true for success, false for didn't-try, array of errors on failure
|
|
|
|
|
*/
|
|
|
|
|
public abstract function onSubmit( array $data );
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Do something exciting on successful processing of the form, most likely to show a
|
|
|
|
|
* confirmation message
|
|
|
|
|
*/
|
|
|
|
|
public abstract function onSuccess();
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Basic SpecialPage workflow: get a form, send it to the user; get some data back,
|
2011-06-26 23:25:50 +00:00
|
|
|
*
|
|
|
|
|
* @param $par String Subpage string if one was specified
|
2011-04-20 15:27:09 +00:00
|
|
|
*/
|
|
|
|
|
public function execute( $par ) {
|
|
|
|
|
$this->setParameter( $par );
|
|
|
|
|
$this->setHeaders();
|
|
|
|
|
|
|
|
|
|
// This will throw exceptions if there's a problem
|
2011-10-26 06:22:25 +00:00
|
|
|
$this->checkExecutePermissions( $this->getUser() );
|
2011-04-20 15:27:09 +00:00
|
|
|
|
|
|
|
|
$form = $this->getForm();
|
|
|
|
|
if ( $form->show() ) {
|
|
|
|
|
$this->onSuccess();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Maybe do something interesting with the subpage parameter
|
|
|
|
|
* @param $par String
|
|
|
|
|
*/
|
2011-12-16 09:29:18 +00:00
|
|
|
protected function setParameter( $par ) {}
|
2011-04-20 15:27:09 +00:00
|
|
|
|
|
|
|
|
/**
|
2011-10-26 06:22:25 +00:00
|
|
|
* Called from execute() to check if the given user can perform this action.
|
|
|
|
|
* Failures here must throw subclasses of ErrorPageError.
|
|
|
|
|
* @param $user User
|
2011-06-26 23:25:50 +00:00
|
|
|
* @return Bool true
|
2011-04-20 15:27:09 +00:00
|
|
|
* @throws ErrorPageError
|
|
|
|
|
*/
|
2011-10-26 06:22:25 +00:00
|
|
|
protected function checkExecutePermissions( User $user ) {
|
2011-11-15 01:19:04 +00:00
|
|
|
$this->checkPermissions();
|
2011-04-20 15:27:09 +00:00
|
|
|
|
|
|
|
|
if ( $this->requiresUnblock() && $user->isBlocked() ) {
|
2012-02-16 00:54:34 +00:00
|
|
|
$block = $user->getBlock();
|
2011-07-27 22:28:59 +00:00
|
|
|
throw new UserBlockedError( $block );
|
2011-04-20 15:27:09 +00:00
|
|
|
}
|
|
|
|
|
|
2011-11-15 18:26:05 +00:00
|
|
|
if ( $this->requiresWrite() ) {
|
|
|
|
|
$this->checkReadOnly();
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-20 15:27:09 +00:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Whether this action requires the wiki not to be locked
|
|
|
|
|
* @return Bool
|
|
|
|
|
*/
|
|
|
|
|
public function requiresWrite() {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Whether this action cannot be executed by a blocked user
|
|
|
|
|
* @return Bool
|
|
|
|
|
*/
|
|
|
|
|
public function requiresUnblock() {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
|
|
|
|
* Shortcut to construct a special page which is unlisted by default
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @ingroup SpecialPage
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
2011-06-28 01:17:19 +00:00
|
|
|
class UnlistedSpecialPage extends SpecialPage {
|
2010-08-30 16:52:51 +00:00
|
|
|
function __construct( $name, $restriction = '', $function = false, $file = 'default' ) {
|
|
|
|
|
parent::__construct( $name, $restriction, false, $function, $file );
|
2004-05-15 03:36:39 +00:00
|
|
|
}
|
2011-04-18 21:25:06 +00:00
|
|
|
|
2011-12-16 09:29:18 +00:00
|
|
|
public function isListed() {
|
2011-04-18 21:25:06 +00:00
|
|
|
return false;
|
|
|
|
|
}
|
2004-05-15 03:36:39 +00:00
|
|
|
}
|
2005-05-28 11:09:22 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Shortcut to construct an includable special page
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @ingroup SpecialPage
|
2005-05-28 11:09:22 +00:00
|
|
|
*/
|
2011-06-28 01:17:19 +00:00
|
|
|
class IncludableSpecialPage extends SpecialPage {
|
2011-06-27 20:36:59 +00:00
|
|
|
function __construct(
|
|
|
|
|
$name, $restriction = '', $listed = true, $function = false, $file = 'default'
|
|
|
|
|
) {
|
2010-08-30 16:52:51 +00:00
|
|
|
parent::__construct( $name, $restriction, $listed, $function, $file, true );
|
2005-05-28 11:09:22 +00:00
|
|
|
}
|
2011-04-18 21:25:06 +00:00
|
|
|
|
2011-12-16 09:29:18 +00:00
|
|
|
public function isIncludable() {
|
2011-04-18 21:25:06 +00:00
|
|
|
return true;
|
|
|
|
|
}
|
2005-05-28 11:09:22 +00:00
|
|
|
}
|
2006-10-30 06:25:31 +00:00
|
|
|
|
2007-04-20 08:55:14 +00:00
|
|
|
/**
|
2007-04-21 12:42:27 +00:00
|
|
|
* Shortcut to construct a special page alias.
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @ingroup SpecialPage
|
2007-04-20 08:55:14 +00:00
|
|
|
*/
|
2011-04-19 15:45:03 +00:00
|
|
|
abstract class RedirectSpecialPage extends UnlistedSpecialPage {
|
2011-04-18 21:25:06 +00:00
|
|
|
|
|
|
|
|
// Query parameters that can be passed through redirects
|
2011-04-19 15:45:03 +00:00
|
|
|
protected $mAllowedRedirectParams = array();
|
2011-04-18 21:25:06 +00:00
|
|
|
|
|
|
|
|
// Query parameteres added by redirects
|
2011-04-19 15:45:03 +00:00
|
|
|
protected $mAddedRedirectParams = array();
|
2011-05-25 15:39:47 +00:00
|
|
|
|
2011-12-16 09:29:18 +00:00
|
|
|
public function execute( $par ) {
|
2011-04-19 15:45:03 +00:00
|
|
|
$redirect = $this->getRedirect( $par );
|
|
|
|
|
$query = $this->getRedirectQuery();
|
2011-04-19 23:18:13 +00:00
|
|
|
// Redirect to a page title with possible query parameters
|
2011-04-19 15:45:03 +00:00
|
|
|
if ( $redirect instanceof Title ) {
|
|
|
|
|
$url = $redirect->getFullUrl( $query );
|
2011-06-09 20:00:40 +00:00
|
|
|
$this->getOutput()->redirect( $url );
|
2011-04-19 15:45:03 +00:00
|
|
|
wfProfileOut( __METHOD__ );
|
|
|
|
|
return $redirect;
|
2011-04-19 23:18:13 +00:00
|
|
|
// Redirect to index.php with query parameters
|
2011-04-19 15:45:03 +00:00
|
|
|
} elseif ( $redirect === true ) {
|
|
|
|
|
global $wgScript;
|
|
|
|
|
$url = $wgScript . '?' . wfArrayToCGI( $query );
|
2011-06-09 20:00:40 +00:00
|
|
|
$this->getOutput()->redirect( $url );
|
2011-04-19 15:45:03 +00:00
|
|
|
wfProfileOut( __METHOD__ );
|
|
|
|
|
return $redirect;
|
|
|
|
|
} else {
|
|
|
|
|
$class = __CLASS__;
|
|
|
|
|
throw new MWException( "RedirectSpecialPage $class doesn't redirect!" );
|
|
|
|
|
}
|
2006-10-30 06:25:31 +00:00
|
|
|
}
|
|
|
|
|
|
2011-04-18 21:25:06 +00:00
|
|
|
/**
|
|
|
|
|
* If the special page is a redirect, then get the Title object it redirects to.
|
|
|
|
|
* False otherwise.
|
|
|
|
|
*
|
2011-06-26 23:25:50 +00:00
|
|
|
* @param $par String Subpage string
|
2012-02-09 18:01:10 +00:00
|
|
|
* @return Title|bool
|
2011-04-18 21:25:06 +00:00
|
|
|
*/
|
2011-04-19 15:45:03 +00:00
|
|
|
abstract public function getRedirect( $par );
|
2011-04-18 21:25:06 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Return part of the request string for a special redirect page
|
|
|
|
|
* This allows passing, e.g. action=history to Special:Mypage, etc.
|
|
|
|
|
*
|
|
|
|
|
* @return String
|
|
|
|
|
*/
|
|
|
|
|
public function getRedirectQuery() {
|
|
|
|
|
$params = array();
|
|
|
|
|
|
2011-12-16 09:29:18 +00:00
|
|
|
foreach ( $this->mAllowedRedirectParams as $arg ) {
|
|
|
|
|
if ( $this->getRequest()->getVal( $arg, null ) !== null ) {
|
2011-06-03 11:04:49 +00:00
|
|
|
$params[$arg] = $this->getRequest()->getVal( $arg );
|
2011-04-18 21:25:06 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-12-16 09:29:18 +00:00
|
|
|
foreach ( $this->mAddedRedirectParams as $arg => $val ) {
|
2011-04-18 21:25:06 +00:00
|
|
|
$params[$arg] = $val;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return count( $params )
|
|
|
|
|
? $params
|
|
|
|
|
: false;
|
|
|
|
|
}
|
2006-10-30 06:25:31 +00:00
|
|
|
}
|
|
|
|
|
|
2011-04-19 15:45:03 +00:00
|
|
|
abstract class SpecialRedirectToSpecial extends RedirectSpecialPage {
|
|
|
|
|
var $redirName, $redirSubpage;
|
|
|
|
|
|
2011-06-27 20:36:59 +00:00
|
|
|
function __construct(
|
|
|
|
|
$name, $redirName, $redirSubpage = false,
|
|
|
|
|
$allowedRedirectParams = array(), $addedRedirectParams = array()
|
|
|
|
|
) {
|
2011-04-19 15:45:03 +00:00
|
|
|
parent::__construct( $name );
|
|
|
|
|
$this->redirName = $redirName;
|
|
|
|
|
$this->redirSubpage = $redirSubpage;
|
|
|
|
|
$this->mAllowedRedirectParams = $allowedRedirectParams;
|
|
|
|
|
$this->mAddedRedirectParams = $addedRedirectParams;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getRedirect( $subpage ) {
|
|
|
|
|
if ( $this->redirSubpage === false ) {
|
|
|
|
|
return SpecialPage::getTitleFor( $this->redirName, $subpage );
|
|
|
|
|
} else {
|
|
|
|
|
return SpecialPage::getTitleFor( $this->redirName, $this->redirSubpage );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-14 15:11:30 +00:00
|
|
|
/**
|
2011-11-05 16:35:24 +00:00
|
|
|
* ListAdmins --> ListUsers/sysop
|
2011-04-14 15:11:30 +00:00
|
|
|
*/
|
|
|
|
|
class SpecialListAdmins extends SpecialRedirectToSpecial {
|
2011-12-16 09:29:18 +00:00
|
|
|
function __construct() {
|
2011-10-27 05:57:14 +00:00
|
|
|
parent::__construct( 'Listadmins', 'Listusers', 'sysop' );
|
2011-04-14 15:11:30 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2011-11-05 16:35:24 +00:00
|
|
|
* ListBots --> ListUsers/bot
|
2011-04-14 15:11:30 +00:00
|
|
|
*/
|
|
|
|
|
class SpecialListBots extends SpecialRedirectToSpecial {
|
2011-12-16 09:29:18 +00:00
|
|
|
function __construct() {
|
2011-11-05 16:35:24 +00:00
|
|
|
parent::__construct( 'Listbots', 'Listusers', 'bot' );
|
2011-04-14 15:11:30 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* CreateAccount --> UserLogin/signup
|
2011-05-17 22:03:20 +00:00
|
|
|
* @todo FIXME: This (and the rest of the login frontend) needs to die a horrible painful death
|
2011-04-14 15:11:30 +00:00
|
|
|
*/
|
|
|
|
|
class SpecialCreateAccount extends SpecialRedirectToSpecial {
|
2011-12-16 09:29:18 +00:00
|
|
|
function __construct() {
|
2011-04-14 15:11:30 +00:00
|
|
|
parent::__construct( 'CreateAccount', 'Userlogin', 'signup', array( 'uselang' ) );
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-12-27 00:03:35 +00:00
|
|
|
/**
|
|
|
|
|
* SpecialMypage, SpecialMytalk and SpecialMycontributions special pages
|
2007-04-21 12:42:27 +00:00
|
|
|
* are used to get user independant links pointing to the user page, talk
|
|
|
|
|
* page and list of contributions.
|
|
|
|
|
* This can let us cache a single copy of any generated content for all
|
|
|
|
|
* users.
|
|
|
|
|
*/
|
|
|
|
|
|
2007-04-20 08:55:14 +00:00
|
|
|
/**
|
2007-04-21 12:42:27 +00:00
|
|
|
* Shortcut to construct a special page pointing to current user user's page.
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @ingroup SpecialPage
|
2007-04-20 08:55:14 +00:00
|
|
|
*/
|
2011-04-19 15:45:03 +00:00
|
|
|
class SpecialMypage extends RedirectSpecialPage {
|
2006-10-30 06:25:31 +00:00
|
|
|
function __construct() {
|
|
|
|
|
parent::__construct( 'Mypage' );
|
2010-11-08 10:15:07 +00:00
|
|
|
$this->mAllowedRedirectParams = array( 'action' , 'preload' , 'editintro',
|
2011-10-06 01:10:39 +00:00
|
|
|
'section', 'oldid', 'diff', 'dir',
|
|
|
|
|
// Options for action=raw; missing ctype can break JS or CSS in some browsers
|
|
|
|
|
'ctype', 'maxage', 'smaxage' );
|
2006-10-30 06:25:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getRedirect( $subpage ) {
|
|
|
|
|
if ( strval( $subpage ) !== '' ) {
|
2011-06-27 20:36:59 +00:00
|
|
|
return Title::makeTitle( NS_USER, $this->getUser()->getName() . '/' . $subpage );
|
2006-10-30 06:25:31 +00:00
|
|
|
} else {
|
2011-06-27 20:36:59 +00:00
|
|
|
return Title::makeTitle( NS_USER, $this->getUser()->getName() );
|
2006-10-30 06:25:31 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2007-04-20 08:55:14 +00:00
|
|
|
/**
|
2007-04-21 12:42:27 +00:00
|
|
|
* Shortcut to construct a special page pointing to current user talk page.
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @ingroup SpecialPage
|
2007-04-20 08:55:14 +00:00
|
|
|
*/
|
2011-04-19 15:45:03 +00:00
|
|
|
class SpecialMytalk extends RedirectSpecialPage {
|
2006-10-30 06:25:31 +00:00
|
|
|
function __construct() {
|
|
|
|
|
parent::__construct( 'Mytalk' );
|
2010-11-08 10:15:07 +00:00
|
|
|
$this->mAllowedRedirectParams = array( 'action' , 'preload' , 'editintro',
|
|
|
|
|
'section', 'oldid', 'diff', 'dir' );
|
2006-10-30 06:25:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getRedirect( $subpage ) {
|
|
|
|
|
if ( strval( $subpage ) !== '' ) {
|
2011-06-27 20:36:59 +00:00
|
|
|
return Title::makeTitle( NS_USER_TALK, $this->getUser()->getName() . '/' . $subpage );
|
2006-10-30 06:25:31 +00:00
|
|
|
} else {
|
2011-06-27 20:36:59 +00:00
|
|
|
return Title::makeTitle( NS_USER_TALK, $this->getUser()->getName() );
|
2006-10-30 06:25:31 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2007-04-20 08:55:14 +00:00
|
|
|
/**
|
2007-04-21 12:42:27 +00:00
|
|
|
* Shortcut to construct a special page pointing to current user contributions.
|
WARNING: HUGE COMMIT
Doxygen documentation update:
* Changed alls @addtogroup to @ingroup. @addtogroup adds the comment to the group description, but doesn't add the file, class, function, ... to the group like @ingroup does. See for example http://svn.wikimedia.org/doc/group__SpecialPage.html where it's impossible to see related files, classes, ... that should belong to that group.
* Added @file to file description, it seems that it should be explicitely decalred for file descriptions, otherwise doxygen will think that the comment document the first class, variabled, function, ... that is in that file.
* Removed some empty comments
* Removed some ?>
Added following groups:
* ExternalStorage
* JobQueue
* MaintenanceLanguage
One more thing: there are still a lot of warnings when generating the doc.
2008-05-20 17:13:28 +00:00
|
|
|
* @ingroup SpecialPage
|
2007-04-20 08:55:14 +00:00
|
|
|
*/
|
2011-04-19 15:45:03 +00:00
|
|
|
class SpecialMycontributions extends RedirectSpecialPage {
|
2006-10-30 06:25:31 +00:00
|
|
|
function __construct() {
|
|
|
|
|
parent::__construct( 'Mycontributions' );
|
2009-12-09 21:47:06 +00:00
|
|
|
$this->mAllowedRedirectParams = array( 'limit', 'namespace', 'tagfilter',
|
|
|
|
|
'offset', 'dir', 'year', 'month', 'feed' );
|
2006-10-30 06:25:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getRedirect( $subpage ) {
|
2011-06-27 20:36:59 +00:00
|
|
|
return SpecialPage::getTitleFor( 'Contributions', $this->getUser()->getName() );
|
2006-10-30 06:25:31 +00:00
|
|
|
}
|
|
|
|
|
}
|
2010-12-03 19:18:39 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Redirect to Special:Listfiles?user=$wgUser
|
|
|
|
|
*/
|
2011-04-19 15:45:03 +00:00
|
|
|
class SpecialMyuploads extends RedirectSpecialPage {
|
2010-12-03 19:18:39 +00:00
|
|
|
function __construct() {
|
|
|
|
|
parent::__construct( 'Myuploads' );
|
|
|
|
|
$this->mAllowedRedirectParams = array( 'limit' );
|
|
|
|
|
}
|
2010-12-27 00:03:35 +00:00
|
|
|
|
2010-12-03 19:18:39 +00:00
|
|
|
function getRedirect( $subpage ) {
|
2011-06-27 20:36:59 +00:00
|
|
|
return SpecialPage::getTitleFor( 'Listfiles', $this->getUser()->getName() );
|
2010-12-03 19:18:39 +00:00
|
|
|
}
|
2010-12-13 12:44:34 +00:00
|
|
|
}
|
2010-12-27 00:03:35 +00:00
|
|
|
|
|
|
|
|
/**
|
2010-12-27 00:07:41 +00:00
|
|
|
* Redirect from Special:PermanentLink/### to index.php?oldid=###
|
2010-12-27 00:03:35 +00:00
|
|
|
*/
|
2011-04-19 15:45:03 +00:00
|
|
|
class SpecialPermanentLink extends RedirectSpecialPage {
|
2010-12-27 00:03:35 +00:00
|
|
|
function __construct() {
|
|
|
|
|
parent::__construct( 'PermanentLink' );
|
|
|
|
|
$this->mAllowedRedirectParams = array();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getRedirect( $subpage ) {
|
|
|
|
|
$subpage = intval( $subpage );
|
2011-12-16 09:29:18 +00:00
|
|
|
if ( $subpage === 0 ) {
|
2011-11-01 14:21:42 +00:00
|
|
|
# throw an error page when no subpage was given
|
|
|
|
|
throw new ErrorPageError( 'nopagetitle', 'nopagetext' );
|
|
|
|
|
}
|
2010-12-27 00:03:35 +00:00
|
|
|
$this->mAddedRedirectParams['oldid'] = $subpage;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|