DO NOT USE ! Simple database layer for postgresql based on existing mysql one. I...
[lhc/web/wiklou.git] / maintenance / rebuildMessages.php
index c0f8aa0..d97d16f 100755 (executable)
@@ -1,21 +1,81 @@
-<?
+<?php
+$wgCommandLineMode = true;
+# Turn off output buffering if it's on
+@ob_end_flush();
+       
+$sep = strchr( $include_path = ini_get( "include_path" ), ";" ) ? ";" : ":";
+if ( isset($argv[1]) && $argv[1] ) {
+       $lang = $argv[1];
+       putenv( "wikilang=$lang");
+       $settingsFile = "/apache/htdocs/{$argv[1]}/w/LocalSettings.php";
+       $newpath = "/apache/common/php$sep";
+} else {
+       $settingsFile = "../LocalSettings.php";
+       $newpath = "";
+}
+
+if ( isset($argv[2]) && $argv[2] == "update" ) {
+       $response = 1;
+} elseif ( isset($argv[2]) && $argv[2] == "reinitialise" ) {
+       $response = 2;
+} else {
+       $response = 0;
+}
 
-if ( ! is_readable( "../LocalSettings.php" ) ) {
+if ( ! is_readable( $settingsFile ) ) {
        print "A copy of your installation's LocalSettings.php\n" .
          "must exist in the source directory.\n";
        exit();
 }
 
+ini_set( "include_path", "../includes$sep../languages$sep$newpath$IP$sep$include_path" );
+
+$wgCommandLineMode = true;
 $DP = "../includes";
-include_once( "../LocalSettings.php" );
-include_once( "../AdminSettings.php" );
+require_once( $settingsFile );
 
-include_once( "{$IP}/Setup.php" );
-include_once( "./InitialiseMessages.inc" );
+require_once( "Setup.php" );
+require_once( "./InitialiseMessages.inc" );
+require_once( "../install-utils.inc" );
 $wgTitle = Title::newFromText( "Rebuild messages script" );
+$wgCommandLineMode = true;
 set_time_limit(0);
 
-initialiseMessages( true );
+if ( isset($argv) && count( $argv ) >= 3 ) {
+       $messages = loadArrayFromFile( $argv[3] );
+} else {
+       $messages = false;
+}
+
+if ( $response == 0 ) {
+       $row = wfGetArray( "cur", array("count(*) as c"), array("cur_namespace" => NS_MEDIAWIKI) );
+       print "Current namespace size: {$row->c}\n";
+
+       print   "1. Update messages to include latest additions to Language.php\n" . 
+               "2. Delete all messages and reinitialise namespace\n" .
+               "3. Quit\n\n".
+               
+               "Please enter a number: ";
+
+       do {
+               $response = IntVal(readconsole());
+               if ( $response >= 1 && $response <= 3 ) {
+                       $good = true;
+               } else {
+                       $good = false;
+                       print "Please type a number between 1 and 3: ";
+               }
+       } while ( !$good );
+}
+
+switch ( $response ) {
+       case 1:
+               initialiseMessages( false, $messages );
+               break;
+       case 2:
+               initialiseMessages( true, $messages );
+               break;
+}
 
 exit();