* Documentation
[lhc/web/wiklou.git] / install-utils.inc
index 1cd8560..6de9377 100644 (file)
@@ -4,7 +4,7 @@ function install_version_checks() {
        # We dare not turn output buffer _off_ since this will break completely
        # if PHP is globally configured to run through a gzip filter.
        @ob_implicit_flush( true );
-       
+
        if( !function_exists( 'version_compare' ) ) {
                # version_compare was introduced in 4.1.0
                die( "Your PHP version is much too old; 4.0.x will _not_ work. 4.3.2 or higher is recommended. ABORTING.\n" );
@@ -12,7 +12,7 @@ function install_version_checks() {
        if( version_compare( phpversion(), '4.3.2' ) < 0 ) {
                echo "WARNING: PHP 4.3.2 or higher is recommended. Older versions from 4.1.x up may work but are not actively supported.\n\n";
        }
-       
+
        if (!extension_loaded('mysql')) {
                if (!dl('mysql.so')) {
                        print 'Could not load MySQL driver! Please compile '.
@@ -20,7 +20,7 @@ function install_version_checks() {
                exit;
                }
        }
-       
+
        global $wgCommandLineMode;
        $wgCommandLineMode = true;
        umask( 000 );
@@ -57,12 +57,22 @@ function copydirectory( $source, $dest ) {
 }
 
 function readconsole( $prompt = '' ) {
-       if ( function_exists( 'readline' ) ) {
+       if ( function_exists( 'posix_isatty' ) && posix_isatty( STDIN ) ) {
+               $isatty = true;
+       } else {
+               $isatty = false;
+       }
+
+       if ( $isatty && function_exists( 'readline' ) ) {
                return readline( $prompt );
        } else {
-               print $prompt;
+               if ( $isatty ) {
+                       print $prompt;
+               }
                $fp = fopen( 'php://stdin', 'r' );
-               $resp = trim( fgets( $fp, 1024 ) );
+               $st = fgets($fp, 1024);
+               if ($st === false) return false;
+               $resp = trim( $st );
                fclose( $fp );
                return $resp;
        }
@@ -76,10 +86,12 @@ function replacevars( $ins ) {
        );
 
        foreach ( $varnames as $var ) {
-               global $$var;
-               $ins = str_replace( '{$' . $var . '}', $$var, $ins );
-               $ins = str_replace( '/*$' . $var . '*/`', '`' . $$var, $ins );
-               $ins = str_replace( '/*$' . $var . '*/', $$var, $ins );
+               if( isset( $GLOBALS[$var] ) ) {
+                       $val = addslashes( $GLOBALS[$var] );
+                       $ins = str_replace( '{$' . $var . '}', $val, $ins );
+                       $ins = str_replace( '/*$' . $var . '*/`', '`' . $val, $ins );
+                       $ins = str_replace( '/*$' . $var . '*/', $val, $ins );
+               }
        }
        return $ins;
 }
@@ -104,18 +116,19 @@ function dbsource( $fname, $database = false ) {
                if ( $sl < 0 ) { continue; }
                if ( '-' == $line{0} && '-' == $line{1} ) { continue; }
 
-               if ( ';' == $line{$sl} ) {
+               if ( ';' == $line{$sl} && ($sl < 2 || ';' != $line{$sl - 1})) {
                        $done = true;
                        $line = substr( $line, 0, $sl );
                }
 
                if ( '' != $cmd ) { $cmd .= ' '; }
-               $cmd .= $line;
+               $cmd .= "$line\n";
 
                if ( $done ) {
+                       $cmd = str_replace(';;', ";", $cmd);
                        $cmd = replacevars( $cmd );
                        if( $database )
-                               $res = $database->query( $cmd );
+                               $res = $database->query( $cmd, 'dbsource', true );
                        else
                                $res = mysql_query( $cmd );
 
@@ -138,7 +151,7 @@ function field_exists( $table, $field ) {
        $db =& wfGetDB( DB_SLAVE );
        $res = $db->query( "DESCRIBE $table", $fname );
        $found = false;
-       
+
        while ( $row = $db->fetchObject( $res ) ) {
                if ( $row->Field == $field ) {
                        $found = true;