Merge "Http::getProxy() method to get proxy configuration"
[lhc/web/wiklou.git] / includes / specials / SpecialRunJobs.php
1 <?php
2 /**
3 * Implements Special:RunJobs
4 *
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.
9 *
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.
14 *
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
19 *
20 * @file
21 * @ingroup SpecialPage
22 * @author Aaron Schulz
23 */
24
25 use MediaWiki\Logger\LoggerFactory;
26
27 /**
28 * Special page designed for running background tasks (internal use only)
29 *
30 * @ingroup SpecialPage
31 */
32 class SpecialRunJobs extends UnlistedSpecialPage {
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
44 if ( wfReadOnly() ) {
45 // HTTP 423 Locked
46 HttpStatus::header( 423 );
47 print 'Wiki is in read-only mode';
48
49 return;
50 } elseif ( !$this->getRequest()->wasPosted() ) {
51 HttpStatus::header( 400 );
52 print 'Request must be POSTed';
53 return;
54 }
55
56 $optional = [ 'maxjobs' => 0, 'maxtime' => 30, 'type' => false, 'async' => true ];
57 $required = array_flip( [ 'title', 'tasks', 'signature', 'sigexpiry' ] );
58
59 $params = array_intersect_key( $this->getRequest()->getValues(), $required + $optional );
60 $missing = array_diff_key( $required, $params );
61 if ( count( $missing ) ) {
62 HttpStatus::header( 400 );
63 print 'Missing parameters: ' . implode( ', ', array_keys( $missing ) );
64 return;
65 }
66
67 $squery = $params;
68 unset( $squery['signature'] );
69 $correctSignature = self::getQuerySignature( $squery, $this->getConfig()->get( 'SecretKey' ) );
70 $providedSignature = $params['signature'];
71
72 $verified = is_string( $providedSignature )
73 && hash_equals( $correctSignature, $providedSignature );
74 if ( !$verified || $params['sigexpiry'] < time() ) {
75 HttpStatus::header( 400 );
76 print 'Invalid or stale signature provided';
77 return;
78 }
79
80 // Apply any default parameter values
81 $params += $optional;
82
83 if ( $params['async'] ) {
84 // Client will usually disconnect before checking the response,
85 // but it needs to know when it is safe to disconnect. Until this
86 // reaches ignore_user_abort(), it is not safe as the jobs won't run.
87 ignore_user_abort( true ); // jobs may take a bit of time
88 // HTTP 202 Accepted
89 HttpStatus::header( 202 );
90 ob_flush();
91 flush();
92 // Once the client receives this response, it can disconnect
93 set_error_handler( function ( $errno, $errstr ) {
94 if ( strpos( $errstr, 'Cannot modify header information' ) !== false ) {
95 return true; // bug T115413
96 }
97 // Delegate unhandled errors to the default handlers
98 return false;
99 } );
100 }
101
102 // Do all of the specified tasks...
103 if ( in_array( 'jobs', explode( '|', $params['tasks'] ) ) ) {
104 $runner = new JobRunner( LoggerFactory::getInstance( 'runJobs' ) );
105 $response = $runner->run( [
106 'type' => $params['type'],
107 'maxJobs' => $params['maxjobs'] ? $params['maxjobs'] : 1,
108 'maxTime' => $params['maxtime'] ? $params['maxjobs'] : 30
109 ] );
110 if ( !$params['async'] ) {
111 print FormatJson::encode( $response, true );
112 }
113 }
114 }
115
116 /**
117 * @param array $query
118 * @param string $secretKey
119 * @return string
120 */
121 public static function getQuerySignature( array $query, $secretKey ) {
122 ksort( $query ); // stable order
123 return hash_hmac( 'sha1', wfArrayToCgi( $query ), $secretKey );
124 }
125 }