3 * Implements Special:RunJobs
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.
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.
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
21 * @ingroup SpecialPage
22 * @author Aaron Schulz
25 use MediaWiki\Logger\LoggerFactory
;
28 * Special page designed for running background tasks (internal use only)
30 * @ingroup SpecialPage
32 class SpecialRunJobs
extends UnlistedSpecialPage
{
33 public function __construct() {
34 parent
::__construct( 'RunJobs' );
37 public function doesWrites() {
41 public function execute( $par = '' ) {
42 $this->getOutput()->disable();
44 wfHttpError( 423, 'Locked', 'Wiki is in read-only mode.' );
46 } elseif ( !$this->getRequest()->wasPosted() ) {
47 wfHttpError( 400, 'Bad Request', 'Request must be POSTed.' );
51 $optional = [ 'maxjobs' => 0, 'maxtime' => 30, 'type' => false, 'async' => true ];
52 $required = array_flip( [ 'title', 'tasks', 'signature', 'sigexpiry' ] );
54 $params = array_intersect_key( $this->getRequest()->getValues(), $required +
$optional );
55 $missing = array_diff_key( $required, $params );
56 if ( count( $missing ) ) {
57 wfHttpError( 400, 'Bad Request',
58 'Missing parameters: ' . implode( ', ', array_keys( $missing ) )
64 unset( $squery['signature'] );
65 $correctSignature = self
::getQuerySignature( $squery, $this->getConfig()->get( 'SecretKey' ) );
66 $providedSignature = $params['signature'];
68 $verified = is_string( $providedSignature )
69 && hash_equals( $correctSignature, $providedSignature );
70 if ( !$verified ||
$params['sigexpiry'] < time() ) {
71 wfHttpError( 400, 'Bad Request', 'Invalid or stale signature provided.' );
75 // Apply any default parameter values
78 if ( $params['async'] ) {
79 // Client will usually disconnect before checking the response,
80 // but it needs to know when it is safe to disconnect. Until this
81 // reaches ignore_user_abort(), it is not safe as the jobs won't run.
82 ignore_user_abort( true ); // jobs may take a bit of time
84 HttpStatus
::header( 202 );
87 // Once the client receives this response, it can disconnect
88 set_error_handler( function ( $errno, $errstr ) {
89 if ( strpos( $errstr, 'Cannot modify header information' ) !== false ) {
90 return true; // bug T115413
92 // Delegate unhandled errors to the default MediaWiki handler
93 // so that fatal errors get proper logging (T89169)
94 return call_user_func_array(
95 'MWExceptionHandler::handleError', func_get_args()
100 // Do all of the specified tasks...
101 if ( in_array( 'jobs', explode( '|', $params['tasks'] ) ) ) {
102 $runner = new JobRunner( LoggerFactory
::getInstance( 'runJobs' ) );
103 $response = $runner->run( [
104 'type' => $params['type'],
105 'maxJobs' => $params['maxjobs'] ?
$params['maxjobs'] : 1,
106 'maxTime' => $params['maxtime'] ?
$params['maxjobs'] : 30
108 if ( !$params['async'] ) {
109 print FormatJson
::encode( $response, true );
115 * @param array $query
116 * @param string $secretKey
119 public static function getQuerySignature( array $query, $secretKey ) {
120 ksort( $query ); // stable order
121 return hash_hmac( 'sha1', wfArrayToCgi( $query ), $secretKey );