3 * Import one or more images from the local file system into the wiki without
4 * using the web-based interface.
6 * "Smart import" additions:
7 * - aim: preserve the essential metadata (user, description) when importing media
8 * files from an existing wiki.
10 * - interface with the source wiki, don't use bare files only (see --source-wiki-url).
11 * - fetch metadata from source wiki for each file to import.
12 * - commit the fetched metadata to the destination wiki while submitting.
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License along
25 * with this program; if not, write to the Free Software Foundation, Inc.,
26 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
27 * http://www.gnu.org/copyleft/gpl.html
30 * @ingroup Maintenance
31 * @author Rob Church <robchur@gmail.com>
32 * @author Mij <mij@bitchx.it>
35 $optionsWithArgs = array(
36 'extensions', 'comment', 'comment-file', 'comment-ext', 'summary', 'user',
37 'license', 'sleep', 'limit', 'from', 'source-wiki-url', 'timestamp',
39 require_once __DIR__
. '/commandLine.inc';
40 require_once __DIR__
. '/importImages.inc';
41 $processed = $added = $ignored = $skipped = $overwritten = $failed = 0;
43 echo "Import Images\n\n";
46 if ( count( $args ) == 0 ) {
53 if ( isset( $options['protect'] ) && isset( $options['unprotect'] ) ) {
54 die( "Cannot specify both protect and unprotect. Only 1 is allowed.\n" );
57 if ( isset( $options['protect'] ) && $options['protect'] == 1 ) {
58 die( "You must specify a protection option.\n" );
61 # Prepare the list of allowed extensions
62 global $wgFileExtensions;
63 $extensions = isset( $options['extensions'] )
64 ?
explode( ',', strtolower( $options['extensions'] ) )
67 # Search the path provided for candidates for import
68 $files = findFiles( $dir, $extensions, isset( $options['search-recursively'] ) );
70 # Initialise the user for this operation
71 $user = isset( $options['user'] )
72 ? User
::newFromName( $options['user'] )
73 : User
::newFromName( 'Maintenance script' );
74 if ( !$user instanceof User
) {
75 $user = User
::newFromName( 'Maintenance script' );
79 # Get block check. If a value is given, this specified how often the check is performed
80 if ( isset( $options['check-userblock'] ) ) {
81 if ( !$options['check-userblock'] ) {
84 $checkUserBlock = (int)$options['check-userblock'];
87 $checkUserBlock = false;
92 $from = $options['from'];
97 $sleep = $options['sleep'];
101 $sleep = (int)$sleep;
105 wfSuppressWarnings();
106 $limit = $options['limit'];
110 $limit = (int)$limit;
113 $timestamp = isset( $options['timestamp'] ) ?
$options['timestamp'] : false;
115 # Get the upload comment. Provide a default one in case there's no comment given.
116 $comment = 'Importing file';
118 if ( isset( $options['comment-file'] ) ) {
119 $comment = file_get_contents( $options['comment-file'] );
120 if ( $comment === false ||
$comment === null ) {
121 die( "failed to read comment file: {$options['comment-file']}\n" );
123 } elseif ( isset( $options['comment'] ) ) {
124 $comment = $options['comment'];
127 $commentExt = isset( $options['comment-ext'] ) ?
$options['comment-ext'] : false;
129 $summary = isset( $options['summary'] ) ?
$options['summary'] : '';
131 # Get the license specifier
132 $license = isset( $options['license'] ) ?
$options['license'] : '';
134 # Batch "upload" operation
135 $count = count( $files );
138 foreach ( $files as $file ) {
139 $base = wfBaseName( $file );
142 $title = Title
::makeTitleSafe( NS_FILE
, $base );
143 if ( !is_object( $title ) ) {
144 echo "{$base} could not be imported; a valid title cannot be produced\n";
149 if ( $from == $title->getDBkey() ) {
157 if ( $checkUserBlock && ( ( $processed %
$checkUserBlock ) == 0 ) ) {
158 $user->clearInstanceCache( 'name' ); // reload from DB!
159 if ( $user->isBlocked() ) {
160 echo $user->getName() . " was blocked! Aborting.\n";
166 $image = wfLocalFile( $title );
167 if ( $image->exists() ) {
168 if ( isset( $options['overwrite'] ) ) {
169 echo "{$base} exists, overwriting...";
170 $svar = 'overwritten';
172 echo "{$base} exists, skipping\n";
177 if ( isset( $options['skip-dupes'] ) ) {
178 $repo = $image->getRepo();
179 # XXX: we end up calculating this again when actually uploading. that sucks.
180 $sha1 = File
::sha1Base36( $file );
182 $dupes = $repo->findBySha1( $sha1 );
185 echo "{$base} already exists as " . $dupes[0]->getName() . ", skipping\n";
191 echo "Importing {$base}...";
195 if ( isset( $options['source-wiki-url'] ) ) {
196 /* find comment text directly from source wiki, through MW's API */
197 $real_comment = getFileCommentFromSourceWiki( $options['source-wiki-url'], $base );
198 if ( $real_comment === false ) {
199 $commentText = $comment;
201 $commentText = $real_comment;
204 /* find user directly from source wiki, through MW's API */
205 $real_user = getFileUserFromSourceWiki( $options['source-wiki-url'], $base );
206 if ( $real_user === false ) {
209 $wgUser = User
::newFromName( $real_user );
210 if ( $wgUser === false ) {
211 # user does not exist in target wiki
212 echo "failed: user '$real_user' does not exist in target wiki.";
218 $commentText = false;
221 $f = findAuxFile( $file, $commentExt );
223 echo " No comment file with extension {$commentExt} found "
224 . "for {$file}, using default comment. ";
226 $commentText = file_get_contents( $f );
227 if ( !$commentText ) {
228 echo " Failed to load comment file {$f}, using default comment. ";
233 if ( !$commentText ) {
234 $commentText = $comment;
239 if ( isset( $options['dry'] ) ) {
240 echo " publishing {$file} by '" . $wgUser->getName() . "', comment '$commentText'... ";
242 $props = FSFile
::getPropsFromPath( $file );
244 $publishOptions = array();
245 $handler = MediaHandler
::getHandler( $props['mime'] );
247 $publishOptions['headers'] = $handler->getStreamHeaders( $props['metadata'] );
249 $publishOptions['headers'] = array();
251 $archive = $image->publish( $file, $flags, $publishOptions );
252 if ( !$archive->isGood() ) {
254 $archive->getWikiText() .
261 $commentText = SpecialUpload
::getInitialPageText( $commentText, $license );
262 if ( !isset( $options['summary'] ) ) {
263 $summary = $commentText;
266 if ( isset( $options['dry'] ) ) {
268 } elseif ( $image->recordUpload2(
280 global $wgRestrictionLevels;
282 $protectLevel = isset( $options['protect'] ) ?
$options['protect'] : null;
284 if ( $protectLevel && in_array( $protectLevel, $wgRestrictionLevels ) ) {
287 if ( isset( $options['unprotect'] ) ) {
294 echo "\nWaiting for slaves...\n";
296 sleep( 2.0 ); # Why this sleep?
299 echo "\nSetting image restrictions ... ";
302 $restrictions = array();
303 foreach ( $title->getRestrictionTypes() as $type ) {
304 $restrictions[$type] = $protectLevel;
307 $page = WikiPage
::factory( $title );
308 $status = $page->doUpdateRestrictions( $restrictions, array(), $cascade, '', $user );
309 echo ( $status->isOK() ?
'done' : 'failed' ) . "\n";
312 echo "failed. (at recordUpload stage)\n";
319 if ( $limit && $processed >= $limit ) {
328 # Print out some statistics
334 'ignored' => 'Ignored',
336 'skipped' => 'Skipped',
337 'overwritten' => 'Overwritten',
342 echo "{$desc}: {$$var}\n";
346 echo "No suitable files could be found for import.\n";
351 function showUsage( $reason = false ) {
357 Imports images and other media files into the wiki
358 USAGE: php importImages.php [options] <dir>
360 <dir> : Path to the directory containing images to be imported
363 --extensions=<exts> Comma-separated list of allowable extensions, defaults
364 to \$wgFileExtensions.
365 --overwrite Overwrite existing images with the same name (default
367 --limit=<num> Limit the number of images to process. Ignored or
368 skipped images are not counted.
369 --from=<name> Ignore all files until the one with the given name.
370 Useful for resuming aborted imports. <name> should be
371 the file's canonical database form.
372 --skip-dupes Skip images that were already uploaded under a different
374 --search-recursively Search recursively for files in subdirectories.
375 --sleep=<sec> Sleep between files. Useful mostly for debugging.
376 --user=<username> Set username of uploader, default 'Maintenance script'.
377 --check-userblock Check if the user got blocked during import.
378 --comment=<text> Set file description, default 'Importing file'.
379 --comment-file=<file> Set description to the content of <file>.
380 --comment-ext=<ext> Causes the description for each file to be loaded from a
381 file with the same name, but the extension <ext>. If a
382 global description is also given, it is appended.
383 --license=<code> Use an optional license template.
384 --dry Dry run, don't import anything.
385 --protect=<protect> Specify the protect value (autoconfirmed,sysop).
386 --summary=<summary> Upload summary, description will be used if not
388 --timestamp=<timestamp> Override upload time/date, all MediaWiki timestamp
389 formats are accepted.
390 --unprotect Unprotects all uploaded images.
391 --source-wiki-url If specified, take User and Comment data for each
392 imported file from this URL. For example,
393 --source-wiki-url="http://en.wikipedia.org/."