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
|
|
|
*
|
2006-06-25 08:38:17 +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.
|
|
|
|
|
*
|
|
|
|
|
* 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
|
|
|
|
|
* and bails out if not.
|
|
|
|
|
*
|
|
|
|
|
* To add a core special page, use the similar static list in
|
|
|
|
|
* SpecialPage::$mList. To remove a core static special page at runtime, use
|
|
|
|
|
* a SpecialPage_initList hook.
|
2004-09-03 23:00:01 +00:00
|
|
|
*
|
2007-01-20 15:09:52 +00:00
|
|
|
* @addtogroup 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.
|
|
|
|
|
* @addtogroup SpecialPage
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
2004-05-15 03:36:39 +00:00
|
|
|
class SpecialPage
|
|
|
|
|
{
|
2004-09-19 19:37:26 +00:00
|
|
|
/**#@+
|
|
|
|
|
* @access private
|
|
|
|
|
*/
|
|
|
|
|
/**
|
2006-10-30 06:25:31 +00:00
|
|
|
* The canonical name of this special page
|
2004-09-19 19:37:26 +00:00
|
|
|
* Also used for the default <h1> heading, @see getDescription()
|
|
|
|
|
*/
|
2006-05-11 22:40:38 +00:00
|
|
|
var $mName;
|
2006-10-30 06:25:31 +00:00
|
|
|
/**
|
|
|
|
|
* The local name of this special page
|
|
|
|
|
*/
|
|
|
|
|
var $mLocalName;
|
2004-09-19 19:37:26 +00:00
|
|
|
/**
|
|
|
|
|
* Minimum user level required to access this page, or "" for anyone.
|
|
|
|
|
* Also used to categorise the pages in Special:Specialpages
|
|
|
|
|
*/
|
2006-05-11 22:40:38 +00:00
|
|
|
var $mRestriction;
|
2004-09-19 19:37:26 +00:00
|
|
|
/**
|
|
|
|
|
* Listed in Special:Specialpages?
|
|
|
|
|
*/
|
2006-05-11 22:40:38 +00:00
|
|
|
var $mListed;
|
2004-09-19 19:37:26 +00:00
|
|
|
/**
|
|
|
|
|
* Function name called by the default execute()
|
|
|
|
|
*/
|
2006-05-11 22:40:38 +00:00
|
|
|
var $mFunction;
|
2004-09-19 19:37:26 +00:00
|
|
|
/**
|
|
|
|
|
* File which needs to be included before the function above can be called
|
|
|
|
|
*/
|
2006-05-11 22:40:38 +00:00
|
|
|
var $mFile;
|
2005-05-28 11:09:22 +00:00
|
|
|
/**
|
|
|
|
|
* Whether or not this special page is being included from an article
|
|
|
|
|
*/
|
2006-05-11 22:40:38 +00:00
|
|
|
var $mIncluding;
|
2005-05-28 11:09:22 +00:00
|
|
|
/**
|
|
|
|
|
* Whether the special page can be included in an article
|
|
|
|
|
*/
|
2006-05-11 22:40:38 +00:00
|
|
|
var $mIncludable;
|
2006-10-30 06:25:31 +00:00
|
|
|
/**
|
|
|
|
|
* Query parameters that can be passed through redirects
|
|
|
|
|
*/
|
|
|
|
|
var $mAllowedRedirectParams = array();
|
2008-04-12 21:42:19 +00:00
|
|
|
/**
|
|
|
|
|
* List of special pages, followed by parameters.
|
|
|
|
|
* If the only parameter is a string, that is the page name.
|
|
|
|
|
* Otherwise, it is an array. The format is one of:
|
|
|
|
|
** array( 'SpecialPage', name, right )
|
|
|
|
|
** array( 'IncludableSpecialPage', name, right, listed? )
|
|
|
|
|
** array( 'UnlistedSpecialPage', name, right )
|
|
|
|
|
** array( 'SpecialRedirectToSpecial', name, page to redirect to, special page param, ... )
|
|
|
|
|
*/
|
2006-06-25 08:38:17 +00:00
|
|
|
static public $mList = array(
|
2006-10-30 06:25:31 +00:00
|
|
|
'DoubleRedirects' => array( 'SpecialPage', 'DoubleRedirects' ),
|
|
|
|
|
'BrokenRedirects' => array( 'SpecialPage', 'BrokenRedirects' ),
|
|
|
|
|
'Disambiguations' => array( 'SpecialPage', 'Disambiguations' ),
|
|
|
|
|
|
|
|
|
|
'Userlogin' => array( 'SpecialPage', 'Userlogin' ),
|
|
|
|
|
'Userlogout' => array( 'UnlistedSpecialPage', 'Userlogout' ),
|
2008-01-23 19:59:35 +00:00
|
|
|
'CreateAccount' => array( 'SpecialRedirectToSpecial', 'CreateAccount', 'Userlogin', 'signup', array( 'uselang' ) ),
|
2006-10-30 06:25:31 +00:00
|
|
|
'Preferences' => array( 'SpecialPage', 'Preferences' ),
|
|
|
|
|
'Watchlist' => array( 'SpecialPage', 'Watchlist' ),
|
|
|
|
|
|
|
|
|
|
'Recentchanges' => array( 'IncludableSpecialPage', 'Recentchanges' ),
|
2007-08-22 16:25:07 +00:00
|
|
|
'Upload' => array( 'SpecialPage', 'Upload' ),
|
2006-10-30 06:25:31 +00:00
|
|
|
'Imagelist' => array( 'SpecialPage', 'Imagelist' ),
|
|
|
|
|
'Newimages' => array( 'IncludableSpecialPage', 'Newimages' ),
|
|
|
|
|
'Listusers' => array( 'SpecialPage', 'Listusers' ),
|
2008-04-10 10:10:07 +00:00
|
|
|
'Listgrouprights' => 'SpecialListGroupRights',
|
2006-10-30 06:25:31 +00:00
|
|
|
'Statistics' => array( 'SpecialPage', 'Statistics' ),
|
2008-01-14 10:23:48 +00:00
|
|
|
'Randompage' => 'Randompage',
|
2006-10-30 06:25:31 +00:00
|
|
|
'Lonelypages' => array( 'SpecialPage', 'Lonelypages' ),
|
|
|
|
|
'Uncategorizedpages' => array( 'SpecialPage', 'Uncategorizedpages' ),
|
|
|
|
|
'Uncategorizedcategories' => array( 'SpecialPage', 'Uncategorizedcategories' ),
|
|
|
|
|
'Uncategorizedimages' => array( 'SpecialPage', 'Uncategorizedimages' ),
|
2007-09-28 09:40:05 +00:00
|
|
|
'Uncategorizedtemplates' => array( 'SpecialPage', 'Uncategorizedtemplates' ),
|
2006-10-30 06:25:31 +00:00
|
|
|
'Unusedcategories' => array( 'SpecialPage', 'Unusedcategories' ),
|
|
|
|
|
'Unusedimages' => array( 'SpecialPage', 'Unusedimages' ),
|
|
|
|
|
'Wantedpages' => array( 'IncludableSpecialPage', 'Wantedpages' ),
|
|
|
|
|
'Wantedcategories' => array( 'SpecialPage', 'Wantedcategories' ),
|
|
|
|
|
'Mostlinked' => array( 'SpecialPage', 'Mostlinked' ),
|
|
|
|
|
'Mostlinkedcategories' => array( 'SpecialPage', 'Mostlinkedcategories' ),
|
2007-09-28 09:40:05 +00:00
|
|
|
'Mostlinkedtemplates' => array( 'SpecialPage', 'Mostlinkedtemplates' ),
|
2006-10-30 06:25:31 +00:00
|
|
|
'Mostcategories' => array( 'SpecialPage', 'Mostcategories' ),
|
|
|
|
|
'Mostimages' => array( 'SpecialPage', 'Mostimages' ),
|
|
|
|
|
'Mostrevisions' => array( 'SpecialPage', 'Mostrevisions' ),
|
2007-09-28 09:40:05 +00:00
|
|
|
'Fewestrevisions' => array( 'SpecialPage', 'Fewestrevisions' ),
|
2006-10-30 06:25:31 +00:00
|
|
|
'Shortpages' => array( 'SpecialPage', 'Shortpages' ),
|
|
|
|
|
'Longpages' => array( 'SpecialPage', 'Longpages' ),
|
|
|
|
|
'Newpages' => array( 'IncludableSpecialPage', 'Newpages' ),
|
|
|
|
|
'Ancientpages' => array( 'SpecialPage', 'Ancientpages' ),
|
|
|
|
|
'Deadendpages' => array( 'SpecialPage', 'Deadendpages' ),
|
2007-01-29 04:55:02 +00:00
|
|
|
'Protectedpages' => array( 'SpecialPage', 'Protectedpages' ),
|
2008-01-03 23:43:24 +00:00
|
|
|
'Protectedtitles' => array( 'SpecialPage', 'Protectedtitles' ),
|
2006-10-30 06:25:31 +00:00
|
|
|
'Allpages' => array( 'IncludableSpecialPage', 'Allpages' ),
|
|
|
|
|
'Prefixindex' => array( 'IncludableSpecialPage', 'Prefixindex' ) ,
|
|
|
|
|
'Ipblocklist' => array( 'SpecialPage', 'Ipblocklist' ),
|
|
|
|
|
'Specialpages' => array( 'UnlistedSpecialPage', 'Specialpages' ),
|
2007-03-06 13:25:56 +00:00
|
|
|
'Contributions' => array( 'SpecialPage', 'Contributions' ),
|
2006-10-30 06:25:31 +00:00
|
|
|
'Emailuser' => array( 'UnlistedSpecialPage', 'Emailuser' ),
|
2008-04-13 05:54:20 +00:00
|
|
|
'Whatlinkshere' => array( 'SpecialPage', 'Whatlinkshere' ),
|
|
|
|
|
'Recentchangeslinked' => array( 'SpecialPage', 'Recentchangeslinked' ),
|
2006-10-30 06:25:31 +00:00
|
|
|
'Movepage' => array( 'UnlistedSpecialPage', 'Movepage' ),
|
|
|
|
|
'Blockme' => array( 'UnlistedSpecialPage', 'Blockme' ),
|
2006-12-12 04:15:00 +00:00
|
|
|
'Resetpass' => array( 'UnlistedSpecialPage', 'Resetpass' ),
|
2006-12-16 19:20:44 +00:00
|
|
|
'Booksources' => 'SpecialBookSources',
|
2006-10-30 06:25:31 +00:00
|
|
|
'Categories' => array( 'SpecialPage', 'Categories' ),
|
|
|
|
|
'Export' => array( 'SpecialPage', 'Export' ),
|
|
|
|
|
'Version' => array( 'SpecialPage', 'Version' ),
|
|
|
|
|
'Allmessages' => array( 'SpecialPage', 'Allmessages' ),
|
|
|
|
|
'Log' => array( 'SpecialPage', 'Log' ),
|
|
|
|
|
'Blockip' => array( 'SpecialPage', 'Blockip', 'block' ),
|
|
|
|
|
'Undelete' => array( 'SpecialPage', 'Undelete', 'deletedhistory' ),
|
2007-11-25 09:23:26 +00:00
|
|
|
'Import' => array( 'SpecialPage', 'Import', 'import' ),
|
2006-10-30 06:25:31 +00:00
|
|
|
'Lockdb' => array( 'SpecialPage', 'Lockdb', 'siteadmin' ),
|
|
|
|
|
'Unlockdb' => array( 'SpecialPage', 'Unlockdb', 'siteadmin' ),
|
2008-01-03 23:43:24 +00:00
|
|
|
'Userrights' => 'UserrightsPage',
|
2006-10-30 06:25:31 +00:00
|
|
|
'MIMEsearch' => array( 'SpecialPage', 'MIMEsearch' ),
|
2008-03-19 16:58:56 +00:00
|
|
|
'FileDuplicateSearch' => array( 'SpecialPage', 'FileDuplicateSearch' ),
|
2006-10-30 06:25:31 +00:00
|
|
|
'Unwatchedpages' => array( 'SpecialPage', 'Unwatchedpages', 'unwatchedpages' ),
|
|
|
|
|
'Listredirects' => array( 'SpecialPage', 'Listredirects' ),
|
2007-11-25 09:23:26 +00:00
|
|
|
'Revisiondelete' => array( 'UnlistedSpecialPage', 'Revisiondelete', 'deleterevision' ),
|
2006-10-30 06:25:31 +00:00
|
|
|
'Unusedtemplates' => array( 'SpecialPage', 'Unusedtemplates' ),
|
2008-01-14 12:50:20 +00:00
|
|
|
'Randomredirect' => 'SpecialRandomredirect',
|
2007-09-28 09:40:05 +00:00
|
|
|
'Withoutinterwiki' => array( 'SpecialPage', 'Withoutinterwiki' ),
|
2008-02-01 20:05:20 +00:00
|
|
|
'Filepath' => array( 'SpecialPage', 'Filepath' ),
|
2006-10-30 06:25:31 +00:00
|
|
|
|
|
|
|
|
'Mypage' => array( 'SpecialMypage' ),
|
|
|
|
|
'Mytalk' => array( 'SpecialMytalk' ),
|
|
|
|
|
'Mycontributions' => array( 'SpecialMycontributions' ),
|
|
|
|
|
'Listadmins' => array( 'SpecialRedirectToSpecial', 'Listadmins', 'Listusers', 'sysop' ),
|
2007-11-25 09:23:26 +00:00
|
|
|
'MergeHistory' => array( 'SpecialPage', 'MergeHistory', 'mergehistory' ),
|
2007-11-21 07:35:41 +00:00
|
|
|
'Listbots' => array( 'SpecialRedirectToSpecial', 'Listbots', 'Listusers', 'bot' ),
|
|
|
|
|
);
|
2006-06-25 08:38:17 +00:00
|
|
|
|
2006-10-30 06:25:31 +00:00
|
|
|
static public $mAliases;
|
2006-06-25 08:38:17 +00:00
|
|
|
static public $mListInitialised = false;
|
2008-04-12 21:42:19 +00:00
|
|
|
/**
|
|
|
|
|
* List of special pages, followed by what subtitle they should go under
|
|
|
|
|
* at Special:SpecialPages
|
|
|
|
|
*/
|
|
|
|
|
static public $mGroupsList = array(
|
|
|
|
|
'DoubleRedirects' => 'maintenance',
|
|
|
|
|
'BrokenRedirects' => 'maintenance',
|
|
|
|
|
'Lonelypages' => 'maintenance',
|
|
|
|
|
'Uncategorizedpages' => 'maintenance',
|
|
|
|
|
'Uncategorizedcategories' => 'maintenance',
|
|
|
|
|
'Uncategorizedimages' => 'maintenance',
|
|
|
|
|
'Uncategorizedtemplates' => 'maintenance',
|
|
|
|
|
'Unusedcategories' => 'maintenance',
|
|
|
|
|
'Unusedimages' => 'maintenance',
|
|
|
|
|
'Protectedpages' => 'maintenance',
|
|
|
|
|
'Protectedtitles' => 'maintenance',
|
|
|
|
|
'Unusedtemplates' => 'maintenance',
|
|
|
|
|
'Withoutinterwiki' => 'maintenance',
|
|
|
|
|
'Longpages' => 'maintenance',
|
|
|
|
|
|
|
|
|
|
'Userlogin' => 'login',
|
|
|
|
|
'Userlogout' => 'login',
|
|
|
|
|
'CreateAccount' => 'login',
|
|
|
|
|
|
|
|
|
|
'Recentchanges' => 'changes',
|
|
|
|
|
'Recentchangeslinked' => 'changes',
|
|
|
|
|
'Watchlist' => 'changes',
|
|
|
|
|
'Newimages' => 'changes',
|
|
|
|
|
'Newpages' => 'changes',
|
|
|
|
|
'Log' => 'changes',
|
|
|
|
|
|
|
|
|
|
'Upload' => 'media',
|
|
|
|
|
'Imagelist' => 'media',
|
|
|
|
|
'MIMEsearch' => 'media',
|
|
|
|
|
'FileDuplicateSearch' => 'media',
|
|
|
|
|
'Filepath' => 'media',
|
|
|
|
|
|
|
|
|
|
'Listusers' => 'users',
|
|
|
|
|
'Listgrouprights' => 'users',
|
|
|
|
|
'Ipblocklist' => 'users',
|
|
|
|
|
'Contributions' => 'users',
|
|
|
|
|
'Emailuser' => 'users',
|
|
|
|
|
'Listadmins' => 'users',
|
|
|
|
|
'Listbots' => 'users',
|
|
|
|
|
|
|
|
|
|
'Wantedpages' => 'needy',
|
|
|
|
|
'Wantedcategories' => 'needy',
|
|
|
|
|
'Shortpages' => 'needy',
|
|
|
|
|
'Ancientpages' => 'needy',
|
|
|
|
|
'Deadendpages' => 'needy',
|
|
|
|
|
|
|
|
|
|
'Mostlinked' => 'highuse',
|
|
|
|
|
'Mostlinkedcategories' => 'highuse',
|
|
|
|
|
'Mostlinkedtemplates' => 'highuse',
|
|
|
|
|
'Mostcategories' => 'highuse',
|
|
|
|
|
'Mostimages' => 'highuse',
|
|
|
|
|
'Mostrevisions' => 'highuse',
|
|
|
|
|
|
|
|
|
|
'Userrights' => 'permissions',
|
|
|
|
|
'Blockip' => 'permissions',
|
|
|
|
|
|
|
|
|
|
'Statistics' => 'other',
|
|
|
|
|
'Fewestrevisions' => 'other',
|
|
|
|
|
'Randompage' => 'other',
|
|
|
|
|
'Disambiguations' => 'other',
|
|
|
|
|
'Specialpages' => 'other',
|
|
|
|
|
'Blockme' => 'other',
|
|
|
|
|
'Movepage' => 'other',
|
|
|
|
|
'MergeHistory' => 'other',
|
|
|
|
|
'Lockdb' => 'other',
|
|
|
|
|
'Unlockdb' => 'other',
|
|
|
|
|
'Version' => 'other',
|
|
|
|
|
'Whatlinkshere' => 'other',
|
|
|
|
|
'Booksources' => 'other',
|
|
|
|
|
'Revisiondelete' => 'other',
|
|
|
|
|
'Export' => 'other',
|
|
|
|
|
'Categories' => 'other',
|
|
|
|
|
'Undelete' => 'other',
|
|
|
|
|
'Import' => 'other',
|
|
|
|
|
'Unwatchedpages' => 'other',
|
|
|
|
|
'Randomredirect' => 'other',
|
|
|
|
|
'Allpages' => 'other',
|
|
|
|
|
'Allmessages' => 'other',
|
|
|
|
|
'Prefixindex' => 'other',
|
|
|
|
|
'Listredirects' => 'other',
|
|
|
|
|
'Preferences' => 'other',
|
|
|
|
|
'Resetpass' => 'other',
|
|
|
|
|
'Mypage' => 'other',
|
|
|
|
|
'Mytalk' => 'other',
|
|
|
|
|
'Mycontributions' => 'other',
|
|
|
|
|
);
|
2005-05-28 11:09:22 +00:00
|
|
|
|
2005-01-27 19:51:47 +00:00
|
|
|
/**#@-*/
|
2004-08-13 02:48:42 +00:00
|
|
|
|
2006-06-25 08:38:17 +00:00
|
|
|
/**
|
|
|
|
|
* Initialise the special page list
|
|
|
|
|
* This must be called before accessing SpecialPage::$mList
|
|
|
|
|
*/
|
|
|
|
|
static function initList() {
|
|
|
|
|
global $wgSpecialPages;
|
2007-08-22 16:25:07 +00:00
|
|
|
global $wgDisableCounters, $wgDisableInternalSearch, $wgEmailAuthentication;
|
2006-06-25 08:38:17 +00:00
|
|
|
|
|
|
|
|
if ( self::$mListInitialised ) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
wfProfileIn( __METHOD__ );
|
|
|
|
|
|
2006-10-30 06:25:31 +00:00
|
|
|
# Better to set this now, to avoid infinite recursion in carelessly written hooks
|
|
|
|
|
self::$mListInitialised = true;
|
|
|
|
|
|
2006-06-25 08:38:17 +00:00
|
|
|
if( !$wgDisableCounters ) {
|
|
|
|
|
self::$mList['Popularpages'] = array( 'SpecialPage', 'Popularpages' );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( !$wgDisableInternalSearch ) {
|
|
|
|
|
self::$mList['Search'] = array( 'SpecialPage', 'Search' );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if( $wgEmailAuthentication ) {
|
2007-06-08 00:52:56 +00:00
|
|
|
self::$mList['Confirmemail'] = 'EmailConfirmation';
|
2008-03-25 22:03:00 +00:00
|
|
|
self::$mList['Invalidateemail'] = 'EmailInvalidation';
|
2006-06-25 08:38:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Add extension special pages
|
|
|
|
|
self::$mList = array_merge( self::$mList, $wgSpecialPages );
|
|
|
|
|
|
|
|
|
|
# Run hooks
|
|
|
|
|
# This hook can be used to remove undesired built-in special pages
|
|
|
|
|
wfRunHooks( 'SpecialPage_initList', array( &self::$mList ) );
|
|
|
|
|
wfProfileOut( __METHOD__ );
|
|
|
|
|
}
|
2005-07-23 05:47:25 +00:00
|
|
|
|
2006-10-30 06:25:31 +00:00
|
|
|
static function initAliasList() {
|
|
|
|
|
if ( !is_null( self::$mAliases ) ) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
global $wgContLang;
|
|
|
|
|
$aliases = $wgContLang->getSpecialPageAliases();
|
|
|
|
|
$missingPages = self::$mList;
|
|
|
|
|
self::$mAliases = array();
|
|
|
|
|
foreach ( $aliases as $realName => $aliasList ) {
|
|
|
|
|
foreach ( $aliasList as $alias ) {
|
|
|
|
|
self::$mAliases[$wgContLang->caseFold( $alias )] = $realName;
|
|
|
|
|
}
|
|
|
|
|
unset( $missingPages[$realName] );
|
|
|
|
|
}
|
|
|
|
|
foreach ( $missingPages as $name => $stuff ) {
|
|
|
|
|
self::$mAliases[$wgContLang->caseFold( $name )] = $name;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Given a special page alias, return the special page name.
|
|
|
|
|
* Returns false if there is no such alias.
|
|
|
|
|
*/
|
|
|
|
|
static function resolveAlias( $alias ) {
|
|
|
|
|
global $wgContLang;
|
|
|
|
|
|
|
|
|
|
if ( !self::$mListInitialised ) self::initList();
|
|
|
|
|
if ( is_null( self::$mAliases ) ) self::initAliasList();
|
|
|
|
|
$caseFoldedAlias = $wgContLang->caseFold( $alias );
|
|
|
|
|
if ( isset( self::$mAliases[$caseFoldedAlias] ) ) {
|
|
|
|
|
return self::$mAliases[$caseFoldedAlias];
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Given a special page name with a possible subpage, return an array
|
|
|
|
|
* where the first element is the special page name and the second is the
|
|
|
|
|
* subpage.
|
|
|
|
|
*/
|
|
|
|
|
static function resolveAliasWithSubpage( $alias ) {
|
|
|
|
|
$bits = explode( '/', $alias, 2 );
|
|
|
|
|
$name = self::resolveAlias( $bits[0] );
|
|
|
|
|
if( !isset( $bits[1] ) ) { // bug 2087
|
|
|
|
|
$par = NULL;
|
|
|
|
|
} else {
|
|
|
|
|
$par = $bits[1];
|
|
|
|
|
}
|
|
|
|
|
return array( $name, $par );
|
|
|
|
|
}
|
|
|
|
|
|
2004-09-19 19:37:26 +00:00
|
|
|
/**
|
2006-06-25 08:38:17 +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
|
|
|
|
|
* an associative record to $wgSpecialPages. This avoids autoloading SpecialPage.
|
|
|
|
|
*
|
|
|
|
|
* @param mixed $page Must either be an array specifying a class name and
|
|
|
|
|
* constructor parameters, or an object. The object,
|
|
|
|
|
* when constructed, must have an execute() method which
|
|
|
|
|
* sends HTML to $wgOut.
|
2004-09-19 19:37:26 +00:00
|
|
|
* @static
|
|
|
|
|
*/
|
2006-06-25 08:38:17 +00:00
|
|
|
static function addPage( &$page ) {
|
|
|
|
|
if ( !self::$mListInitialised ) {
|
|
|
|
|
self::initList();
|
|
|
|
|
}
|
|
|
|
|
self::$mList[$page->mName] = $page;
|
2004-05-15 03:36:39 +00:00
|
|
|
}
|
2008-04-12 21:42:19 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Add a page to a certain display group for Special:SpecialPages
|
|
|
|
|
*
|
|
|
|
|
* @param mixed $page Must either be an array specifying a class name and
|
|
|
|
|
* constructor parameters, or an object.
|
|
|
|
|
* @param string $group
|
|
|
|
|
* @static
|
|
|
|
|
*/
|
|
|
|
|
static function setGroup( &$page, $group ) {
|
|
|
|
|
if ( !self::$mListInitialised ) {
|
|
|
|
|
self::initList();
|
|
|
|
|
}
|
|
|
|
|
self::$mGroupsList[$page->mName] = $group;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Add a page to a certain display group for Special:SpecialPages
|
|
|
|
|
*
|
|
|
|
|
* @param mixed $page Must either be an array specifying a class name and
|
|
|
|
|
* constructor parameters, or an object.
|
|
|
|
|
* @static
|
|
|
|
|
*/
|
|
|
|
|
static function getGroup( &$page ) {
|
|
|
|
|
if ( !self::$mListInitialised ) {
|
|
|
|
|
self::initList();
|
|
|
|
|
}
|
|
|
|
|
$group = isset(self::$mGroupsList[$page->mName]) ?
|
|
|
|
|
self::$mGroupsList[$page->mName] : 'other';
|
|
|
|
|
return $group;
|
|
|
|
|
}
|
2004-05-15 03:36:39 +00:00
|
|
|
|
2004-09-19 19:37:26 +00:00
|
|
|
/**
|
|
|
|
|
* Remove a special page from the list
|
2006-06-25 08:38:17 +00:00
|
|
|
* Formerly used to disable expensive or dangerous special pages. The
|
|
|
|
|
* preferred method is now to add a SpecialPage_initList hook.
|
|
|
|
|
*
|
2004-09-19 19:37:26 +00:00
|
|
|
* @static
|
|
|
|
|
*/
|
2006-05-30 12:38:07 +00:00
|
|
|
static function removePage( $name ) {
|
2006-06-25 08:38:17 +00:00
|
|
|
if ( !self::$mListInitialised ) {
|
|
|
|
|
self::initList();
|
|
|
|
|
}
|
|
|
|
|
unset( self::$mList[$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
|
|
|
|
|
* @param $name string: name of a special page
|
|
|
|
|
* @return boolean: true if a special page exists with this name
|
|
|
|
|
*/
|
|
|
|
|
static function exists( $name ) {
|
2007-05-27 23:39:54 +00:00
|
|
|
global $wgContLang;
|
2007-05-26 16:23:34 +00:00
|
|
|
if ( !self::$mListInitialised ) {
|
|
|
|
|
self::initList();
|
|
|
|
|
}
|
|
|
|
|
if( !self::$mAliases ) {
|
|
|
|
|
self::initAliasList();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Remove special pages inline parameters:
|
|
|
|
|
$bits = explode( '/', $name );
|
2007-05-27 23:39:54 +00:00
|
|
|
$name = $wgContLang->caseFold($bits[0]);
|
2007-05-26 16:23:34 +00:00
|
|
|
|
|
|
|
|
return
|
|
|
|
|
array_key_exists( $name, self::$mList )
|
|
|
|
|
or array_key_exists( $name, self::$mAliases )
|
|
|
|
|
;
|
|
|
|
|
}
|
|
|
|
|
|
2004-09-19 19:37:26 +00:00
|
|
|
/**
|
|
|
|
|
* Find the object with a given name and return it (or NULL)
|
|
|
|
|
* @static
|
|
|
|
|
* @param string $name
|
|
|
|
|
*/
|
2006-05-30 12:38:07 +00:00
|
|
|
static function getPage( $name ) {
|
2006-06-25 08:38:17 +00:00
|
|
|
if ( !self::$mListInitialised ) {
|
|
|
|
|
self::initList();
|
|
|
|
|
}
|
|
|
|
|
if ( array_key_exists( $name, self::$mList ) ) {
|
|
|
|
|
$rec = self::$mList[$name];
|
|
|
|
|
if ( is_string( $rec ) ) {
|
|
|
|
|
$className = $rec;
|
|
|
|
|
self::$mList[$name] = new $className;
|
|
|
|
|
} elseif ( is_array( $rec ) ) {
|
|
|
|
|
$className = array_shift( $rec );
|
|
|
|
|
self::$mList[$name] = wfCreateObject( $className, $rec );
|
|
|
|
|
}
|
|
|
|
|
return self::$mList[$name];
|
2004-05-15 03:36:39 +00:00
|
|
|
} else {
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
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.
|
2005-05-11 03:21:25 +00:00
|
|
|
*/
|
2006-10-30 06:25:31 +00:00
|
|
|
static function getPageByAlias( $alias ) {
|
|
|
|
|
$realName = self::resolveAlias( $alias );
|
|
|
|
|
if ( $realName ) {
|
|
|
|
|
return self::getPage( $realName );
|
|
|
|
|
} else {
|
|
|
|
|
return NULL;
|
2006-04-30 02:27:43 +00:00
|
|
|
}
|
2006-10-30 06:25:31 +00:00
|
|
|
}
|
2006-04-30 02:27:43 +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
|
2004-09-19 19:37:26 +00:00
|
|
|
* @static
|
|
|
|
|
*/
|
2006-08-23 13:24:16 +00:00
|
|
|
static function getRegularPages() {
|
|
|
|
|
if ( !self::$mListInitialised ) {
|
|
|
|
|
self::initList();
|
|
|
|
|
}
|
|
|
|
|
$pages = array();
|
|
|
|
|
|
|
|
|
|
foreach ( self::$mList as $name => $rec ) {
|
|
|
|
|
$page = self::getPage( $name );
|
2008-01-03 23:43:24 +00:00
|
|
|
if ( $page->isListed() && !$page->isRestricted() ) {
|
2006-08-23 13:24:16 +00:00
|
|
|
$pages[$name] = $page;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return $pages;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Return categorised listable special pages which are available
|
|
|
|
|
* for the current user, but not for everyone
|
|
|
|
|
* @static
|
|
|
|
|
*/
|
|
|
|
|
static function getRestrictedPages() {
|
|
|
|
|
global $wgUser;
|
2006-06-25 08:38:17 +00:00
|
|
|
if ( !self::$mListInitialised ) {
|
|
|
|
|
self::initList();
|
|
|
|
|
}
|
2006-07-16 13:30:08 +00:00
|
|
|
$pages = array();
|
2004-05-20 14:13:03 +00:00
|
|
|
|
2006-06-25 08:38:17 +00:00
|
|
|
foreach ( self::$mList as $name => $rec ) {
|
|
|
|
|
$page = self::getPage( $name );
|
2008-01-03 23:43:24 +00:00
|
|
|
if (
|
|
|
|
|
$page->isListed()
|
|
|
|
|
and $page->isRestricted()
|
|
|
|
|
and $page->userCanExecute( $wgUser )
|
|
|
|
|
) {
|
|
|
|
|
$pages[$name] = $page;
|
2004-05-20 14:13:03 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return $pages;
|
|
|
|
|
}
|
|
|
|
|
|
2004-09-19 19:37:26 +00:00
|
|
|
/**
|
|
|
|
|
* Execute a special page path.
|
|
|
|
|
* The path may contain parameters, e.g. Special:Name/Params
|
|
|
|
|
* 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.
|
|
|
|
|
*
|
|
|
|
|
* @param $title a title object
|
|
|
|
|
* @param $including output is being captured for use in {{special:whatever}}
|
2004-09-19 19:37:26 +00:00
|
|
|
*/
|
2006-07-10 15:41:30 +00:00
|
|
|
static function executePath( &$title, $including = false ) {
|
2006-10-30 06:25:31 +00:00
|
|
|
global $wgOut, $wgTitle, $wgRequest;
|
|
|
|
|
wfProfileIn( __METHOD__ );
|
2004-05-15 03:36:39 +00:00
|
|
|
|
2006-10-30 06:25:31 +00:00
|
|
|
# FIXME: redirects broken due to this call
|
|
|
|
|
$bits = explode( '/', $title->getDBkey(), 2 );
|
2004-05-15 03:36:39 +00:00
|
|
|
$name = $bits[0];
|
2005-05-06 05:48:57 +00:00
|
|
|
if( !isset( $bits[1] ) ) { // bug 2087
|
2004-05-15 03:36:39 +00:00
|
|
|
$par = NULL;
|
|
|
|
|
} else {
|
|
|
|
|
$par = $bits[1];
|
|
|
|
|
}
|
2006-10-30 06:25:31 +00:00
|
|
|
$page = SpecialPage::getPageByAlias( $name );
|
|
|
|
|
# Nonexistent?
|
|
|
|
|
if ( !$page ) {
|
|
|
|
|
if ( !$including ) {
|
|
|
|
|
$wgOut->setArticleRelated( false );
|
|
|
|
|
$wgOut->setRobotpolicy( 'noindex,nofollow' );
|
|
|
|
|
$wgOut->setStatusCode( 404 );
|
|
|
|
|
$wgOut->showErrorPage( 'nosuchspecialpage', 'nospecialpagetext' );
|
2005-05-11 03:21:25 +00:00
|
|
|
}
|
2006-10-30 06:25:31 +00:00
|
|
|
wfProfileOut( __METHOD__ );
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Check for redirect
|
|
|
|
|
if ( !$including ) {
|
|
|
|
|
$redirect = $page->getRedirect( $par );
|
|
|
|
|
if ( $redirect ) {
|
|
|
|
|
$query = $page->getRedirectQuery();
|
|
|
|
|
$url = $redirect->getFullUrl( $query );
|
|
|
|
|
$wgOut->redirect( $url );
|
|
|
|
|
wfProfileOut( __METHOD__ );
|
|
|
|
|
return $redirect;
|
2004-05-15 03:36:39 +00:00
|
|
|
}
|
2006-10-30 06:25:31 +00:00
|
|
|
}
|
2004-05-15 03:36:39 +00:00
|
|
|
|
2006-10-30 06:25:31 +00:00
|
|
|
# Redirect to canonical alias for GET commands
|
|
|
|
|
# Not for POST, we'd lose the post data, so it's best to just distribute
|
|
|
|
|
# the request. Such POST requests are possible for old extensions that
|
|
|
|
|
# generate self-links without being aware that their default name has
|
|
|
|
|
# changed.
|
|
|
|
|
if ( !$including && $name != $page->getLocalName() && !$wgRequest->wasPosted() ) {
|
|
|
|
|
$query = $_GET;
|
|
|
|
|
unset( $query['title'] );
|
|
|
|
|
$query = wfArrayToCGI( $query );
|
2006-12-16 17:21:15 +00:00
|
|
|
$title = $page->getTitle( $par );
|
2006-10-30 06:25:31 +00:00
|
|
|
$url = $title->getFullUrl( $query );
|
|
|
|
|
$wgOut->redirect( $url );
|
|
|
|
|
wfProfileOut( __METHOD__ );
|
|
|
|
|
return $redirect;
|
2004-05-15 03:36:39 +00:00
|
|
|
}
|
2006-10-30 06:25:31 +00:00
|
|
|
|
|
|
|
|
if ( $including && !$page->includable() ) {
|
|
|
|
|
wfProfileOut( __METHOD__ );
|
|
|
|
|
return false;
|
|
|
|
|
} elseif ( !$including ) {
|
2007-10-18 14:55:48 +00:00
|
|
|
$wgTitle = $page->getTitle();
|
2006-10-30 06:25:31 +00:00
|
|
|
}
|
|
|
|
|
$page->including( $including );
|
|
|
|
|
|
|
|
|
|
// Execute special page
|
|
|
|
|
$profName = 'Special:' . $page->getName();
|
|
|
|
|
wfProfileIn( $profName );
|
|
|
|
|
$page->execute( $par );
|
|
|
|
|
wfProfileOut( $profName );
|
|
|
|
|
wfProfileOut( __METHOD__ );
|
|
|
|
|
return true;
|
2005-05-28 11:09:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Just like executePath() except it returns the HTML instead of outputting it
|
|
|
|
|
* Returns false if there was no such special page, or a title object if it was
|
|
|
|
|
* a redirect.
|
|
|
|
|
* @static
|
|
|
|
|
*/
|
2006-05-30 12:38:07 +00:00
|
|
|
static function capturePath( &$title ) {
|
2005-05-28 11:09:22 +00:00
|
|
|
global $wgOut, $wgTitle;
|
|
|
|
|
|
|
|
|
|
$oldTitle = $wgTitle;
|
|
|
|
|
$oldOut = $wgOut;
|
|
|
|
|
$wgOut = new OutputPage;
|
2005-07-23 05:47:25 +00:00
|
|
|
|
2005-05-28 11:09:22 +00:00
|
|
|
$ret = SpecialPage::executePath( $title, true );
|
|
|
|
|
if ( $ret === true ) {
|
|
|
|
|
$ret = $wgOut->getHTML();
|
|
|
|
|
}
|
|
|
|
|
$wgTitle = $oldTitle;
|
|
|
|
|
$wgOut = $oldOut;
|
|
|
|
|
return $ret;
|
2004-05-15 03:36:39 +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
|
|
|
*
|
|
|
|
|
* @param $name
|
|
|
|
|
* @param mixed $subpage Boolean false, or string
|
|
|
|
|
*
|
|
|
|
|
* @return string
|
2006-10-30 06:25:31 +00:00
|
|
|
*/
|
|
|
|
|
static function getLocalNameFor( $name, $subpage = false ) {
|
|
|
|
|
global $wgContLang;
|
|
|
|
|
$aliases = $wgContLang->getSpecialPageAliases();
|
|
|
|
|
if ( isset( $aliases[$name][0] ) ) {
|
|
|
|
|
$name = $aliases[$name][0];
|
|
|
|
|
}
|
|
|
|
|
if ( $subpage !== false && !is_null( $subpage ) ) {
|
|
|
|
|
$name = "$name/$subpage";
|
|
|
|
|
}
|
|
|
|
|
return $name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get a localised Title object for a specified special page name
|
|
|
|
|
*/
|
|
|
|
|
static function getTitleFor( $name, $subpage = false ) {
|
|
|
|
|
$name = self::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
|
|
|
|
|
*/
|
|
|
|
|
static function getSafeTitleFor( $name, $subpage = false ) {
|
|
|
|
|
$name = self::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
|
2006-10-31 13:25:47 +00:00
|
|
|
* @return Title or null if there is no such alias
|
2006-10-30 06:25:31 +00:00
|
|
|
*/
|
|
|
|
|
static function getTitleForAlias( $alias ) {
|
|
|
|
|
$name = self::resolveAlias( $alias );
|
2006-10-31 13:25:47 +00:00
|
|
|
if ( $name ) {
|
|
|
|
|
return self::getTitleFor( $name );
|
|
|
|
|
} else {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
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()
|
|
|
|
|
*
|
|
|
|
|
* @param string $name Name of the special page, as seen in links and URLs
|
2006-07-16 12:43:15 +00:00
|
|
|
* @param string $restriction User right required, e.g. "block" or "delete"
|
2004-09-19 19:37:26 +00:00
|
|
|
* @param boolean $listed Whether the page is listed in Special:Specialpages
|
|
|
|
|
* @param string $function Function called by execute(). By default it is constructed from $name
|
|
|
|
|
* @param string $file File which is included by execute(). It is also constructed from $name by default
|
|
|
|
|
*/
|
2005-05-28 11:09:22 +00:00
|
|
|
function SpecialPage( $name = '', $restriction = '', $listed = true, $function = false, $file = 'default', $includable = false ) {
|
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;
|
2004-05-15 03:36:39 +00:00
|
|
|
if ( $function == false ) {
|
2004-09-19 19:37:26 +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' ) {
|
Prevent some unnecessary lstat system calls, generated by include or require directives.
This can be done either by:
* Using explicit full paths, using the $IP global for the installation directory full path, and then working down the tree from there.
* Using explicit full paths, using the "dirname(__FILE__)" directive to get a full directory path for the includer file.
* Occasionally removing the line altogether, and then for some files the inclusion is handled by the autoloader.
For example, if the "extensions/wikihiero/wh_main.php" file does an include or require on "wh_list.php", then PHP does the following:
* tries to open "wiki/wh_list.php", and fails.
* tries to open "wiki/includes/wh_list.php", and fails.
* tries to open "wiki/languages/wh_list.php", and fails.
* tries to open "wiki/extensions/wikihiero/wh_list.php", and succeeds.
So in this example, the first 3 calls can be prevented if PHP is told where the file is.
Testing Method: On a Linux box, run these commands to attach strace to all the apache2 processes, and log their system calls to a temporary file, then generate some activity, and then stop the strace:
-----------------------------------
rm /tmp/strace-log.txt
strace -tt -o /tmp/strace-log.txt -p `pidof apache2 | sed 's/ / -p /g'` &
php maintenance/fuzz-tester.php --keep-passed-tests --include-binary --max-runtime=3 > /tmp/strace-tests.txt
killall -9 strace
grep "No such file or directory" /tmp/strace-log.txt | sort -u
-----------------------------------
Any failed file stats will be marked with: "-1 ENOENT (No such file or directory)".
Also:
* Strict Standards: Undefined offset: 230 in includes/normal/UtfNormal.php on line 637
* Strict Standards: iconv() [<a href='function.iconv'>function.iconv</a>]: Detected an illegal character in input string in languages/Language.php on line 776
[Note: Partial only - despite adding "//IGNORE", it still seems to be possible with some
messed- up binary input to cause PHP 5.1.2's iconv() function to squeal like a stuck pig].
* Update one $fname variable (method belongs to HistoryBlobStub class).
2007-02-09 05:36:56 +00:00
|
|
|
$this->mFile = dirname(__FILE__) . "/Special{$name}.php";
|
2004-05-15 03:36:39 +00:00
|
|
|
} else {
|
|
|
|
|
$this->mFile = $file;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2005-10-12 03:36:07 +00:00
|
|
|
/**#@+
|
|
|
|
|
* Accessor
|
|
|
|
|
*
|
|
|
|
|
* @deprecated
|
|
|
|
|
*/
|
2004-05-15 03:36:39 +00:00
|
|
|
function getName() { return $this->mName; }
|
|
|
|
|
function getRestriction() { return $this->mRestriction; }
|
2005-04-24 04:16:50 +00:00
|
|
|
function getFile() { return $this->mFile; }
|
2005-10-12 03:36:07 +00:00
|
|
|
function isListed() { return $this->mListed; }
|
|
|
|
|
/**#@-*/
|
2006-01-07 13:31:29 +00:00
|
|
|
|
2005-10-12 03:36:07 +00:00
|
|
|
/**#@+
|
|
|
|
|
* Accessor and mutator
|
|
|
|
|
*/
|
|
|
|
|
function name( $x = NULL ) { return wfSetVar( $this->mName, $x ); }
|
|
|
|
|
function restrictions( $x = NULL) { return wfSetVar( $this->mRestrictions, $x ); }
|
|
|
|
|
function listed( $x = NULL) { return wfSetVar( $this->mListed, $x ); }
|
|
|
|
|
function func( $x = NULL) { return wfSetVar( $this->mFunction, $x ); }
|
|
|
|
|
function file( $x = NULL) { return wfSetVar( $this->mFile, $x ); }
|
2005-07-23 05:47:25 +00:00
|
|
|
function includable( $x = NULL ) { return wfSetVar( $this->mIncludable, $x ); }
|
2005-10-12 03:36:07 +00:00
|
|
|
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 ) ) {
|
|
|
|
|
$this->mLocalName = self::getLocalNameFor( $this->mName );
|
|
|
|
|
}
|
|
|
|
|
return $this->mLocalName;
|
|
|
|
|
}
|
|
|
|
|
|
2008-01-03 23:43:24 +00:00
|
|
|
/**
|
|
|
|
|
* Can be overridden by subclasses with more complicated permissions
|
|
|
|
|
* schemes.
|
|
|
|
|
*
|
|
|
|
|
* @return bool Should the page be displayed with the restricted-access
|
|
|
|
|
* pages?
|
|
|
|
|
*/
|
|
|
|
|
public function isRestricted() {
|
|
|
|
|
return $this->mRestriction != '';
|
|
|
|
|
}
|
|
|
|
|
|
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.
|
|
|
|
|
*
|
|
|
|
|
* @param User $user The user to check
|
|
|
|
|
* @return bool Does the user have permission to view the page?
|
2004-09-19 19:37:26 +00:00
|
|
|
*/
|
2008-01-04 01:25:13 +00:00
|
|
|
public function userCanExecute( $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() {
|
2004-05-21 00:57:17 +00:00
|
|
|
global $wgOut;
|
2005-06-19 06:25:53 +00:00
|
|
|
$wgOut->permissionRequired( $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
|
|
|
/**
|
|
|
|
|
* Sets headers - this should be called from the execute() method of all derived classes!
|
|
|
|
|
*/
|
2004-05-15 03:36:39 +00:00
|
|
|
function setHeaders() {
|
|
|
|
|
global $wgOut;
|
|
|
|
|
$wgOut->setArticleRelated( false );
|
2006-06-07 00:21:39 +00:00
|
|
|
$wgOut->setRobotPolicy( "noindex,nofollow" );
|
2004-05-15 03:36:39 +00:00
|
|
|
$wgOut->setPageTitle( $this->getDescription() );
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
*
|
|
|
|
|
* This may be overridden by subclasses.
|
2004-09-19 19:37:26 +00:00
|
|
|
*/
|
2004-05-15 03:36:39 +00:00
|
|
|
function execute( $par ) {
|
2006-03-07 01:10:39 +00:00
|
|
|
global $wgUser;
|
2004-05-15 03:36:39 +00:00
|
|
|
|
|
|
|
|
$this->setHeaders();
|
2004-08-13 02:48:42 +00:00
|
|
|
|
2004-05-15 03:36:39 +00:00
|
|
|
if ( $this->userCanExecute( $wgUser ) ) {
|
2005-08-31 20:19:01 +00:00
|
|
|
$func = $this->mFunction;
|
|
|
|
|
// only load file if the function does not exist
|
2007-11-12 07:32:17 +00:00
|
|
|
if(!is_callable($func) and $this->mFile) {
|
2004-05-15 03:36:39 +00:00
|
|
|
require_once( $this->mFile );
|
2004-08-13 02:48:42 +00:00
|
|
|
}
|
2006-10-30 06:25:31 +00:00
|
|
|
# FIXME: these hooks are broken for extensions and anything else that subclasses SpecialPage.
|
2005-12-11 03:03:34 +00:00
|
|
|
if ( wfRunHooks( 'SpecialPageExecuteBeforeHeader', array( &$this, &$par, &$func ) ) )
|
|
|
|
|
$this->outputHeader();
|
|
|
|
|
if ( ! wfRunHooks( 'SpecialPageExecuteBeforePage', array( &$this, &$par, &$func ) ) )
|
|
|
|
|
return;
|
2007-11-12 07:32:17 +00:00
|
|
|
call_user_func( $func, $par, $this );
|
2005-12-11 03:03:34 +00:00
|
|
|
if ( ! wfRunHooks( 'SpecialPageExecuteAfterPage', array( &$this, &$par, &$func ) ) )
|
|
|
|
|
return;
|
2004-05-15 03:36:39 +00:00
|
|
|
} else {
|
|
|
|
|
$this->displayRestrictionError();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2005-11-10 05:40:25 +00:00
|
|
|
function outputHeader() {
|
|
|
|
|
global $wgOut, $wgContLang;
|
|
|
|
|
|
|
|
|
|
$msg = $wgContLang->lc( $this->name() ) . '-summary';
|
2008-02-18 07:25:35 +00:00
|
|
|
$out = wfMsgNoTrans( $msg );
|
|
|
|
|
if ( ! wfEmptyMsg( $msg, $out ) and $out !== '' and ! $this->including() ) {
|
2005-11-10 05:40:25 +00:00
|
|
|
$wgOut->addWikiText( $out );
|
2008-02-18 07:25:35 +00:00
|
|
|
}
|
2005-11-10 05:40:25 +00:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2004-08-13 02:48:42 +00:00
|
|
|
# Returns the name that goes in the <h1> in the special page itself, and also the name that
|
2004-08-12 14:55:35 +00:00
|
|
|
# will be listed in Special:Specialpages
|
|
|
|
|
#
|
2004-08-13 02:48:42 +00:00
|
|
|
# Derived classes can override this, but usually it is easier to keep the default behaviour.
|
2004-08-12 14:55:35 +00:00
|
|
|
# Messages can be added at run-time, see MessageCache.php
|
2004-05-15 03:36:39 +00:00
|
|
|
function getDescription() {
|
|
|
|
|
return wfMsg( strtolower( $this->mName ) );
|
|
|
|
|
}
|
|
|
|
|
|
2004-09-19 19:37:26 +00:00
|
|
|
/**
|
|
|
|
|
* Get a self-referential title object
|
|
|
|
|
*/
|
2006-10-30 06:25:31 +00:00
|
|
|
function getTitle( $subpage = false) {
|
|
|
|
|
return self::getTitleFor( $this->mName, $subpage );
|
2004-05-15 03:36:39 +00:00
|
|
|
}
|
|
|
|
|
|
2004-09-19 19:37:26 +00:00
|
|
|
/**
|
|
|
|
|
* Set whether this page is listed in Special:Specialpages, at run-time
|
|
|
|
|
*/
|
2004-05-15 03:36:39 +00:00
|
|
|
function setListed( $listed ) {
|
|
|
|
|
return wfSetVar( $this->mListed, $listed );
|
|
|
|
|
}
|
2005-05-28 11:09:22 +00:00
|
|
|
|
2006-10-30 06:25:31 +00:00
|
|
|
/**
|
|
|
|
|
* If the special page is a redirect, then get the Title object it redirects to.
|
|
|
|
|
* False otherwise.
|
|
|
|
|
*/
|
2006-12-14 20:34:07 +00:00
|
|
|
function getRedirect( $subpage ) {
|
2006-10-30 06:25:31 +00:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Return part of the request string for a special redirect page
|
|
|
|
|
* This allows passing, e.g. action=history to Special:Mypage, etc.
|
|
|
|
|
*
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
|
|
|
|
function getRedirectQuery() {
|
|
|
|
|
global $wgRequest;
|
|
|
|
|
$params = array();
|
|
|
|
|
foreach( $this->mAllowedRedirectParams as $arg ) {
|
|
|
|
|
if( $val = $wgRequest->getVal( $arg, false ) )
|
|
|
|
|
$params[] = $arg . '=' . $val;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return count( $params ) ? implode( '&', $params ) : false;
|
|
|
|
|
}
|
2004-05-15 03:36:39 +00:00
|
|
|
}
|
|
|
|
|
|
2004-09-02 23:28:24 +00:00
|
|
|
/**
|
|
|
|
|
* Shortcut to construct a special page which is unlisted by default
|
2007-04-20 08:55:14 +00:00
|
|
|
* @addtogroup SpecialPage
|
2004-09-02 23:28:24 +00:00
|
|
|
*/
|
2004-05-15 03:36:39 +00:00
|
|
|
class UnlistedSpecialPage extends SpecialPage
|
|
|
|
|
{
|
2004-09-19 19:37:26 +00:00
|
|
|
function UnlistedSpecialPage( $name, $restriction = '', $function = false, $file = 'default' ) {
|
2004-05-15 03:36:39 +00:00
|
|
|
SpecialPage::SpecialPage( $name, $restriction, false, $function, $file );
|
|
|
|
|
}
|
|
|
|
|
}
|
2005-05-28 11:09:22 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Shortcut to construct an includable special page
|
2007-04-20 08:55:14 +00:00
|
|
|
* @addtogroup SpecialPage
|
2005-05-28 11:09:22 +00:00
|
|
|
*/
|
|
|
|
|
class IncludableSpecialPage extends SpecialPage
|
|
|
|
|
{
|
|
|
|
|
function IncludableSpecialPage( $name, $restriction = '', $listed = true, $function = false, $file = 'default' ) {
|
|
|
|
|
SpecialPage::SpecialPage( $name, $restriction, $listed, $function, $file, true );
|
|
|
|
|
}
|
|
|
|
|
}
|
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.
|
2007-04-20 08:55:14 +00:00
|
|
|
* @addtogroup SpecialPage
|
|
|
|
|
*/
|
2006-10-30 06:25:31 +00:00
|
|
|
class SpecialRedirectToSpecial extends UnlistedSpecialPage {
|
|
|
|
|
var $redirName, $redirSubpage;
|
|
|
|
|
|
|
|
|
|
function __construct( $name, $redirName, $redirSubpage = false, $redirectParams = array() ) {
|
|
|
|
|
parent::__construct( $name );
|
|
|
|
|
$this->redirName = $redirName;
|
|
|
|
|
$this->redirSubpage = $redirSubpage;
|
|
|
|
|
$this->mAllowedRedirectParams = $redirectParams;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getRedirect( $subpage ) {
|
|
|
|
|
if ( $this->redirSubpage === false ) {
|
|
|
|
|
return SpecialPage::getTitleFor( $this->redirName, $subpage );
|
|
|
|
|
} else {
|
|
|
|
|
return SpecialPage::getTitleFor( $this->redirName, $this->redirSubpage );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2007-04-21 12:42:27 +00:00
|
|
|
/** SpecialMypage, SpecialMytalk and SpecialMycontributions special pages
|
|
|
|
|
* 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.
|
2007-04-20 08:55:14 +00:00
|
|
|
* @addtogroup SpecialPage
|
|
|
|
|
*/
|
2006-10-30 06:25:31 +00:00
|
|
|
class SpecialMypage extends UnlistedSpecialPage {
|
|
|
|
|
function __construct() {
|
|
|
|
|
parent::__construct( 'Mypage' );
|
2008-01-22 22:35:51 +00:00
|
|
|
$this->mAllowedRedirectParams = array( 'action' , 'preload' , 'editintro', 'section' );
|
2006-10-30 06:25:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getRedirect( $subpage ) {
|
|
|
|
|
global $wgUser;
|
|
|
|
|
if ( strval( $subpage ) !== '' ) {
|
|
|
|
|
return Title::makeTitle( NS_USER, $wgUser->getName() . '/' . $subpage );
|
|
|
|
|
} else {
|
|
|
|
|
return Title::makeTitle( NS_USER, $wgUser->getName() );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
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.
|
2007-04-20 08:55:14 +00:00
|
|
|
* @addtogroup SpecialPage
|
|
|
|
|
*/
|
2006-10-30 06:25:31 +00:00
|
|
|
class SpecialMytalk extends UnlistedSpecialPage {
|
|
|
|
|
function __construct() {
|
|
|
|
|
parent::__construct( 'Mytalk' );
|
2008-01-22 22:35:51 +00:00
|
|
|
$this->mAllowedRedirectParams = array( 'action' , 'preload' , 'editintro', 'section' );
|
2006-10-30 06:25:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getRedirect( $subpage ) {
|
|
|
|
|
global $wgUser;
|
|
|
|
|
if ( strval( $subpage ) !== '' ) {
|
|
|
|
|
return Title::makeTitle( NS_USER_TALK, $wgUser->getName() . '/' . $subpage );
|
|
|
|
|
} else {
|
|
|
|
|
return Title::makeTitle( NS_USER_TALK, $wgUser->getName() );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
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.
|
2007-04-20 08:55:14 +00:00
|
|
|
* @addtogroup SpecialPage
|
|
|
|
|
*/
|
2006-10-30 06:25:31 +00:00
|
|
|
class SpecialMycontributions extends UnlistedSpecialPage {
|
|
|
|
|
function __construct() {
|
|
|
|
|
parent::__construct( 'Mycontributions' );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function getRedirect( $subpage ) {
|
|
|
|
|
global $wgUser;
|
|
|
|
|
return SpecialPage::getTitleFor( 'Contributions', $wgUser->getName() );
|
|
|
|
|
}
|
|
|
|
|
}
|