MediaWiki  1.33.0
RedirectSpecialPage.php
Go to the documentation of this file.
1 <?php
29 abstract class RedirectSpecialPage extends UnlistedSpecialPage {
30  // Query parameters that can be passed through redirects
31  protected $mAllowedRedirectParams = [];
32 
33  // Query parameters added by redirects
34  protected $mAddedRedirectParams = [];
35 
40  public function execute( $subpage ) {
41  $redirect = $this->getRedirect( $subpage );
42  $query = $this->getRedirectQuery();
43  // Redirect to a page title with possible query parameters
44  if ( $redirect instanceof Title ) {
45  $url = $redirect->getFullUrlForRedirect( $query );
46  $this->getOutput()->redirect( $url );
47 
48  return $redirect;
49  } elseif ( $redirect === true ) {
50  // Redirect to index.php with query parameters
51  $url = wfAppendQuery( wfScript( 'index' ), $query );
52  $this->getOutput()->redirect( $url );
53 
54  return $redirect;
55  } else {
56  $this->showNoRedirectPage();
57  }
58  }
59 
67  abstract public function getRedirect( $subpage );
68 
75  public function getRedirectQuery() {
76  $params = [];
77  $request = $this->getRequest();
78 
79  foreach ( array_merge( $this->mAllowedRedirectParams,
80  [ 'uselang', 'useskin', 'debug' ] // parameters which can be passed to all pages
81  ) as $arg ) {
82  if ( $request->getVal( $arg, null ) !== null ) {
83  $params[$arg] = $request->getVal( $arg );
84  } elseif ( $request->getArray( $arg, null ) !== null ) {
85  $params[$arg] = $request->getArray( $arg );
86  }
87  }
88 
89  foreach ( $this->mAddedRedirectParams as $arg => $val ) {
90  $params[$arg] = $val;
91  }
92 
93  return count( $params )
94  ? $params
95  : false;
96  }
97 
106  public function personallyIdentifiableTarget() {
107  return false;
108  }
109 
110  protected function showNoRedirectPage() {
111  $class = static::class;
112  throw new MWException( "RedirectSpecialPage $class doesn't redirect!" );
113  }
114 }
SpecialPage\getOutput
getOutput()
Get the OutputPage being used for this instance.
Definition: SpecialPage.php:725
UnlistedSpecialPage
Shortcut to construct a special page which is unlisted by default.
Definition: UnlistedSpecialPage.php:29
captcha-old.count
count
Definition: captcha-old.py:249
$params
$params
Definition: styleTest.css.php:44
RedirectSpecialPage\$mAddedRedirectParams
$mAddedRedirectParams
Definition: RedirectSpecialPage.php:34
RedirectSpecialPage
Shortcut to construct a special page alias.
Definition: RedirectSpecialPage.php:29
RedirectSpecialPage\showNoRedirectPage
showNoRedirectPage()
Definition: RedirectSpecialPage.php:110
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
wfAppendQuery
wfAppendQuery( $url, $query)
Append a query string to an existing URL, which may or may not already have query string parameters a...
Definition: GlobalFunctions.php:463
$query
null for the wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
Definition: hooks.txt:1588
RedirectSpecialPage\$mAllowedRedirectParams
$mAllowedRedirectParams
Definition: RedirectSpecialPage.php:31
MWException
MediaWiki exception.
Definition: MWException.php:26
wfScript
wfScript( $script='index')
Get the path to a specified script file, respecting file extensions; this is a wrapper around $wgScri...
Definition: GlobalFunctions.php:2714
RedirectSpecialPage\execute
execute( $subpage)
Definition: RedirectSpecialPage.php:40
null
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not null
Definition: hooks.txt:780
$request
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on $request
Definition: hooks.txt:2636
SpecialPage\getRequest
getRequest()
Get the WebRequest being used for this instance.
Definition: SpecialPage.php:715
Title
Represents a title within MediaWiki.
Definition: Title.php:40
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
RedirectSpecialPage\getRedirectQuery
getRedirectQuery()
Return part of the request string for a special redirect page This allows passing,...
Definition: RedirectSpecialPage.php:75
class
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
Definition: maintenance.txt:52
RedirectSpecialPage\personallyIdentifiableTarget
personallyIdentifiableTarget()
Indicate if the target of this redirect can be used to identify a particular user of this wiki (e....
Definition: RedirectSpecialPage.php:106
RedirectSpecialPage\getRedirect
getRedirect( $subpage)
If the special page is a redirect, then get the Title object it redirects to.