Partial revert r78593 (adding --upgrade option to install.php). Rather than supportin...
[lhc/web/wiklou.git] / maintenance / Maintenance.php
index dc33be5..75d983c 100644 (file)
@@ -1,21 +1,47 @@
 <?php
 /**
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ * http://www.gnu.org/copyleft/gpl.html
+ *
  * @file
  * @ingroup Maintenance
  * @defgroup Maintenance Maintenance
  */
 
 // Define this so scripts can easily find doMaintenance.php
-define( 'DO_MAINTENANCE', dirname( __FILE__ ) . '/doMaintenance.php' );
+define( 'RUN_MAINTENANCE_IF_MAIN', dirname( __FILE__ ) . '/doMaintenance.php' );
+define( 'DO_MAINTENANCE', RUN_MAINTENANCE_IF_MAIN ); // original name, harmless
+
 $maintClass = false;
 
 // Make sure we're on PHP5 or better
-if ( version_compare( PHP_VERSION, '5.0.0' ) < 0 ) {
-       echo( "Sorry! This version of MediaWiki requires PHP 5; you are running " .
+if ( version_compare( PHP_VERSION, '5.2.3' ) < 0 ) {
+       die ( "Sorry! This version of MediaWiki requires PHP 5.2.3; you are running " .
                PHP_VERSION . ".\n\n" .
-               "If you are sure you already have PHP 5 installed, it may be installed\n" .
-               "in a different path from PHP 4. Check with your system administrator.\n" );
-       die();
+               "If you are sure you already have PHP 5.2.3 or higher installed, it may be\n" .
+               "installed in a different path from PHP " . PHP_VERSION . ". Check with your system\n" .
+               "administrator.\n" );
+}
+
+// Wrapper for posix_isatty()
+if ( !function_exists( 'posix_isatty' ) ) {
+       # We default as considering stdin a tty (for nice readline methods)
+       # but treating stout as not a tty to avoid color codes
+       function posix_isatty( $fd ) {
+               return !$fd;
+       }
 }
 
 /**
@@ -24,21 +50,6 @@ if ( version_compare( PHP_VERSION, '5.0.0' ) < 0 ) {
  * is the execute() method. See docs/maintenance.txt for more info
  * and a quick demo of how to use it.
  *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- * http://www.gnu.org/copyleft/gpl.html
- *
  * @author Chad Horohoe <chad@anyonecanedit.org>
  * @since 1.16
  * @ingroup Maintenance
@@ -85,6 +96,11 @@ abstract class Maintenance {
        // a default with setBatchSize()
        protected $mBatchSize = null;
 
+       // Generic options added by addDefaultParams()
+       private $mGenericParameters = array();
+       // Generic options which might or not be supported by the script
+       private $mDependantParameters = array();
+
        /**
         * List of all the core maintenance scripts. This is added
         * to scripts added by extensions in $wgMaintenanceScripts
@@ -93,14 +109,37 @@ abstract class Maintenance {
        protected static $mCoreScripts = null;
 
        /**
-        * Default constructor. Children should call this if implementing
+        * Default constructor. Children should call this *first* if implementing
         * their own constructors
         */
        public function __construct() {
+               // Setup $IP, using MW_INSTALL_PATH if it exists
+               global $IP;
+               $IP = strval( getenv( 'MW_INSTALL_PATH' ) ) !== ''
+                       ? getenv( 'MW_INSTALL_PATH' )
+                       : realpath( dirname( __FILE__ ) . '/..' );
+
                $this->addDefaultParams();
                register_shutdown_function( array( $this, 'outputChanneled' ), false );
        }
 
+       /**
+        * Should we execute the maintenance script, or just allow it to be included
+        * as a standalone class? It checks that the call stack only includes this
+        * function and a require (meaning was called from the file scope)
+        *
+        * @return Boolean
+        */
+       public static function shouldExecute() {
+               $bt = debug_backtrace();
+               if( count( $bt ) !== 2 ) {
+                       return false;
+               }
+               return ( $bt[1]['function'] == 'require_once' || $bt[1]['function'] == 'require' ) &&
+                       $bt[0]['class'] == 'Maintenance' &&
+                       $bt[0]['function'] == 'shouldExecute';
+       }
+
        /**
         * Do the actual work. All child classes will need to implement this
         */
@@ -158,6 +197,22 @@ abstract class Maintenance {
                );
        }
 
