SpecialPage: Remove wfSpecial* call syntax
[lhc/web/wiklou.git] / includes / specialpage / SpecialPage.php
1 <?php
2 /**
3 * Parent class for all special pages.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 * @ingroup SpecialPage
22 */
23
24 /**
25 * Parent class for all special pages.
26 *
27 * Includes some static functions for handling the special page list deprecated
28 * in favor of SpecialPageFactory.
29 *
30 * @todo Turn this into a real ContextSource
31 * @ingroup SpecialPage
32 */
33 class SpecialPage {
34 // The canonical name of this special page
35 // Also used for the default <h1> heading, @see getDescription()
36 protected $mName;
37
38 // The local name of this special page
39 private $mLocalName;
40
41 // Minimum user level required to access this page, or "" for anyone.
42 // Also used to categorise the pages in Special:Specialpages
43 private $mRestriction;
44
45 // Listed in Special:Specialpages?
46 private $mListed;
47
48 // Whether or not this special page is being included from an article
49 protected $mIncluding;
50
51 // Whether the special page can be included in an article
52 protected $mIncludable;
53
54 /**
55 * Current request context
56 * @var IContextSource
57 */
58 protected $mContext;
59
60 /**
61 * Get a localised Title object for a specified special page name
62 *
63 * @param string $name
64 * @param string|bool $subpage Subpage string, or false to not use a subpage
65 * @param string $fragment The link fragment (after the "#")
66 * @return Title
67 * @throws MWException
68 */
69 public static function getTitleFor( $name, $subpage = false, $fragment = '' ) {
70 $name = SpecialPageFactory::getLocalNameFor( $name, $subpage );
71
72 return Title::makeTitle( NS_SPECIAL, $name, $fragment );
73 }
74
75 /**
76 * Get a localised Title object for a page name with a possibly unvalidated subpage
77 *
78 * @param string $name
79 * @param string|bool $subpage Subpage string, or false to not use a subpage
80 * @return Title|null Title object or null if the page doesn't exist
81 */
82 public static function getSafeTitleFor( $name, $subpage = false ) {
83 $name = SpecialPageFactory::getLocalNameFor( $name, $subpage );
84 if ( $name ) {
85 return Title::makeTitleSafe( NS_SPECIAL, $name );
86 } else {
87 return null;
88 }
89 }
90
91 /**
92 * Default constructor for special pages
93 * Derivative classes should call this from their constructor
94 * Note that if the user does not have the required level, an error message will
95 * be displayed by the default execute() method, without the global function ever
96 * being called.
97 *
98 * If you override execute(), you can recover the default behavior with userCanExecute()
99 * and displayRestrictionError()
100 *
101 * @param string $name Name of the special page, as seen in links and URLs
102 * @param string $restriction User right required, e.g. "block" or "delete"
103 * @param bool $listed Whether the page is listed in Special:Specialpages
104 * @param callable|bool $function unused
105 * @param string $file unused
106 * @param bool $includable Whether the page can be included in normal pages
107 */
108 public function __construct(
109 $name = '', $restriction = '', $listed = true,
110 $function = false, $file = '', $includable = false
111 ) {
112 $this->mName = $name;
113 $this->mRestriction = $restriction;
114 $this->mListed = $listed;
115 $this->mIncludable = $includable;
116 }
117
118 /**
119 * Get the name of this Special Page.
120 * @return string
121 */
122 function getName() {
123 return $this->mName;
124 }
125
126 /**
127 * Get the permission that a user must have to execute this page
128 * @return string
129 */
130 function getRestriction() {
131 return $this->mRestriction;
132 }
133
134 /**
135 * Get the file which will be included by SpecialPage::execute() if your extension is
136 * still stuck in the past and hasn't overridden the execute() method. No modern code
137 * should want or need to know this.
138 * @return string
139 * @deprecated since 1.18
140 */
141 function getFile() {
142 wfDeprecated( __METHOD__, '1.18' );
143
144 return $this->mFile;
145 }
146
147 // @todo FIXME: Decide which syntax to use for this, and stick to it
148 /**
149 * Whether this special page is listed in Special:SpecialPages
150 * @since r3583 (v1.3)
151 * @return bool
152 */
153 function isListed() {
154 return $this->mListed;
155 }
156
157 /**
158 * Set whether this page is listed in Special:Specialpages, at run-time
159 * @since 1.3
160 * @param bool $listed
161 * @return bool
162 */
163 function setListed( $listed ) {
164 return wfSetVar( $this->mListed, $listed );
165 }
166
167 /**
168 * Get or set whether this special page is listed in Special:SpecialPages
169 * @since 1.6
170 * @param bool $x
171 * @return bool
172 */
173 function listed( $x = null ) {
174 return wfSetVar( $this->mListed, $x );
175 }
176
177 /**
178 * Whether it's allowed to transclude the special page via {{Special:Foo/params}}
179 * @return bool
180 */
181 public function isIncludable() {
182 return $this->mIncludable;
183 }
184
185 /**
186 * Whether the special page is being evaluated via transclusion
187 * @param bool $x
188 * @return bool
189 */
190 function including( $x = null ) {
191 return wfSetVar( $this->mIncluding, $x );
192 }
193
194 /**
195 * Get the localised name of the special page
196 * @return string
197 */
198 function getLocalName() {
199 if ( !isset( $this->mLocalName ) ) {
200 $this->mLocalName = SpecialPageFactory::getLocalNameFor( $this->mName );
201 }
202
203 return $this->mLocalName;
204 }
205
206 /**
207 * Is this page expensive (for some definition of expensive)?
208 * Expensive pages are disabled or cached in miser mode. Originally used
209 * (and still overridden) by QueryPage and subclasses, moved here so that
210 * Special:SpecialPages can safely call it for all special pages.
211 *
212 * @return bool
213 */
214 public function isExpensive() {
215 return false;
216 }
217
218 /**
219 * Is this page cached?
220 * Expensive pages are cached or disabled in miser mode.
221 * Used by QueryPage and subclasses, moved here so that
222 * Special:SpecialPages can safely call it for all special pages.
223 *
224 * @return bool
225 * @since 1.21
226 */
227 public function isCached() {
228 return false;
229 }
230
231 /**
232 * Can be overridden by subclasses with more complicated permissions
233 * schemes.
234 *
235 * @return bool Should the page be displayed with the restricted-access
236 * pages?
237 */
238 public function isRestricted() {
239 // DWIM: If anons can do something, then it is not restricted
240 return $this->mRestriction != '' && !User::groupHasPermission( '*', $this->mRestriction );
241 }
242
243 /**
244 * Checks if the given user (identified by an object) can execute this
245 * special page (as defined by $mRestriction). Can be overridden by sub-
246 * classes with more complicated permissions schemes.
247 *
248 * @param User $user The user to check
249 * @return bool Does the user have permission to view the page?
250 */
251 public function userCanExecute( User $user ) {
252 return $user->isAllowed( $this->mRestriction );
253 }
254
255 /**
256 * Output an error message telling the user what access level they have to have
257 * @throws PermissionsError
258 */
259 function displayRestrictionError() {
260 throw new PermissionsError( $this->mRestriction );
261 }
262
263 /**
264 * Checks if userCanExecute, and if not throws a PermissionsError
265 *
266 * @since 1.19
267 * @return void
268 * @throws PermissionsError
269 */
270 public function checkPermissions() {
271 if ( !$this->userCanExecute( $this->getUser() ) ) {
272 $this->displayRestrictionError();
273 }
274 }
275
276 /**
277 * If the wiki is currently in readonly mode, throws a ReadOnlyError
278 *
279 * @since 1.19
280 * @return void
281 * @throws ReadOnlyError
282 */
283 public function checkReadOnly() {
284 if ( wfReadOnly() ) {
285 throw new ReadOnlyError;
286 }
287 }
288
289 /**
290 * If the user is not logged in, throws UserNotLoggedIn error.
291 *
292 * Default error message includes a link to Special:Userlogin with properly set 'returnto' query
293 * parameter.
294 *
295 * @since 1.23
296 * @param string|Message $reasonMsg [optional] Passed on to UserNotLoggedIn constructor. Strings
297 * will be used as message keys. If a string is given, the message will also receive a
298 * formatted login link (generated using the 'loginreqlink' message) as first parameter. If a
299 * Message is given, it will be passed on verbatim.
300 * @param string|Message $titleMsg [optional] Passed on to UserNotLoggedIn constructor. Strings
301 * will be used as message keys.
302 * @throws UserNotLoggedIn
303 */
304 public function requireLogin( $reasonMsg = null, $titleMsg = null ) {
305 if ( $this->getUser()->isAnon() ) {
306 // Use default messages if not given or explicit null passed
307 if ( !$reasonMsg ) {
308 $reasonMsg = 'exception-nologin-text-manual';
309 }
310 if ( !$titleMsg ) {
311 $titleMsg = 'exception-nologin';
312 }
313
314 // Convert to Messages with current context
315 if ( is_string( $reasonMsg ) ) {
316 $loginreqlink = Linker::linkKnown(
317 SpecialPage::getTitleFor( 'Userlogin' ),
318 $this->msg( 'loginreqlink' )->escaped(),
319 array(),
320 array( 'returnto' => $this->getPageTitle()->getPrefixedText() )
321 );
322 $reasonMsg = $this->msg( $reasonMsg )->rawParams( $loginreqlink );
323 }
324 if ( is_string( $titleMsg ) ) {
325 $titleMsg = $this->msg( $titleMsg );
326 }
327
328 throw new UserNotLoggedIn( $reasonMsg, $titleMsg );
329 }
330 }
331
332 /**
333 * Sets headers - this should be called from the execute() method of all derived classes!
334 */
335 function setHeaders() {
336 $out = $this->getOutput();
337 $out->setArticleRelated( false );
338 $out->setRobotPolicy( $this->getRobotPolicy() );
339 $out->setPageTitle( $this->getDescription() );
340 }
341
342 /**
343 * Entry point.
344 *
345 * @since 1.20
346 *
347 * @param string|null $subPage
348 */
349 final public function run( $subPage ) {
350 /**
351 * Gets called before @see SpecialPage::execute.
352 *
353 * @since 1.20
354 *
355 * @param SpecialPage $this
356 * @param string|null $subPage
357 */
358 wfRunHooks( 'SpecialPageBeforeExecute', array( $this, $subPage ) );
359
360 $this->beforeExecute( $subPage );
361 $this->execute( $subPage );
362 $this->afterExecute( $subPage );
363
364 /**
365 * Gets called after @see SpecialPage::execute.
366 *
367 * @since 1.20
368 *
369 * @param SpecialPage $this
370 * @param string|null $subPage
371 */
372 wfRunHooks( 'SpecialPageAfterExecute', array( $this, $subPage ) );
373 }
374
375 /**
376 * Gets called before @see SpecialPage::execute.
377 *
378 * @since 1.20
379 *
380 * @param string|null $subPage
381 */
382 protected function beforeExecute( $subPage ) {
383 // No-op
384 }
385
386 /**
387 * Gets called after @see SpecialPage::execute.
388 *
389 * @since 1.20
390 *
391 * @param string|null $subPage
392 */
393 protected function afterExecute( $subPage ) {
394 // No-op
395 }
396
397 /**
398 * Default execute method
399 * Checks user permissions
400 *
401 * This must be overridden by subclasses; it will be made abstract in a future version
402 *
403 * @param string|null $subPage
404 */
405 public function execute( $subPage ) {
406 $this->setHeaders();
407 $this->checkPermissions();
408 $this->outputHeader();
409 }
410
411 /**
412 * Outputs a summary message on top of special pages
413 * Per default the message key is the canonical name of the special page
414 * May be overridden, i.e. by extensions to stick with the naming conventions
415 * for message keys: 'extensionname-xxx'
416 *
417 * @param string $summaryMessageKey Message key of the summary
418 */
419 function outputHeader( $summaryMessageKey = '' ) {
420 global $wgContLang;
421
422 if ( $summaryMessageKey == '' ) {
423 $msg = $wgContLang->lc( $this->getName() ) . '-summary';
424 } else {
425 $msg = $summaryMessageKey;
426 }
427 if ( !$this->msg( $msg )->isDisabled() && !$this->including() ) {
428 $this->getOutput()->wrapWikiMsg(
429 "<div class='mw-specialpage-summary'>\n$1\n</div>", $msg );
430 }
431 }
432
433 /**
434 * Returns the name that goes in the \<h1\> in the special page itself, and
435 * also the name that will be listed in Special:Specialpages
436 *
437 * Derived classes can override this, but usually it is easier to keep the
438 * default behavior.
439 *
440 * @return string
441 */
442 function getDescription() {
443 return $this->msg( strtolower( $this->mName ) )->text();
444 }
445
446 /**
447 * Get a self-referential title object
448 *
449 * @param string|bool $subpage
450 * @return Title
451 * @deprecated since 1.23, use SpecialPage::getPageTitle
452 */
453 function getTitle( $subpage = false ) {
454 return $this->getPageTitle( $subpage );
455 }
456
457 /**
458 * Get a self-referential title object
459 *
460 * @param string|bool $subpage
461 * @return Title
462 * @since 1.23
463 */
464 function getPageTitle( $subpage = false ) {
465 return self::getTitleFor( $this->mName, $subpage );
466 }
467
468 /**
469 * Sets the context this SpecialPage is executed in
470 *
471 * @param IContextSource $context
472 * @since 1.18
473 */
474 public function setContext( $context ) {
475 $this->mContext = $context;
476 }
477
478 /**
479 * Gets the context this SpecialPage is executed in
480 *
481 * @return IContextSource|RequestContext
482 * @since 1.18
483 */
484 public function getContext() {
485 if ( $this->mContext instanceof IContextSource ) {
486 return $this->mContext;
487 } else {
488 wfDebug( __METHOD__ . " called and \$mContext is null. " .
489 "Return RequestContext::getMain(); for sanity\n" );
490
491 return RequestContext::getMain();
492 }
493 }
494
495 /**
496 * Get the WebRequest being used for this instance
497 *
498 * @return WebRequest
499 * @since 1.18
500 */
501 public function getRequest() {
502 return $this->getContext()->getRequest();
503 }
504
505 /**
506 * Get the OutputPage being used for this instance
507 *
508 * @return OutputPage
509 * @since 1.18
510 */
511 public function getOutput() {
512 return $this->getContext()->getOutput();
513 }
514
515 /**
516 * Shortcut to get the User executing this instance
517 *
518 * @return User
519 * @since 1.18
520 */
521 public function getUser() {
522 return $this->getContext()->getUser();
523 }
524
525 /**
526 * Shortcut to get the skin being used for this instance
527 *
528 * @return Skin
529 * @since 1.18
530 */
531 public function getSkin() {
532 return $this->getContext()->getSkin();
533 }
534
535 /**
536 * Shortcut to get user's language
537 *
538 * @deprecated since 1.19 Use getLanguage instead
539 * @return Language
540 * @since 1.18
541 */
542 public function getLang() {
543 wfDeprecated( __METHOD__, '1.19' );
544
545 return $this->getLanguage();
546 }
547
548 /**
549 * Shortcut to get user's language
550 *
551 * @return Language
552 * @since 1.19
553 */
554 public function getLanguage() {
555 return $this->getContext()->getLanguage();
556 }
557
558 /**
559 * Shortcut to get main config object
560 * @return Config
561 * @since 1.24
562 */
563 public function getConfig() {
564 return $this->getContext()->getConfig();
565 }
566
567 /**
568 * Return the full title, including $par
569 *
570 * @return Title
571 * @since 1.18
572 */
573 public function getFullTitle() {
574 return $this->getContext()->getTitle();
575 }
576
577 /**
578 * Return the robot policy. Derived classes that override this can change
579 * the robot policy set by setHeaders() from the default 'noindex,nofollow'.
580 *
581 * @return string
582 * @since 1.23
583 */
584 protected function getRobotPolicy() {
585 return 'noindex,nofollow';
586 }
587
588 /**
589 * Wrapper around wfMessage that sets the current context.
590 *
591 * @return Message
592 * @see wfMessage
593 */
594 public function msg( /* $args */ ) {
595 $message = call_user_func_array(
596 array( $this->getContext(), 'msg' ),
597 func_get_args()
598 );
599 // RequestContext passes context to wfMessage, and the language is set from
600 // the context, but setting the language for Message class removes the
601 // interface message status, which breaks for example usernameless gender
602 // invocations. Restore the flag when not including special page in content.
603 if ( $this->including() ) {
604 $message->setInterfaceMessageFlag( false );
605 }
606
607 return $message;
608 }
609
610 /**
611 * Adds RSS/atom links
612 *
613 * @param array $params
614 */
615 protected function addFeedLinks( $params ) {
616 global $wgFeedClasses;
617
618 $feedTemplate = wfScript( 'api' );
619
620 foreach ( $wgFeedClasses as $format => $class ) {
621 $theseParams = $params + array( 'feedformat' => $format );
622 $url = wfAppendQuery( $feedTemplate, $theseParams );
623 $this->getOutput()->addFeedLink( $format, $url );
624 }
625 }
626
627 /**
628 * Get the group that the special page belongs in on Special:SpecialPage
629 * Use this method, instead of getGroupName to allow customization
630 * of the group name from the wiki side
631 *
632 * @return string Group of this special page
633 * @since 1.21
634 */
635 public function getFinalGroupName() {
636 global $wgSpecialPageGroups;
637 $name = $this->getName();
638
639 // Allow overbidding the group from the wiki side
640 $msg = $this->msg( 'specialpages-specialpagegroup-' . strtolower( $name ) )->inContentLanguage();
641 if ( !$msg->isBlank() ) {
642 $group = $msg->text();
643 } else {
644 // Than use the group from this object
645 $group = $this->getGroupName();
646
647 // Group '-' is used as default to have the chance to determine,
648 // if the special pages overrides this method,
649 // if not overridden, $wgSpecialPageGroups is checked for b/c
650 if ( $group === '-' && isset( $wgSpecialPageGroups[$name] ) ) {
651 $group = $wgSpecialPageGroups[$name];
652 }
653 }
654
655 // never give '-' back, change to 'other'
656 if ( $group === '-' ) {
657 $group = 'other';
658 }
659
660 return $group;
661 }
662
663 /**
664 * Under which header this special page is listed in Special:SpecialPages
665 * See messages 'specialpages-group-*' for valid names
666 * This method defaults to group 'other'
667 *
668 * @return string
669 * @since 1.21
670 */
671 protected function getGroupName() {
672 // '-' used here to determine, if this group is overridden or has a hardcoded 'other'
673 // Needed for b/c in getFinalGroupName
674 return '-';
675 }
676 }