MediaWiki  1.28.1
SpecialRunJobs.php
Go to the documentation of this file.
1 <?php
26 
33  public function __construct() {
34  parent::__construct( 'RunJobs' );
35  }
36 
37  public function doesWrites() {
38  return true;
39  }
40 
41  public function execute( $par = '' ) {
42  $this->getOutput()->disable();
43  if ( wfReadOnly() ) {
44  // HTTP 423 Locked
45  HttpStatus::header( 423 );
46  print 'Wiki is in read-only mode';
47 
48  return;
49  } elseif ( !$this->getRequest()->wasPosted() ) {
50  HttpStatus::header( 400 );
51  print 'Request must be POSTed';
52  return;
53  }
54 
55  $optional = [ 'maxjobs' => 0, 'maxtime' => 30, 'type' => false, 'async' => true ];
56  $required = array_flip( [ 'title', 'tasks', 'signature', 'sigexpiry' ] );
57 
58  $params = array_intersect_key( $this->getRequest()->getValues(), $required + $optional );
59  $missing = array_diff_key( $required, $params );
60  if ( count( $missing ) ) {
61  HttpStatus::header( 400 );
62  print 'Missing parameters: ' . implode( ', ', array_keys( $missing ) );
63  return;
64  }
65 
66  $squery = $params;
67  unset( $squery['signature'] );
68  $correctSignature = self::getQuerySignature( $squery, $this->getConfig()->get( 'SecretKey' ) );
69  $providedSignature = $params['signature'];
70 
71  $verified = is_string( $providedSignature )
72  && hash_equals( $correctSignature, $providedSignature );
73  if ( !$verified || $params['sigexpiry'] < time() ) {
74  HttpStatus::header( 400 );
75  print 'Invalid or stale signature provided';
76  return;
77  }
78 
79  // Apply any default parameter values
80  $params += $optional;
81 
82  if ( $params['async'] ) {
83  // Client will usually disconnect before checking the response,
84  // but it needs to know when it is safe to disconnect. Until this
85  // reaches ignore_user_abort(), it is not safe as the jobs won't run.
86  ignore_user_abort( true ); // jobs may take a bit of time
87  // HTTP 202 Accepted
88  HttpStatus::header( 202 );
89  ob_flush();
90  flush();
91  // Once the client receives this response, it can disconnect
92  set_error_handler( function ( $errno, $errstr ) {
93  if ( strpos( $errstr, 'Cannot modify header information' ) !== false ) {
94  return true; // bug T115413
95  }
96  // Delegate unhandled errors to the default MediaWiki handler
97  // so that fatal errors get proper logging (T89169)
98  return call_user_func_array(
99  'MWExceptionHandler::handleError', func_get_args()
100  );
101  } );
102  }
103 
104  // Do all of the specified tasks...
105  if ( in_array( 'jobs', explode( '|', $params['tasks'] ) ) ) {
106  $runner = new JobRunner( LoggerFactory::getInstance( 'runJobs' ) );
107  $response = $runner->run( [
108  'type' => $params['type'],
109  'maxJobs' => $params['maxjobs'] ? $params['maxjobs'] : 1,
110  'maxTime' => $params['maxtime'] ? $params['maxjobs'] : 30
111  ] );
112  if ( !$params['async'] ) {
114  }
115  }
116  }
117 
123  public static function getQuerySignature( array $query, $secretKey ) {
124  ksort( $query ); // stable order
125  return hash_hmac( 'sha1', wfArrayToCgi( $query ), $secretKey );
126  }
127 }
the array() calling protocol came about after MediaWiki 1.4rc1.
null for the local 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:1555
Shortcut to construct a special page which is unlisted by default.
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
static header($code)
Output an HTTP status code header.
Definition: HttpStatus.php:96
getOutput()
Get the OutputPage being used for this instance.
execute($par= '')
this hook is for auditing only $response
Definition: hooks.txt:802
Special page designed for running background tasks (internal use only)
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 true
Definition: hooks.txt:1936
wfReadOnly()
Check whether the wiki is in read-only mode.
static encode($value, $pretty=false, $escaping=0)
Returns the JSON representation of a value.
Definition: FormatJson.php:127
$params
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
Job queue runner utility methods.
Definition: JobRunner.php:37
wfArrayToCgi($array1, $array2=null, $prefix= '')
This function takes one or two arrays as input, and returns a CGI-style string, e.g.
getConfig()
Shortcut to get main config object.
MediaWiki Logger LoggerFactory implements a PSR[0] compatible message logging system Named Psr Log LoggerInterface instances can be obtained from the MediaWiki Logger LoggerFactory::getInstance() static method.MediaWiki\Logger\LoggerFactory expects a class implementing the MediaWiki\Logger\Spi interface to act as a factory for new Psr\Log\LoggerInterface instances.The"Spi"in MediaWiki\Logger\Spi stands for"service provider interface".An SPI is an API intended to be implemented or extended by a third party.This software design pattern is intended to enable framework extension and replaceable components.It is specifically used in the MediaWiki\Logger\LoggerFactory service to allow alternate PSR-3 logging implementations to be easily integrated with MediaWiki.The service provider interface allows the backend logging library to be implemented in multiple ways.The $wgMWLoggerDefaultSpi global provides the classname of the default MediaWiki\Logger\Spi implementation to be loaded at runtime.This can either be the name of a class implementing the MediaWiki\Logger\Spi with a zero argument const ructor or a callable that will return an MediaWiki\Logger\Spi instance.Alternately the MediaWiki\Logger\LoggerFactory MediaWiki Logger LoggerFactory
Definition: logger.txt:5
static getQuerySignature(array $query, $secretKey)
getRequest()
Get the WebRequest being used for this instance.