MediaWiki  1.30.0
SpecialPageExecutor.php
Go to the documentation of this file.
1 <?php
2 
9 
21  public function executeSpecialPage(
22  SpecialPage $page,
23  $subPage = '',
24  WebRequest $request = null,
25  $language = null,
26  User $user = null
27  ) {
28  $context = $this->newContext( $request, $language, $user );
29 
30  $output = new OutputPage( $context );
31  $context->setOutput( $output );
32 
33  $page->setContext( $context );
34  $output->setTitle( $page->getPageTitle() );
35 
36  $html = $this->getHTMLFromSpecialPage( $page, $subPage );
37  $response = $context->getRequest()->response();
38 
39  if ( $response instanceof FauxResponse ) {
40  $code = $response->getStatusCode();
41 
42  if ( $code > 0 ) {
43  $response->header( 'Status: ' . $code . ' ' . HttpStatus::getMessage( $code ) );
44  }
45  }
46 
47  return [ $html, $response ];
48  }
49 
57  private function newContext(
58  WebRequest $request = null,
59  $language = null,
60  User $user = null
61  ) {
63 
64  $context->setRequest( $request ?: new FauxRequest() );
65 
66  if ( $language !== null ) {
67  $context->setLanguage( $language );
68  }
69 
70  if ( $user !== null ) {
71  $context->setUser( $user );
72  }
73 
75 
76  return $context;
77  }
78 
85  $request = $context->getRequest();
86 
87  // Edits via GET are a security issue and should not succeed. On the other hand, not all
88  // POST requests are edits, but should ignore unused parameters.
89  if ( !$request->getCheck( 'wpEditToken' ) && $request->wasPosted() ) {
90  $request->setVal( 'wpEditToken', $context->getUser()->getEditToken() );
91  }
92  }
93 
101  private function getHTMLFromSpecialPage( SpecialPage $page, $subPage ) {
102  ob_start();
103 
104  try {
105  $page->execute( $subPage );
106 
107  $output = $page->getOutput();
108 
109  if ( $output->getRedirect() !== '' ) {
110  $output->output();
111  $html = ob_get_contents();
112  } elseif ( $output->isDisabled() ) {
113  $html = ob_get_contents();
114  } else {
115  $html = $output->getHTML();
116  }
117  } catch ( Exception $ex ) {
118  ob_end_clean();
119 
120  // Re-throw exception after "finally" handling because PHP 5.3 doesn't have "finally".
121  throw $ex;
122  }
123 
124  ob_end_clean();
125 
126  return $html;
127  }
128 
129 }
SpecialPage\getPageTitle
getPageTitle( $subpage=false)
Get a self-referential title object.
Definition: SpecialPage.php:628
$user
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a account $user
Definition: hooks.txt:244
FauxRequest
WebRequest clone which takes values from a provided array.
Definition: FauxRequest.php:33
SpecialPageExecutor\getHTMLFromSpecialPage
getHTMLFromSpecialPage(SpecialPage $page, $subPage)
Definition: SpecialPageExecutor.php:101
$context
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 and they can depend only on the ResourceLoaderContext $context
Definition: hooks.txt:2581
SpecialPage\getOutput
getOutput()
Get the OutputPage being used for this instance.
Definition: SpecialPage.php:675
SpecialPageExecutor\setEditTokenFromUser
setEditTokenFromUser(DerivativeContext $context)
If we are trying to edit and no token is set, supply one.
Definition: SpecialPageExecutor.php:84
$output
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title after the basic globals have been set but before ordinary actions take place $output
Definition: hooks.txt:2198
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
DerivativeContext
An IContextSource implementation which will inherit context from another source but allow individual ...
Definition: DerivativeContext.php:31
$html
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses & $html
Definition: hooks.txt:1965
OutputPage
This class should be covered by a general architecture document which does not exist as of January 20...
Definition: OutputPage.php:44
$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:2581
SpecialPage
Parent class for all special pages.
Definition: SpecialPage.php:36
SpecialPageExecutor
Definition: SpecialPageExecutor.php:8
RequestContext\getMain
static getMain()
Static methods.
Definition: RequestContext.php:470
HttpStatus\getMessage
static getMessage( $code)
Get the message associated with an HTTP response status code.
Definition: HttpStatus.php:34
SpecialPage\execute
execute( $subPage)
Default execute method Checks user permissions.
Definition: SpecialPage.php:568
$response
this hook is for auditing only $response
Definition: hooks.txt:781
WebRequest
The WebRequest class encapsulates getting at data passed in the URL or via a POSTed form stripping il...
Definition: WebRequest.php:38
SpecialPageExecutor\executeSpecialPage
executeSpecialPage(SpecialPage $page, $subPage='', WebRequest $request=null, $language=null, User $user=null)
Definition: SpecialPageExecutor.php:21
FauxResponse
Definition: WebResponse.php:188
$code
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable & $code
Definition: hooks.txt:781
SpecialPage\setContext
setContext( $context)
Sets the context this SpecialPage is executed in.
Definition: SpecialPage.php:638
SpecialPageExecutor\newContext
newContext(WebRequest $request=null, $language=null, User $user=null)
Definition: SpecialPageExecutor.php:57
User
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition: User.php:51