MediaWiki  1.33.0
SpecialPageAction.php
Go to the documentation of this file.
1 <?php
22 
33  public static $actionToSpecialPageMapping = [
34  'revisiondelete' => 'Revisiondelete',
35  'editchangetags' => 'EditTags',
36  ];
37 
38  public function getName() {
39  $request = $this->getRequest();
40  $actionName = $request->getVal( 'action', 'view' );
41  // TODO: Shouldn't need to copy-paste this code from Action::getActionName!
42  if ( $actionName === 'historysubmit' ) {
43  if ( $request->getBool( 'revisiondelete' ) ) {
44  $actionName = 'revisiondelete';
45  } elseif ( $request->getBool( 'editchangetags' ) ) {
46  $actionName = 'editchangetags';
47  }
48  }
49 
50  if ( isset( self::$actionToSpecialPageMapping[$actionName] ) ) {
51  return $actionName;
52  }
53 
54  return 'nosuchaction';
55  }
56 
57  public function requiresUnblock() {
58  return false;
59  }
60 
61  public function getDescription() {
62  return '';
63  }
64 
65  public function onView() {
66  return '';
67  }
68 
69  public function show() {
70  $special = $this->getSpecialPage();
71  if ( !$special ) {
72  throw new ErrorPageError(
73  $this->msg( 'nosuchaction' ), $this->msg( 'nosuchactiontext' ) );
74  }
75 
76  $special->setContext( $this->getContext() );
77  $special->getContext()->setTitle( $special->getPageTitle() );
78  $special->run( '' );
79  }
80 
81  public function doesWrites() {
82  $special = $this->getSpecialPage();
83 
84  return $special ? $special->doesWrites() : false;
85  }
86 
90  protected function getSpecialPage() {
91  $action = $this->getName();
92  if ( $action === 'nosuchaction' ) {
93  return null;
94  }
95 
96  // map actions to (whitelisted) special pages
97  return MediaWikiServices::getInstance()->getSpecialPageFactory()->
98  getPage( self::$actionToSpecialPageMapping[$action] );
99  }
100 }
FormlessAction
An action which just does something, without showing a form first.
Definition: FormlessAction.php:28
Action\getRequest
getRequest()
Get the WebRequest being used for this instance.
Definition: Action.php:198
SpecialPageAction\onView
onView()
Show something on GET request.
Definition: SpecialPageAction.php:65
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
Action\getContext
getContext()
Get the IContextSource in use here.
Definition: Action.php:179
SpecialPageAction
An action that just passes the request to the relevant special page.
Definition: SpecialPageAction.php:29
Action\msg
msg( $key)
Get a Message object with context set Parameters are the same as wfMessage()
Definition: Action.php:257
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
array
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
$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
SpecialPageAction\getName
getName()
Return the name of the action this object responds to.
Definition: SpecialPageAction.php:38
SpecialPageAction\$actionToSpecialPageMapping
static array $actionToSpecialPageMapping
A mapping of action names to special page names.
Definition: SpecialPageAction.php:33
SpecialPageAction\requiresUnblock
requiresUnblock()
Whether this action can still be executed by a blocked user.
Definition: SpecialPageAction.php:57
SpecialPageAction\doesWrites
doesWrites()
Indicates whether this action may perform database writes.
Definition: SpecialPageAction.php:81
SpecialPageAction\getSpecialPage
getSpecialPage()
Definition: SpecialPageAction.php:90
SpecialPageAction\show
show()
The main action entry point.
Definition: SpecialPageAction.php:69
MediaWikiServices
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 MediaWikiServices
Definition: injection.txt:23
ErrorPageError
An error page which can definitely be safely rendered using the OutputPage.
Definition: ErrorPageError.php:27
SpecialPageAction\getDescription
getDescription()
Returns the description that goes below the <h1> tag.
Definition: SpecialPageAction.php:61