Self-revert r105872, there's a deeper issue here
[lhc/web/wiklou.git] / maintenance / importTextFile.php
index a29d879..b78ae03 100644 (file)
-<?php\r
-\r
-/**\r
- * Maintenance script allows creating or editing pages using\r
- * the contents of a text file\r
- *\r
- * @package MediaWiki\r
- * @subpackage Maintenance\r
- * @author Rob Church <robchur@gmail.com>\r
- */\r
\r
-$options = array( 'help', 'nooverwrite' ); \r
-$optionsWithArgs = array( 'title', 'user', 'comment' );\r
-require_once( 'commandLine.inc' );\r
-echo( "Import Text File\n\n" );\r
-\r
-if( isset( $options['help'] ) ) {\r
-       showHelp();\r
-} else {\r
-\r
-       $filename = $args[0];\r
-       echo( "Using {$filename}..." );\r
-       if( is_file( $filename ) ) {\r
-               \r
-               $title = isset( $options['title'] ) ? $options['title'] : titleFromFilename( $filename );\r
-               $title = Title::newFromUrl( $title );\r
-               echo( "\nUsing title '" . $title->getPrefixedText() . "'..." );\r
-               \r
-               if( is_object( $title ) ) {\r
-                       \r
-                       if( !$title->exists() || !isset( $options['nooverwrite'] ) ) {\r
-                       \r
-                               $text = file_get_contents( $filename );\r
-                               $user = isset( $options['user'] ) ? $options['user'] : 'MediaWiki default';\r
-                               $user = User::newFromName( $user );\r
-                               echo( "\nUsing username '" . $user->getName() . "'..." );\r
-                               \r
-                               if( is_object( $user ) ) {\r
-                               \r
-                                       $wgUser =& $user;\r
-                                       $comment = isset( $options['comment'] ) ? $options['comment'] : 'Importing text file';\r
-                                       $comment = str_replace( '_', ' ', $comment );\r
-                                       \r
-                                       echo( "\nPerforming edit..." );\r
-                                       $article = new Article( $title );\r
-                                       $article->doEdit( $text, $comment );\r
-                                       echo( "done.\n" );\r
-                               \r
-                               } else {\r
-                                       echo( "invalid username.\n" );\r
-                               }\r
-                       \r
-                       } else {\r
-                               echo( "page exists.\n" );\r
-                       }\r
-                       \r
-               } else {\r
-                       echo( "invalid title.\n" );\r
-               }\r
-               \r
-       } else {\r
-               echo( "does not exist.\n" );\r
-       }\r
-\r
-}\r
-\r
-function titleFromFilename( $filename ) {\r
-       $parts = explode( '/', $filename );\r
-       $parts = explode( '.', $parts[ count( $parts ) - 1 ] );\r
-       return $parts[0];\r
-}\r
-\r
-function showHelp() {\r
-       echo( "Import the contents of a text file into a wiki page.\n\n" );\r
-       echo( "USAGE: php importTextFile.php [--help|--title <title>|--user <user>|--comment <comment>|--nooverwrite] <filename>\n\n" );\r
-       echo( "              --help: Show this help information\n" );\r
-       echo( "    --title <title> : Title for the new page; if not supplied, the filename is used as a base for the title\n" );\r
-       echo( "      --user <user> : User to be associated with the edit; if not supplied, a default is used\n" );\r
-       echo( "--comment <comment> : Edit summary to be associated with the edit; underscores are transformed into spaces; if not supplied, a default is used\n" );\r
-       echo( "      --nooverwrite : Don't overwrite existing page content\n" );\r
-       echo( "         <filename> : Path to the file containing the wikitext to import\n\n" );\r
-}\r
-\r
-?>
\ No newline at end of file
+<?php
+
+/**
+ * Maintenance script allows creating or editing pages using
+ * the contents of a text file
+ *
+ * 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
+ * @author Rob Church <robchur@gmail.com>
+ */
+
+$options = array( 'help', 'nooverwrite', 'norc' );
+$optionsWithArgs = array( 'title', 'user', 'comment' );
+require_once( dirname( __FILE__ ) . '/commandLine.inc' );
+echo( "Import Text File\n\n" );
+
+if ( count( $args ) < 1 || isset( $options['help'] ) ) {
+       showHelp();
+} else {
+
+       $filename = $args[0];
+       echo( "Using {$filename}..." );
+       if ( is_file( $filename ) ) {
+
+               $title = isset( $options['title'] ) ? $options['title'] : titleFromFilename( $filename );
+               $title = Title::newFromURL( $title );
+
+               if ( is_object( $title ) ) {
+
+                       echo( "\nUsing title '" . $title->getPrefixedText() . "'..." );
+                       if ( !$title->exists() || !isset( $options['nooverwrite'] ) ) {
+
+                               $text = file_get_contents( $filename );
+                               $user = isset( $options['user'] ) ? $options['user'] : 'Maintenance script';
+                               $user = User::newFromName( $user );
+
+                               if ( is_object( $user ) ) {
+
+                                       echo( "\nUsing username '" . $user->getName() . "'..." );
+                                       $wgUser =& $user;
+                                       $comment = isset( $options['comment'] ) ? $options['comment'] : 'Importing text file';
+                                       $flags = 0 | ( isset( $options['norc'] ) ? EDIT_SUPPRESS_RC : 0 );
+
+                                       echo( "\nPerforming edit..." );
+                                       $article = new Article( $title );
+                                       $article->doEdit( $text, $comment, $flags );
+                                       echo( "done.\n" );
+
+                               } else {
+                                       echo( "invalid username.\n" );
+                               }
+
+                       } else {
+                               echo( "page exists.\n" );
+                       }
+
+               } else {
+                       echo( "invalid title.\n" );
+               }
+
+       } else {
+               echo( "does not exist.\n" );
+       }
+
+}
+
+function titleFromFilename( $filename ) {
+       $parts = explode( '/', $filename );
+       $parts = explode( '.', $parts[ count( $parts ) - 1 ] );
+       return $parts[0];
+}
+
+function showHelp() {
+print <<<EOF
+USAGE: php importTextFile.php <options> <filename>
+
+<filename> : Path to the file containing page content to import
+
+Options:
+
+--title <title>
+       Title for the new page; default is to use the filename as a base
+--user <user>
+       User to be associated with the edit
+--comment <comment>
+       Edit summary
+--nooverwrite
+       Don't overwrite existing content
+--norc
+       Don't update recent changes
+--help
+       Show this information
+
+EOF;
+}