1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
|
<?php
/**
* SpecialPage: handling special pages and lists thereof
* $wgSpecialPages is a list of all SpecialPage objects. These objects are
* either instances of SpecialPage or a sub-class thereof. They 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 special page at run-time, use SpecialPage::addPage().
* DO NOT manipulate this array at run-time.
*
* @package MediaWiki
*/
/**
*
*/
global $wgSpecialPages;
/**
* @access private
*/
$wgSpecialPages = array(
'DoubleRedirects' => new UnlistedSpecialPage ( 'DoubleRedirects' ),
'BrokenRedirects' => new UnlistedSpecialPage ( 'BrokenRedirects' ),
'Disambiguations' => new UnlistedSpecialPage ( 'Disambiguations' ),
'Userlogin' => new SpecialPage( 'Userlogin' ),
'Userlogout' => new UnlistedSpecialPage( 'Userlogout' ),
'Preferences' => new SpecialPage( 'Preferences' ),
'Watchlist' => new SpecialPage( 'Watchlist' ),
'Recentchanges' => new SpecialPage( 'Recentchanges' ),
'Upload' => new SpecialPage( 'Upload' ),
'Imagelist' => new SpecialPage( 'Imagelist' ),
'Newimages' => new SpecialPage( 'Newimages' ),
'Listusers' => new SpecialPage( 'Listusers' ),
'Listadmins' => new UnlistedSpecialPage( 'Listadmins' ),
'Statistics' => new SpecialPage( 'Statistics' ),
'Randompage' => new SpecialPage( 'Randompage' ),
'Lonelypages' => new SpecialPage( 'Lonelypages' ),
'Uncategorizedpages'=> new SpecialPage( 'Uncategorizedpages' ),
'Uncategorizedcategories'=> new SpecialPage( 'Uncategorizedcategories' ),
'Unusedimages' => new SpecialPage( 'Unusedimages' )
);
global $wgDisableCounters;
if( !$wgDisableCounters ) {
$wgSpecialPages['Popularpages'] = new SpecialPage( 'Popularpages' );
}
global $wgUseData ;
if ( $wgUseData ) {
$wgSpecialPages['Data'] = new SpecialPage( 'Data' );
}
global $wgDisableInternalSearch;
if( !$wgDisableInternalSearch ) {
$wgSpecialPages['Search'] = new UnlistedSpecialPage( 'Search' );
}
$wgSpecialPages = array_merge($wgSpecialPages, array (
'Wantedpages' => new SpecialPage( 'Wantedpages' ),
'Shortpages' => new SpecialPage( 'Shortpages' ),
'Longpages' => new SpecialPage( 'Longpages' ),
'Newpages' => new SpecialPage( 'Newpages' ),
'Ancientpages' => new SpecialPage( 'Ancientpages' ),
'Deadendpages' => new SpecialPage( 'Deadendpages' ),
'Allpages' => new SpecialPage( 'Allpages' ),
'Ipblocklist' => new SpecialPage( 'Ipblocklist' ),
'Maintenance' => new SpecialPage( 'Maintenance' ),
'Specialpages' => new UnlistedSpecialPage( 'Specialpages' ),
'Contributions' => new UnlistedSpecialPage( 'Contributions' ),
'Emailuser' => new UnlistedSpecialPage( 'Emailuser' ),
'Whatlinkshere' => new UnlistedSpecialPage( 'Whatlinkshere' ),
'Recentchangeslinked' => new UnlistedSpecialPage( 'Recentchangeslinked' ),
'Movepage' => new UnlistedSpecialPage( 'Movepage' ),
'Blockme' => new UnlistedSpecialPage( 'Blockme' ),
'Geo' => new UnlistedSpecialPage( 'Geo' ),
'Validate' => new UnlistedSpecialPage( 'Validate' ),
'Booksources' => new SpecialPage( 'Booksources' ),
'Categories' => new SpecialPage( 'Categories' ),
'Export' => new SpecialPage( 'Export' ),
'Version' => new SpecialPage( 'Version' ),
'Allmessages' => new SpecialPage( 'Allmessages' ),
'Log' => new SpecialPage( 'Log' ),
'Blockip' => new SpecialPage( 'Blockip', 'block' ),
'Asksql' => new SpecialPage( 'Asksql', 'asksql' ),
'Undelete' => new SpecialPage( 'Undelete', 'delete' ),
// Makesysop is obsolete, replaced by Special:Userlevels [av]
# 'Makesysop' => new SpecialPage( 'Makesysop', 'userrights' ),
# Special:Import is half-written
# "Import" => new SpecialPage( "Import", "sysop" ),
'Lockdb' => new SpecialPage( 'Lockdb', 'siteadmin' ),
'Unlockdb' => new SpecialPage( 'Unlockdb', 'siteadmin' ),
'Sitesettings' => new SpecialPage( 'Sitesettings', 'siteadmin' ),
'Userlevels' => new SpecialPage( 'Userlevels', 'userrights' ),
'Grouplevels' => new SpecialPage( 'Grouplevels', 'grouprights' ),
));
/**
* Parent special page class, also static functions for handling the special
* page list
* @package MediaWiki
*/
class SpecialPage
{
/**#@+
* @access private
*/
/**
* The name of the class, used in the URL.
* Also used for the default <h1> heading, @see getDescription()
*/
var $mName;
/**
* Minimum user level required to access this page, or "" for anyone.
* Also used to categorise the pages in Special:Specialpages
*/
var $mRestriction;
/**
* Listed in Special:Specialpages?
*/
var $mListed;
/**
* Function name called by the default execute()
*/
var $mFunction;
/**
* File which needs to be included before the function above can be called
*/
var $mFile;
/**#@- */
/**
* Add a page to the list of valid special pages
* $obj->execute() must send HTML to $wgOut then return
* Use this for a special page extension
* @static
*/
function addPage( &$obj ) {
global $wgSpecialPages;
$wgSpecialPages[$obj->mName] = $obj;
}
/**
* Remove a special page from the list
* Occasionally used to disable expensive or dangerous special pages
* @static
*/
function removePage( $name ) {
global $wgSpecialPages;
unset( $wgSpecialPages[$name] );
}
/**
* Find the object with a given name and return it (or NULL)
* @static
* @param string $name
*/
function &getPage( $name ) {
global $wgSpecialPages;
if ( array_key_exists( $name, $wgSpecialPages ) ) {
return $wgSpecialPages[$name];
} else {
return NULL;
}
}
/**
* Return categorised listable special pages
* Returns a 2d array where the first index is the restriction name
* @static
*/
function getPages() {
global $wgSpecialPages;
$pages = array(
'' => array(),
'sysop' => array(),
'developer' => array()
);
foreach ( $wgSpecialPages as $name => $page ) {
if ( $page->isListed() ) {
$pages[$page->getRestriction()][$page->getName()] =& $wgSpecialPages[$name];
}
}
return $pages;
}
/**
* 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
*
* @param $title should be a title object
*/
function executePath( &$title ) {
global $wgSpecialPages, $wgOut, $wgTitle;
$bits = split( "/", $title->getDBkey(), 2 );
$name = $bits[0];
if( empty( $bits[1] ) ) {
$par = NULL;
} else {
$par = $bits[1];
}
$page =& SpecialPage::getPage( $name );
if ( is_null( $page ) ) {
$wgOut->setArticleRelated( false );
$wgOut->setRobotpolicy( "noindex,follow" );
$wgOut->errorpage( "nosuchspecialpage", "nospecialpagetext" );
} else {
if($par !== NULL) {
$wgTitle = Title::makeTitle( NS_SPECIAL, $name );
} else {
$wgTitle = $title;
}
$page->execute( $par );
}
}
/**
* 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
* @param string $restriction Minimum user level required, e.g. "sysop" or "developer".
* @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
*/
function SpecialPage( $name = '', $restriction = '', $listed = true, $function = false, $file = 'default' ) {
$this->mName = $name;
$this->mRestriction = $restriction;
$this->mListed = $listed;
if ( $function == false ) {
$this->mFunction = 'wfSpecial'.$name;
} else {
$this->mFunction = $function;
}
if ( $file === 'default' ) {
$this->mFile = "Special{$name}.php";
} else {
$this->mFile = $file;
}
}
# Accessor functions, see the descriptions of the associated variables above
function getName() { return $this->mName; }
function getRestriction() { return $this->mRestriction; }
function isListed() { return $this->mListed; }
/**
* Checks if the given user (identified by an object) can execute this
* special page (as defined by $mRestriction)
*/
function userCanExecute( &$user ) {
if ( $this->mRestriction == "" ) {
return true;
} else {
if ( in_array( $this->mRestriction, $user->getRights() ) ) {
return true;
} else {
return false;
}
}
}
/**
* Output an error message telling the user what access level they have to have
*/
function displayRestrictionError() {
global $wgOut;
if ( $this->mRestriction == "developer" ) {
$wgOut->developerRequired();
} else {
$wgOut->sysopRequired();
}
}
/**
* Sets headers - this should be called from the execute() method of all derived classes!
*/
function setHeaders() {
global $wgOut;
$wgOut->setArticleRelated( false );
$wgOut->setRobotPolicy( "noindex,follow" );
$wgOut->setPageTitle( $this->getDescription() );
}
/**
* Default execute method
* Checks user permissions, calls the function given in mFunction
*/
function execute( $par ) {
global $wgUser, $wgOut, $wgTitle;
$this->setHeaders();
if ( $this->userCanExecute( $wgUser ) ) {
if ( $this->mFile ) {
require_once( $this->mFile );
}
$func = $this->mFunction;
$func( $par );
} else {
$this->displayRestrictionError();
}
}
# 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
function getDescription() {
return wfMsg( strtolower( $this->mName ) );
}
/**
* Get a self-referential title object
*/
function getTitle() {
return Title::makeTitle( NS_SPECIAL, $this->mName );
}
/**
* Set whether this page is listed in Special:Specialpages, at run-time
*/
function setListed( $listed ) {
return wfSetVar( $this->mListed, $listed );
}
}
/**
* Shortcut to construct a special page which is unlisted by default
* @package MediaWiki
*/
class UnlistedSpecialPage extends SpecialPage
{
function UnlistedSpecialPage( $name, $restriction = '', $function = false, $file = 'default' ) {
SpecialPage::SpecialPage( $name, $restriction, false, $function, $file );
}
}
|