summaryrefslogtreecommitdiff
path: root/maintenance/importTextFile.php
blob: 625763be29ece8b53c6d9384794dc4ea8faabf45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<?php

/**
 * Maintenance script to insert an article, importing text from a file
 *
 * @package MediaWiki
 * @subpackage Maintenance
 * @author Rob Church <robchur@gmail.com>
 */

$options = array( 'help', 'norc' ); 
$optionsWithArgs = array( 'title', 'user', 'comment' );
require_once( 'commandLine.inc' );
require_once( 'importTextFile.inc' );
echo( "Import Text File\n\n" );

if( !isset( $options['help'] ) || !$options['help'] ) {

	# Check file existence
	$filename = $args[0];
	echo( "Using file '{$filename}'..." );
	if( file_exists( $filename ) ) {
		echo( "found.\n" );
	
		# Work out the title for the page	
		if( isset( $option['title'] ) || trim( $options['title'] ) != '' ) {
			$titleText = $options['title'];
			# Use the supplied title
			echo( "Using title '{$titleText}'..." );
			$title = Title::newFromText( $options['title'] );
		} else {
			# Attempt to make a title out of the filename
			echo( "Using title from filename..." );
			$title = titleFromFilename( $filename );
		}
		
		# Check the title's valid
		if( !is_null( $title ) && is_object( $title ) ) {
			echo( "ok.\n" );
		
			# Read in the text
			$text = file_get_contents( $filename );
			
			# Check the supplied user and fall back to a default if needed
			if( isset( $options['user'] ) && trim( $options['user'] ) != '' ) {
				$username = $options['user'];
			} else {
				$username = 'MediaWiki default';
			}
			echo( "Using user '{$username}'..." );
			$user = User::newFromName( $username );
			
			# Check the user's valid
			if( !is_null( $user ) && is_object( $user ) ) {
				echo( "ok.\n" );
				$wgUser =& $user;
			
				# If a comment was supplied, use it (replace _ with spaces ) else use a default
				if( isset( $options['comment'] ) || trim( $options['comment'] != '' ) ) {
					$comment = str_replace( '_', ' ', $options['comment'] );
				} else {
					$comment = 'Importing text file';
				}
				echo( "Using edit summary '{$comment}'.\n" );
			
				# Do we need to update recent changes?
				if( isset( $options['norc'] ) && $options['norc'] ) {
					$rc = false;
				} else {
					$rc = true;
				}
			
				# Attempt the insertion
				echo( "Attempting to insert page..." );
				$success = insertNewArticle( $title, $text, $user, $comment, $rc );
				if( $success ) {
					echo( "done.\n" );
				} else {
					echo( "failed. Title exists.\n" );
				}
			
			} else {
				# Dud user
				echo( "invalid username.\n" );
			}
			
		} else {
			# Dud title
			echo( "invalid title.\n" );
		}
		
	} else {
		# File not found
		echo( "not found.\n" );
	}

} else {
	# Show help
	echo( "Imports the contents of a text file into a wiki page.\n\n" );
	echo( "USAGE: php importTextFile.php [--help|--title <title>|--user <user>|--comment <comment>|--norc] <filename>\n\n" );
	echo( "              --help: Show this help information\n" );
	echo( "    --title <title> : Title for the new page; if not supplied, the filename is used as a base for the title\n" );
	echo( "      --user <user> : User to be associated with the edit; if not supplied, a default is used\n" );
	echo( "--comment <comment> : Edit summary to be associated with the edit; underscores are transformed into spaces; if not supplied, a default is used\n" );
	echo( "         <filename> : Path to the file containing the wikitext to import\n" );
	echo( "             --norc : Do not add a page creation event to recent changes\n" );

}
echo( "\n" );	

?>