+       /**
+        * Remove an option.  Useful for removing options that won't be used in your script.
+        * @param $name String: the option to remove.
+        */
+       protected function deleteOption( $name ) {
+               unset( $this->mParams[$name] );
+       }
+
+       /**
+        * Set the description text.
+        * @param $text String: the text of the description
+        */
+       protected function addDescription( $text ) {
+               $this->mDescription = $text;
+       }
+
        /**
         * Does a given argument exist?
         * @param $argId Integer: the integer value (from zero) for the arg
@@ -195,7 +250,7 @@ abstract class Maintenance {
 
        /**
         * Return input from stdin.
-        * @param $length Integer: the number of bytes to read. If null,
+        * @param $len Integer: the number of bytes to read. If null,
         *        just return the handle. Maintenance::STDIN_ALL returns
         *        the full length
         * @return Mixed
@@ -213,18 +268,32 @@ abstract class Maintenance {
                return rtrim( $input );
        }
 
+       public function isQuiet() {
+               return $this->mQuiet;
+       }
+
        /**
         * Throw some output to the user. Scripts can call this with no fears,
         * as we handle all --quiet stuff here
         * @param $out String: the text to show to the user
-        * @param $channel Mixed: unique identifier for the channel. See function outputChanneled.
+        * @param $channel Mixed: unique identifier for the channel. See
+        *     function outputChanneled.
         */
        protected function output( $out, $channel = null ) {
                if ( $this->mQuiet ) {
                        return;
                }
-               $out = preg_replace( '/\n\z/', '', $out );
-               $this->outputChanneled( $out, $channel );
+               if ( $channel === null ) {
+                       $this->cleanupChanneled();
+
+                       $f = fopen( 'php://stdout', 'w' );
+                       fwrite( $f, $out );
+                       fclose( $f );
+               }
+               else {
+                       $out = preg_replace( '/\n\z/', '', $out );
+                       $this->outputChanneled( $out, $channel );
+               }
        }
 
        /**
@@ -249,26 +318,35 @@ abstract class Maintenance {
 
        private $atLineStart = true;
        private $lastChannel = null;
-       
+
+       /**
+        * Clean up channeled output.  Output a newline if necessary.
+        */
+       public function cleanupChanneled() {
+               if ( !$this->atLineStart ) {
+                       $handle = fopen( 'php://stdout', 'w' );
+                       fwrite( $handle, "\n" );
+                       fclose( $handle );
+                       $this->atLineStart = true;
+               }
+       }
+
        /**
         * Message outputter with channeled message support. Messages on the
         * same channel are concatenated, but any intervening messages in another
         * channel start a new line.
         * @param $msg String: the message without trailing newline
-        * @param $channel Channel identifier or null for no channel. Channel comparison uses ===.
+        * @param $channel Channel identifier or null for no
+        *     channel. Channel comparison uses ===.
         */
        public function outputChanneled( $msg, $channel = null ) {
-               $handle = fopen( 'php://stdout', 'w' );
-
                if ( $msg === false ) {
-                       // For cleanup
-                       if ( !$this->atLineStart ) {
-                               fwrite( $handle, "\n" );
-                       }
-                       fclose( $handle );
+                       $this->cleanupChanneled();
                        return;
                }
 
+               $handle = fopen( 'php://stdout', 'w' );
+
                // End the current line if necessary
                if ( !$this->atLineStart && $channel !== $this->lastChannel ) {
                        fwrite( $handle, "\n" );
@@ -306,11 +384,24 @@ abstract class Maintenance {
         * Add the default parameters to the scripts
         */
        protected function addDefaultParams() {
+
+               # Generic (non script dependant) options:
+
                $this->addOption( 'help', 'Display this help message' );
                $this->addOption( 'quiet', 'Whether to supress non-error output' );
                $this->addOption( 'conf', 'Location of LocalSettings.php, if not default', false, true );
                $this->addOption( 'wiki', 'For specifying the wiki ID', false, true );
                $this->addOption( 'globals', 'Output globals at the end of processing for debugging' );
+               $this->addOption( 'memory-limit', 'Set a specific memory limit for the script, "max" for no limit or "default" to avoid changing it' );
+               $this->addOption( 'server', "The protocol and server name to use in URLs, e.g. " .
+                               "http://en.wikipedia.org. This is sometimes necessary because " .
+                               "server name detection may fail in command line scripts.", false, true );
+
+               # Save generic options to display them separately in help
+               $this->mGenericParameters = $this->mParams ;
+
+               # Script dependant options:
+
                // If we support a DB, show the options
                if ( $this->getDbType() > 0 ) {
                        $this->addOption( 'dbuser', 'The DB user to use for this script', false, true );
@@ -321,6 +412,9 @@ abstract class Maintenance {
                        $this->addOption( 'batch-size', 'Run this many operations ' .
                                'per batch, default: ' . $this->mBatchSize, false, true );
                }
+               # Save additional script dependant options to display
+               # them separately in help
+               $this->mDependantParameters = array_diff_key( $this->mParams, $this->mGenericParameters );
        }
 
        /**
@@ -330,11 +424,7 @@ abstract class Maintenance {
         * @param $classFile String: full path of where the child is
         * @return Maintenance child
         */
-       protected function runChild( $maintClass, $classFile = null ) {
-               // If we haven't already specified, kill setup procedures
-               // for child scripts, we've already got a sane environment
-               self::disableSetup();
-
+       public function runChild( $maintClass, $classFile = null ) {
                // Make sure the class is loaded first
                if ( !class_exists( $maintClass ) ) {
                        if ( $classFile ) {
@@ -350,23 +440,14 @@ abstract class Maintenance {
                return $child;
        }
 
-       /**
-        * Disable Setup.php mostly
-        */
-       protected static function disableSetup() {
-               if ( !defined( 'MW_NO_SETUP' ) ) {
-                       define( 'MW_NO_SETUP', true );
-               }
-       }
-
        /**
         * Do some sanity checking and basic setup
         */
        public function setup() {
-               global $IP, $wgCommandLineMode, $wgRequestTime;
+               global $wgCommandLineMode, $wgRequestTime;
 
                # Abort if called from a web server
-               if ( isset( $_SERVER ) && array_key_exists( 'REQUEST_METHOD', $_SERVER ) ) {
+               if ( isset( $_SERVER ) && isset( $_SERVER['REQUEST_METHOD'] ) ) {
                        $this->error( 'This script must be run from the command line', true );
                }
 
@@ -390,9 +471,12 @@ abstract class Maintenance {
                        // command-line mode is on, regardless of PHP version.
                }
 
+               $this->loadParamsAndArgs();
+               $this->maybeHelp();
+
                # Set the memory limit
                # Note we need to set it again later in cache LocalSettings changed it
-               ini_set( 'memory_limit', $this->memoryLimit() );
+               $this->adjustMemoryLimit();
 
                # Set max execution time to 0 (no limit). PHP.net says that
                # "When running PHP from the command line the default setting is 0."
@@ -404,27 +488,38 @@ abstract class Maintenance {
                # Define us as being in MediaWiki
                define( 'MEDIAWIKI', true );
 
-               # Setup $IP, using MW_INSTALL_PATH if it exists
-               $IP = strval( getenv( 'MW_INSTALL_PATH' ) ) !== ''
-                       ? getenv( 'MW_INSTALL_PATH' )
-                       : realpath( dirname( __FILE__ ) . '/..' );
-
                $wgCommandLineMode = true;
                # Turn off output buffering if it's on
                @ob_end_flush();
 
-               $this->loadParamsAndArgs();
-               $this->maybeHelp();
                $this->validateParamsAndArgs();
        }
 
        /**
         * Normally we disable the memory_limit when running admin scripts.
         * Some scripts may wish to actually set a limit, however, to avoid
-        * blowing up unexpectedly.
+        * blowing up unexpectedly. We also support a --memory-limit option,
+        * to allow sysadmins to explicitly set one if they'd prefer to override
+        * defaults (or for people using Suhosin which yells at you for trying
+        * to disable the limits)
         */
        public function memoryLimit() {
-               return -1;
+               $limit = $this->getOption( 'memory-limit', 'max' );
+               $limit = trim( $limit, "\" '" ); // trim quotes in case someone misunderstood
+               return $limit;
+       }
+
+       /**
+        * Adjusts PHP's memory limit to better suit our needs, if needed.
+        */
+       protected function adjustMemoryLimit() {
+               $limit = $this->memoryLimit();
+               if ( $limit == 'max' ) {
+                       $limit = -1; // no memory limit
+               }
+               if ( $limit != 'default' ) {
+                       ini_set( 'memory_limit', $limit );
+               }
        }
 
        /**
@@ -549,7 +644,7 @@ abstract class Maintenance {
                                $die = true;
                        }
                }
-               
+
                if ( $die ) {
                        $this->maybeHelp( true );
                }
@@ -578,52 +673,114 @@ abstract class Maintenance {
         * @param $force boolean Whether to force the help to show, default false
         */
        protected function maybeHelp( $force = false ) {
+               if( !$force && !$this->hasOption( 'help' ) ) {
+                       return;
+               }
+
                $screenWidth = 80; // TODO: Caculate this!
                $tab = "    ";
                $descWidth = $screenWidth - ( 2 * strlen( $tab ) );
-               
+
                ksort( $this->mParams );
-               if ( $this->hasOption( 'help' ) || $force ) {
-                       $this->mQuiet = false;
+               $this->mQuiet = false;
 
-                       if ( $this->mDescription ) {
-                               $this->output( "\n" . $this->mDescription . "\n" );
-                       }
-                       $output = "\nUsage: php " . basename( $this->mSelf );
-                       if ( $this->mParams ) {
-                               $output .= " [--" . implode( array_keys( $this->mParams ), "|--" ) . "]";
-                       }
-                       if ( $this->mArgList ) {
-                               $output .= " <";
-                               foreach ( $this->mArgList as $k => $arg ) {
-                                       $output .= $arg['name'] . ">";
-                                       if ( $k < count( $this->mArgList ) - 1 )
-                                               $output .= " <";
+               // Description ...
+               if ( $this->mDescription ) {
+                       $this->output( "\n" . $this->mDescription . "\n" );
+               }
+               $output = "\nUsage: php " . basename( $this->mSelf );
+
+               // ... append parameters ...
+               if ( $this->mParams ) {
+                       $output .= " [--" . implode( array_keys( $this->mParams ), "|--" ) . "]";
+               }
+
+               // ... and append arguments.
+               if ( $this->mArgList ) {
+                       $output .= ' ';
+                       foreach ( $this->mArgList as $k => $arg ) {
+                               if ( $arg['require'] ) {
+                                       $output .= '<' . $arg['name'] . '>';
+                               } else {
+                                       $output .= '[' . $arg['name'] . ']';
                                }
+                               if ( $k < count( $this->mArgList ) - 1 )
+                                       $output .= ' ';
                        }
-                       $this->output( "$output\n" );
-                       foreach ( $this->mParams as $par => $info ) {
+               }
+               $this->output( "$output\n\n" );
+
+               # TODO abstract some repetitive code below
+
+               // Generic parameters
+               $this->output( "Generic maintenance parameters:\n" );
+               foreach ( $this->mGenericParameters as $par => $info ) {
+                       $this->output(
+                               wordwrap( "$tab--$par: " . $info['desc'], $descWidth,
+                                               "\n$tab$tab" ) . "\n"
+                       );
+               }
+               $this->output( "\n" );
+
+               $scriptDependantParams = $this->mDependantParameters;
+               if( count($scriptDependantParams) > 0 ) {
+                       $this->output( "Script dependant parameters:\n" );
+                       // Parameters description
+                       foreach ( $scriptDependantParams as $par => $info ) {
+                               $this->output(
+                                       wordwrap( "$tab--$par: " . $info['desc'], $descWidth,
+                                                       "\n$tab$tab" ) . "\n"
+                               );
+                       }
+                       $this->output( "\n" );
+               }
+
+
+               // Script specific parameters not defined on construction by
+               // Maintenance::addDefaultParams()
+               $scriptSpecificParams = array_diff_key(
+                       # all script parameters:
+                       $this->mParams,
+                       # remove the Maintenance default parameters:
+                       $this->mGenericParameters,
+                       $this->mDependantParameters
+               );
+               if( count($scriptSpecificParams) > 0 ) {
+                       $this->output( "Script specific parameters:\n" );
+                       // Parameters description
+                       foreach ( $scriptSpecificParams as $par => $info ) {
                                $this->output(
-                                       wordwrap( "$tab$par : " . $info['desc'], $descWidth,
+                                       wordwrap( "$tab--$par: " . $info['desc'], $descWidth,
                                                        "\n$tab$tab" ) . "\n"
                                );
                        }
+                       $this->output( "\n" );
+               }
+
+               // Print arguments
+               if( count( $this->mArgList ) > 0 ) {
+                       $this->output( "Arguments:\n" );
+                       // Arguments description
                        foreach ( $this->mArgList as $info ) {
+                               $openChar = $info['require'] ? '<' : '[';
+                               $closeChar = $info['require'] ? '>' : ']';
                                $this->output(
-                                       wordwrap( "$tab<" . $info['name'] . "> : " .
+                                       wordwrap( "$tab$openChar" . $info['name'] . "$closeChar: " .
                                                $info['desc'], $descWidth, "\n$tab$tab" ) . "\n"
                                );
                        }
-                       die( 1 );
+                       $this->output( "\n" );
                }
+
+               die( 1 );
        }
 
        /**
         * Handle some last-minute setup here.
         */
        public function finalSetup() {
-               global $wgCommandLineMode, $wgShowSQLErrors;
-               global $wgProfiling, $IP, $wgDBadminuser, $wgDBadminpassword;
+               global $wgCommandLineMode, $wgShowSQLErrors, $wgServer;
+               global $wgProfiling, $wgDBadminuser, $wgDBadminpassword;
                global $wgDBuser, $wgDBpassword, $wgDBservers, $wgLBFactoryConf;
 
                # Turn off output buffering again, it might have been turned on in the settings files
@@ -633,6 +790,11 @@ abstract class Maintenance {
                # Same with these
                $wgCommandLineMode = true;
 
+               # Override $wgServer
+               if( $this->hasOption( 'server') ) {
+                       $wgServer = $this->getOption( 'server', $wgServer );
+               }
+
                # If these were passed, use them
                if ( $this->mDbUser ) {
                        $wgDBadminuser = $this->mDbUser;
@@ -655,20 +817,27 @@ abstract class Maintenance {
                                $wgLBFactoryConf['serverTemplate']['user'] = $wgDBuser;
                                $wgLBFactoryConf['serverTemplate']['password'] = $wgDBpassword;
                        }
+                       LBFactory::destroyInstance();
                }
 
-               if ( defined( 'MW_CMDLINE_CALLBACK' ) ) {
-                       $fn = MW_CMDLINE_CALLBACK;
-                       $fn();
-               }
+               $this->afterFinalSetup();
 
                $wgShowSQLErrors = true;
                @set_time_limit( 0 );
-               ini_set( 'memory_limit', $this->memoryLimit() );
+               $this->adjustMemoryLimit();
 
                $wgProfiling = false; // only for Profiler.php mode; avoids OOM errors
        }
 
+       /**
+        * Execute a callback function at the end of initialisation
+        */
+       protected function afterFinalSetup() {
+               if ( defined( 'MW_CMDLINE_CALLBACK' ) ) {
+                       call_user_func( MW_CMDLINE_CALLBACK );
+               }
+       }
+
        /**
         * Potentially debug globals. Originally a feature only
         * for refreshLinks
@@ -721,7 +890,6 @@ abstract class Maintenance {
 
                putenv( 'wikilang=' . $lang );
 
-               $DP = $IP;
                ini_set( 'include_path', ".:$IP:$IP/includes:$IP/languages:$IP/maintenance" );
 
                if ( $lang == 'test' && $site == 'wikipedia' ) {
@@ -734,11 +902,13 @@ abstract class Maintenance {
         * @return String
         */
        public function loadSettings() {
-               global $wgWikiFarm, $wgCommandLineMode, $IP, $DP;
+               global $wgWikiFarm, $wgCommandLineMode, $IP;
 
                $wgWikiFarm = false;
                if ( isset( $this->mOptions['conf'] ) ) {
                        $settingsFile = $this->mOptions['conf'];
+               } else if ( defined("MW_CONFIG_FILE") ) {
+                       $settingsFile = MW_CONFIG_FILE;
                } else {
                        $settingsFile = "$IP/LocalSettings.php";
                }
@@ -753,10 +923,10 @@ abstract class Maintenance {
 
                if ( !is_readable( $settingsFile ) ) {
                        $this->error( "A copy of your installation's LocalSettings.php\n" .
-                                               "must exist and be readable in the source directory.", true );
+                                               "must exist and be readable in the source directory.\n" .
+                                               "Use --conf to specify it." , true );
                }
                $wgCommandLineMode = true;
-               $DP = $IP;
                return $settingsFile;
        }
 
@@ -765,7 +935,7 @@ abstract class Maintenance {
         * @param $delete Boolean: whether or not to actually delete the records
         * @author Rob Church <robchur@gmail.com>
         */
-       protected function purgeRedundantText( $delete = true ) {
+       public function purgeRedundantText( $delete = true ) {
                # Data should come off the master, wrapped in a transaction
                $dbw = wfGetDB( DB_MASTER );
                $dbw->begin();
@@ -840,7 +1010,6 @@ abstract class Maintenance {
         */
        protected static function getCoreScripts() {
                if ( !self::$mCoreScripts ) {
-                       self::disableSetup();
                        $paths = array(
                                dirname( __FILE__ ),
                                dirname( __FILE__ ) . '/gearman',
@@ -959,4 +1128,74 @@ abstract class Maintenance {
                return $title;
        }
 
+       /**
+        * Prompt the console for input
+        * @param $prompt String what to begin the line with, like '> '
+        * @return String response
+        */
+       public static function readconsole( $prompt = '> ' ) {
+               static $isatty = null;
+               if ( is_null( $isatty ) ) {
+                       $isatty = posix_isatty( 0 /*STDIN*/ );
+               }
+
+               if ( $isatty && function_exists( 'readline' ) ) {
+                       return readline( $prompt );
+               } else {
+                       if ( $isatty ) {
+                               $st = self::readlineEmulation( $prompt );
+                       } else {
+                               if ( feof( STDIN ) ) {
+                                       $st = false;
+                               } else {
+                                       $st = fgets( STDIN, 1024 );
+                               }
+                       }
+                       if ( $st === false ) return false;
+                       $resp = trim( $st );
+                       return $resp;
+               }
+       }
+
+       /**
+        * Emulate readline()
+        * @param $prompt String what to begin the line with, like '> '
+        * @return String
+        */
+       private static function readlineEmulation( $prompt ) {
+               $bash = Installer::locateExecutableInDefaultPaths( array( 'bash' ) );
+               if ( !wfIsWindows() && $bash ) {
+                       $retval = false;
+                       $encPrompt = wfEscapeShellArg( $prompt );
+                       $command = "read -er -p $encPrompt && echo \"\$REPLY\"";
+                       $encCommand = wfEscapeShellArg( $command );
+                       $line = wfShellExec( "$bash -c $encCommand", $retval );
+
+                       if ( $retval == 0 ) {
+                               return $line;
+                       } elseif ( $retval == 127 ) {
+                               // Couldn't execute bash even though we thought we saw it.
+                               // Shell probably spit out an error message, sorry :(
+                               // Fall through to fgets()...
+                       } else {
+                               // EOF/ctrl+D
+                               return false;
+                       }
+               }
+
+               // Fallback... we'll have no editing controls, EWWW
+               if ( feof( STDIN ) ) {
+                       return false;
+               }
+               print $prompt;
+               return fgets( STDIN, 1024 );
+       }
 }
+
+class FakeMaintenance extends Maintenance {
+       protected $mSelf = "FakeMaintenanceScript";
+       public function execute() {
+               return;
+       }
+}
+