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 require_once __DIR__
. '/Maintenance.php';
37 class ImportImages
extends Maintenance
{
39 public function __construct() {
40 parent
::__construct();
42 $this->addDescription( 'Imports images and other media files into the wiki' );
43 $this->addArg( 'dir', 'Path to the directory containing images to be imported' );
45 $this->addOption( 'extensions',
46 'Comma-separated list of allowable extensions, defaults to $wgFileExtensions',
50 $this->addOption( 'overwrite',
51 'Overwrite existing images with the same name (default is to skip them)' );
52 $this->addOption( 'limit',
53 'Limit the number of images to process. Ignored or skipped images are not counted',
57 $this->addOption( 'from',
58 "Ignore all files until the one with the given name. Useful for resuming aborted "
59 . "imports. The name should be the file's canonical database form.",
63 $this->addOption( 'skip-dupes',
64 'Skip images that were already uploaded under a different name (check SHA1)' );
65 $this->addOption( 'search-recursively', 'Search recursively for files in subdirectories' );
66 $this->addOption( 'sleep',
67 'Sleep between files. Useful mostly for debugging',
71 $this->addOption( 'user',
72 "Set username of uploader, default 'Maintenance script'",
76 // This parameter can optionally have an argument. If none specified, getOption()
77 // returns 1 which is precisely what we need.
78 $this->addOption( 'check-userblock', 'Check if the user got blocked during import' );
79 $this->addOption( 'comment',
80 "Set file description, default 'Importing file'",
84 $this->addOption( 'comment-file',
85 'Set description to the content of this file',
89 $this->addOption( 'comment-ext',
90 'Causes the description for each file to be loaded from a file with the same name, but '
91 . 'the extension provided. If a global description is also given, it is appended.',
95 $this->addOption( 'summary',
96 'Upload summary, description will be used if not provided',
100 $this->addOption( 'license',
101 'Use an optional license template',
105 $this->addOption( 'timestamp',
106 'Override upload time/date, all MediaWiki timestamp formats are accepted',
110 $this->addOption( 'protect',
111 'Specify the protect value (autoconfirmed,sysop)',
115 $this->addOption( 'unprotect', 'Unprotects all uploaded images' );
116 $this->addOption( 'source-wiki-url',
117 'If specified, take User and Comment data for each imported file from this URL. '
118 . 'For example, --source-wiki-url="http://en.wikipedia.org/',
122 $this->addOption( 'dry', "Dry run, don't import anything" );
125 public function execute() {
126 global $wgFileExtensions, $wgUser, $wgRestrictionLevels;
128 $processed = $added = $ignored = $skipped = $overwritten = $failed = 0;
130 $this->output( "Import Images\n\n" );
132 $dir = $this->getArg( 0 );
135 if ( $this->hasOption( 'protect' ) && $this->hasOption( 'unprotect' ) ) {
136 $this->error( "Cannot specify both protect and unprotect. Only 1 is allowed.\n", 1 );
139 if ( $this->hasOption( 'protect' ) && trim( $this->getOption( 'protect' ) ) ) {
140 $this->error( "You must specify a protection option.\n", 1 );
143 # Prepare the list of allowed extensions
144 $extensions = $this->hasOption( 'extensions' )
145 ?
explode( ',', strtolower( $this->getOption( 'extensions' ) ) )
148 # Search the path provided for candidates for import
149 $files = $this->findFiles( $dir, $extensions, $this->hasOption( 'search-recursively' ) );
151 # Initialise the user for this operation
152 $user = $this->hasOption( 'user' )
153 ? User
::newFromName( $this->getOption( 'user' ) )
154 : User
::newSystemUser( 'Maintenance script', [ 'steal' => true ] );
155 if ( !$user instanceof User
) {
156 $user = User
::newSystemUser( 'Maintenance script', [ 'steal' => true ] );
160 # Get block check. If a value is given, this specified how often the check is performed
161 $checkUserBlock = (int)$this->getOption( 'check-userblock' );
163 $from = $this->getOption( 'from' );
164 $sleep = (int)$this->getOption( 'sleep' );
165 $limit = (int)$this->getOption( 'limit' );
166 $timestamp = $this->getOption( 'timestamp', false );
168 # Get the upload comment. Provide a default one in case there's no comment given.
169 $commentFile = $this->getOption( 'comment-file' );
170 if ( $commentFile !== null ) {
171 $comment = file_get_contents( $commentFile );
172 if ( $comment === false ||
$comment === null ) {
173 $this->error( "failed to read comment file: {$commentFile}\n", 1 );
176 $comment = $this->getOption( 'comment', 'Importing file' );
178 $commentExt = $this->getOption( 'comment-ext' );
179 $summary = $this->getOption( 'summary', '' );
181 $license = $this->getOption( 'license', '' );
183 $sourceWikiUrl = $this->getOption( 'source-wiki-url' );
185 # Batch "upload" operation
186 $count = count( $files );
189 foreach ( $files as $file ) {
191 if ( $sleep && ( $processed > 0 ) ) {
195 $base = UtfNormal\Validator
::cleanUp( wfBaseName( $file ) );
198 $title = Title
::makeTitleSafe( NS_FILE
, $base );
199 if ( !is_object( $title ) ) {
201 "{$base} could not be imported; a valid title cannot be produced\n" );
206 if ( $from == $title->getDBkey() ) {
214 if ( $checkUserBlock && ( ( $processed %
$checkUserBlock ) == 0 ) ) {
215 $user->clearInstanceCache( 'name' ); // reload from DB!
216 if ( $user->isBlocked() ) {
217 $this->output( $user->getName() . " was blocked! Aborting.\n" );
223 $image = wfLocalFile( $title );
224 if ( $image->exists() ) {
225 if ( $this->hasOption( 'overwrite' ) ) {
226 $this->output( "{$base} exists, overwriting..." );
227 $svar = 'overwritten';
229 $this->output( "{$base} exists, skipping\n" );
234 if ( $this->hasOption( 'skip-dupes' ) ) {
235 $repo = $image->getRepo();
236 # XXX: we end up calculating this again when actually uploading. that sucks.
237 $sha1 = FSFile
::getSha1Base36FromPath( $file );
239 $dupes = $repo->findBySha1( $sha1 );
243 "{$base} already exists as {$dupes[0]->getName()}, skipping\n" );
249 $this->output( "Importing {$base}..." );
253 if ( $sourceWikiUrl ) {
254 /* find comment text directly from source wiki, through MW's API */
255 $real_comment = $this->getFileCommentFromSourceWiki( $sourceWikiUrl, $base );
256 if ( $real_comment === false ) {
257 $commentText = $comment;
259 $commentText = $real_comment;
262 /* find user directly from source wiki, through MW's API */
263 $real_user = $this->getFileUserFromSourceWiki( $sourceWikiUrl, $base );
264 if ( $real_user === false ) {
267 $wgUser = User
::newFromName( $real_user );
268 if ( $wgUser === false ) {
269 # user does not exist in target wiki
271 "failed: user '$real_user' does not exist in target wiki." );
277 $commentText = false;
280 $f = $this->findAuxFile( $file, $commentExt );
282 $this->output( " No comment file with extension {$commentExt} found "
283 . "for {$file}, using default comment. " );
285 $commentText = file_get_contents( $f );
286 if ( !$commentText ) {
288 " Failed to load comment file {$f}, using default comment. " );
293 if ( !$commentText ) {
294 $commentText = $comment;
299 if ( $this->hasOption( 'dry' ) ) {
301 " publishing {$file} by '{$wgUser->getName()}', comment '$commentText'... "
304 $mwProps = new MWFileProps( MimeMagic
::singleton() );
305 $props = $mwProps->getPropsFromPath( $file, true );
307 $publishOptions = [];
308 $handler = MediaHandler
::getHandler( $props['mime'] );
310 $publishOptions['headers'] = $handler->getStreamHeaders( $props['metadata'] );
312 $publishOptions['headers'] = [];
314 $archive = $image->publish( $file, $flags, $publishOptions );
315 if ( !$archive->isGood() ) {
316 $this->output( "failed. (" .
317 $archive->getWikiText( false, false, 'en' ) .
324 $commentText = SpecialUpload
::getInitialPageText( $commentText, $license );
325 if ( !$this->hasOption( 'summary' ) ) {
326 $summary = $commentText;
329 if ( $this->hasOption( 'dry' ) ) {
330 $this->output( "done.\n" );
331 } elseif ( $image->recordUpload2(
339 $this->output( "done.\n" );
343 $protectLevel = $this->getOption( 'protect' );
345 if ( $protectLevel && in_array( $protectLevel, $wgRestrictionLevels ) ) {
348 if ( $this->hasOption( 'unprotect' ) ) {
355 $this->output( "\nWaiting for replica DBs...\n" );
356 // Wait for replica DBs.
357 sleep( 2.0 ); # Why this sleep?
360 $this->output( "\nSetting image restrictions ... " );
364 foreach ( $title->getRestrictionTypes() as $type ) {
365 $restrictions[$type] = $protectLevel;
368 $page = WikiPage
::factory( $title );
369 $status = $page->doUpdateRestrictions( $restrictions, [], $cascade, '', $user );
370 $this->output( ( $status->isOK() ?
'done' : 'failed' ) . "\n" );
373 $this->output( "failed. (at recordUpload stage)\n" );
380 if ( $limit && $processed >= $limit ) {
385 # Print out some statistics
386 $this->output( "\n" );
391 'ignored' => 'Ignored',
393 'skipped' => 'Skipped',
394 'overwritten' => 'Overwritten',
399 $this->output( "{$desc}: {$$var}\n" );
403 $this->output( "No suitable files could be found for import.\n" );
408 * Search a directory for files with one of a set of extensions
410 * @param string $dir Path to directory to search
411 * @param array $exts Array of extensions to search for
412 * @param bool $recurse Search subdirectories recursively
413 * @return array|bool Array of filenames on success, or false on failure
415 private function findFiles( $dir, $exts, $recurse = false ) {
416 if ( is_dir( $dir ) ) {
417 $dhl = opendir( $dir );
420 while ( ( $file = readdir( $dhl ) ) !== false ) {
421 if ( is_file( $dir . '/' . $file ) ) {
422 list( /* $name */, $ext ) = $this->splitFilename( $dir . '/' . $file );
423 if ( array_search( strtolower( $ext ), $exts ) !== false ) {
424 $files[] = $dir . '/' . $file;
426 } elseif ( $recurse && is_dir( $dir . '/' . $file ) && $file !== '..' && $file !== '.' ) {
427 $files = array_merge( $files, $this->findFiles( $dir . '/' . $file, $exts, true ) );
441 * Split a filename into filename and extension
443 * @param string $filename Filename
446 private function splitFilename( $filename ) {
447 $parts = explode( '.', $filename );
448 $ext = $parts[count( $parts ) - 1];
449 unset( $parts[count( $parts ) - 1] );
450 $fname = implode( '.', $parts );
452 return [ $fname, $ext ];
456 * Find an auxilliary file with the given extension, matching
457 * the give base file path. $maxStrip determines how many extensions
458 * may be stripped from the original file name before appending the
459 * new extension. For example, with $maxStrip = 1 (the default),
460 * file files acme.foo.bar.txt and acme.foo.txt would be auxilliary
461 * files for acme.foo.bar and the extension ".txt". With $maxStrip = 2,
462 * acme.txt would also be acceptable.
464 * @param string $file Base path
465 * @param string $auxExtension The extension to be appended to the base path
466 * @param int $maxStrip The maximum number of extensions to strip from the base path (default: 1)
467 * @return string|bool
469 private function findAuxFile( $file, $auxExtension, $maxStrip = 1 ) {
470 if ( strpos( $auxExtension, '.' ) !== 0 ) {
471 $auxExtension = '.' . $auxExtension;
474 $d = dirname( $file );
475 $n = basename( $file );
477 while ( $maxStrip >= 0 ) {
478 $f = $d . '/' . $n . $auxExtension;
480 if ( file_exists( $f ) ) {
484 $idx = strrpos( $n, '.' );
489 $n = substr( $n, 0, $idx );
496 # @todo FIXME: Access the api in a saner way and performing just one query
497 # (preferably batching files too).
498 private function getFileCommentFromSourceWiki( $wiki_host, $file ) {
499 $url = $wiki_host . '/api.php?action=query&format=xml&titles=File:'
500 . rawurlencode( $file ) . '&prop=imageinfo&&iiprop=comment';
501 $body = Http
::get( $url, [], __METHOD__
);
502 if ( preg_match( '#<ii comment="([^"]*)" />#', $body, $matches ) == 0 ) {
506 return html_entity_decode( $matches[1] );
509 private function getFileUserFromSourceWiki( $wiki_host, $file ) {
510 $url = $wiki_host . '/api.php?action=query&format=xml&titles=File:'
511 . rawurlencode( $file ) . '&prop=imageinfo&&iiprop=user';
512 $body = Http
::get( $url, [], __METHOD__
);
513 if ( preg_match( '#<ii user="([^"]*)" />#', $body, $matches ) == 0 ) {
517 return html_entity_decode( $matches[1] );
522 $maintClass = 'ImportImages';
523 require_once RUN_MAINTENANCE_IF_MAIN
;