2006-05-15 10:57:52 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Maintenance script to import one or more images from the local file system into
|
|
|
|
|
* the wiki without using the web-based interface
|
|
|
|
|
*
|
2007-01-20 15:09:52 +00:00
|
|
|
* @addtogroup Maintenance
|
2006-05-15 10:57:52 +00:00
|
|
|
* @author Rob Church <robchur@gmail.com>
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
require_once( 'commandLine.inc' );
|
|
|
|
|
require_once( 'importImages.inc.php' );
|
|
|
|
|
echo( "Import Images\n\n" );
|
|
|
|
|
|
|
|
|
|
# Need a directory and at least one extension
|
|
|
|
|
if( count( $args ) > 1 ) {
|
|
|
|
|
|
|
|
|
|
$dir = array_shift( $args );
|
|
|
|
|
|
|
|
|
|
# Check the allowed extensions
|
2007-05-09 19:09:33 +00:00
|
|
|
while( $ext = array_shift( $args ) ) {
|
2006-05-15 10:57:52 +00:00
|
|
|
$exts[] = ltrim( $ext, '.' );
|
2007-05-09 19:09:33 +00:00
|
|
|
}
|
|
|
|
|
|
2006-05-15 10:57:52 +00:00
|
|
|
# Search the directory given and pull out suitable candidates
|
|
|
|
|
$files = findFiles( $dir, $exts );
|
|
|
|
|
|
2007-03-27 20:53:33 +00:00
|
|
|
# Initialise the user for this operation
|
|
|
|
|
$user = isset( $options['user'] )
|
|
|
|
|
? User::newFromName( $options['user'] )
|
|
|
|
|
: User::newFromName( 'Maintenance script' );
|
|
|
|
|
if( !$user instanceof User )
|
|
|
|
|
$user = User::newFromName( 'Maintenance script' );
|
|
|
|
|
$wgUser = $user;
|
2007-05-09 19:09:33 +00:00
|
|
|
|
2006-09-11 13:12:52 +00:00
|
|
|
# Get the upload comment
|
|
|
|
|
$comment = isset( $options['comment'] )
|
|
|
|
|
? $options['comment']
|
|
|
|
|
: 'Importing image file';
|
2007-05-09 19:09:33 +00:00
|
|
|
|
2006-09-11 13:12:52 +00:00
|
|
|
# Get the license specifier
|
|
|
|
|
$license = isset( $options['license'] ) ? $options['license'] : '';
|
2007-05-09 19:09:33 +00:00
|
|
|
|
2006-05-15 10:57:52 +00:00
|
|
|
# Batch "upload" operation
|
2007-05-30 21:02:32 +00:00
|
|
|
global $wgUploadDirectory;
|
2007-06-05 18:39:02 +00:00
|
|
|
if( count( $files ) > 0 ) {
|
|
|
|
|
foreach( $files as $file ) {
|
|
|
|
|
$base = wfBaseName( $file );
|
|
|
|
|
|
|
|
|
|
# Validate a title
|
|
|
|
|
$title = Title::makeTitleSafe( NS_IMAGE, $base );
|
|
|
|
|
if( !is_object( $title ) ) {
|
|
|
|
|
echo( "{$base} could not be imported; a valid title cannot be produced\n" );
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Check existence
|
|
|
|
|
$image = wfLocalFile( $title );
|
|
|
|
|
if( $image->exists() ) {
|
|
|
|
|
echo( "{$base} could not be imported; a file with this name exists in the wiki\n" );
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Stash the file
|
|
|
|
|
echo( "Saving {$base}..." );
|
|
|
|
|
|
|
|
|
|
$archive = $image->publish( $file );
|
|
|
|
|
if ( WikiError::isError( $archive ) ) {
|
|
|
|
|
echo( "failed.\n" );
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
echo( "importing..." );
|
|
|
|
|
|
|
|
|
|
if ( $image->recordUpload( $archive, $comment, $license ) ) {
|
|
|
|
|
# We're done!
|
|
|
|
|
echo( "done.\n" );
|
|
|
|
|
} else {
|
|
|
|
|
echo( "failed.\n" );
|
|
|
|
|
}
|
2006-05-15 10:57:52 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
showUsage();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
exit();
|
|
|
|
|
|
|
|
|
|
function showUsage( $reason = false ) {
|
2007-05-09 19:09:33 +00:00
|
|
|
if( $reason ) {
|
2006-05-15 10:57:52 +00:00
|
|
|
echo( $reason . "\n" );
|
2007-05-09 19:09:33 +00:00
|
|
|
}
|
|
|
|
|
|
2006-09-11 13:12:52 +00:00
|
|
|
echo <<<END
|
|
|
|
|
USAGE: php importImages.php [options] <dir> <ext1> ...
|
|
|
|
|
|
|
|
|
|
<dir> : Path to the directory containing images to be imported
|
|
|
|
|
<ext1+> File extensions to import
|
|
|
|
|
|
|
|
|
|
Options:
|
|
|
|
|
--user=<username> Set username of uploader, default 'Image import script'
|
|
|
|
|
--comment=<text> Set upload summary comment, default 'Importing image file'
|
|
|
|
|
--license=<code> Use an optional license template
|
|
|
|
|
|
|
|
|
|
END;
|
2006-05-15 10:57:52 +00:00
|
|
|
exit();
|
|
|
|
|
}
|
|
|
|
|
|
2006-10-14 06:58:19 +00:00
|
|
|
?>
|