resources: Collapse all jQuery UI modules into one deprecated mega-module
[lhc/web/wiklou.git] / maintenance / doMaintenance.php
1 <?php
2 /**
3 * We want to make this whole thing as seamless as possible to the
4 * end-user. Unfortunately, we can't do _all_ of the work in the class
5 * because A) included files are not in global scope, but in the scope
6 * of their caller, and B) MediaWiki has way too many globals. So instead
7 * we'll kinda fake it, and do the requires() inline. <3 PHP
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * http://www.gnu.org/copyleft/gpl.html
23 *
24 * @file
25 * @ingroup Maintenance
26 */
27 use MediaWiki\MediaWikiServices;
28
29 if ( !defined( 'RUN_MAINTENANCE_IF_MAIN' ) ) {
30 echo "This file must be included after Maintenance.php\n";
31 exit( 1 );
32 }
33
34 // Wasn't included from the file scope, halt execution (probably wanted the class)
35 // If a class is using commandLine.inc (old school maintenance), they definitely
36 // cannot be included and will proceed with execution
37 if ( !Maintenance::shouldExecute() && $maintClass != CommandLineInc::class ) {
38 return;
39 }
40
41 if ( !$maintClass || !class_exists( $maintClass ) ) {
42 echo "\$maintClass is not set or is set to a non-existent class.\n";
43 exit( 1 );
44 }
45
46 // Get an object to start us off
47 /** @var Maintenance $maintenance */
48 $maintenance = new $maintClass();
49
50 // Basic sanity checks and such
51 $maintenance->setup();
52
53 // We used to call this variable $self, but it was moved
54 // to $maintenance->mSelf. Keep that here for b/c
55 $self = $maintenance->getName();
56
57 // Define how settings are loaded (e.g. LocalSettings.php)
58 if ( !defined( 'MW_CONFIG_CALLBACK' ) && !defined( 'MW_CONFIG_FILE' ) ) {
59 define( 'MW_CONFIG_FILE', $maintenance->loadSettings() );
60 }
61
62 // Custom setup for Maintenance entry point
63 if ( !defined( 'MW_SETUP_CALLBACK' ) ) {
64
65 function wfMaintenanceSetup() {
66 // phpcs:ignore MediaWiki.NamingConventions.ValidGlobalName.wgPrefix
67 global $maintenance, $wgLocalisationCacheConf, $wgCacheDirectory;
68 if ( $maintenance->getDbType() === Maintenance::DB_NONE ) {
69 if ( $wgLocalisationCacheConf['storeClass'] === false
70 && ( $wgLocalisationCacheConf['store'] == 'db'
71 || ( $wgLocalisationCacheConf['store'] == 'detect' && !$wgCacheDirectory ) )
72 ) {
73 $wgLocalisationCacheConf['storeClass'] = LCStoreNull::class;
74 }
75 }
76
77 $maintenance->finalSetup();
78 }
79
80 define( 'MW_SETUP_CALLBACK', 'wfMaintenanceSetup' );
81 }
82
83 require_once "$IP/includes/Setup.php";
84
85 // Initialize main config instance
86 $maintenance->setConfig( MediaWikiServices::getInstance()->getMainConfig() );
87
88 // Sanity-check required extensions are installed
89 $maintenance->checkRequiredExtensions();
90
91 // A good time when no DBs have writes pending is around lag checks.
92 // This avoids having long running scripts just OOM and lose all the updates.
93 $maintenance->setAgentAndTriggers();
94
95 $maintenance->validateParamsAndArgs();
96
97 // Do the work
98 try {
99 $success = $maintenance->execute();
100 } catch ( Exception $ex ) {
101 $success = false;
102 $exReportMessage = '';
103 while ( $ex ) {
104 $cls = get_class( $ex );
105 $exReportMessage .= "$cls from line {$ex->getLine()} of {$ex->getFile()}: {$ex->getMessage()}\n";
106 $exReportMessage .= $ex->getTraceAsString() . "\n";
107 $ex = $ex->getPrevious();
108 }
109 // Print the exception to stderr if possible, don't mix it in
110 // with stdout output.
111 if ( defined( 'STDERR' ) ) {
112 fwrite( STDERR, $exReportMessage );
113 } else {
114 echo $exReportMessage;
115 }
116 }
117
118 // Potentially debug globals
119 $maintenance->globals();
120
121 if ( $maintenance->getDbType() !== Maintenance::DB_NONE ) {
122 // Perform deferred updates.
123 $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
124 $lbFactory->commitMasterChanges( $maintClass );
125 DeferredUpdates::doUpdates();
126 }
127
128 // log profiling info
129 wfLogProfilingData();
130
131 if ( isset( $lbFactory ) ) {
132 // Commit and close up!
133 $lbFactory->commitMasterChanges( 'doMaintenance' );
134 $lbFactory->shutdown( $lbFactory::SHUTDOWN_NO_CHRONPROT );
135 }
136
137 // Exit with an error status if execute() returned false
138 if ( $success === false ) {
139 exit( 1 );
140 }