3 * Update image metadata records.
5 * Usage: php rebuildImages.php [--missing] [--dry-run]
7 * --missing Crawl the uploads dir for images without records, and
10 * Copyright © 2005 Brion Vibber <brion@pobox.com>
11 * https://www.mediawiki.org/
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License along
24 * with this program; if not, write to the Free Software Foundation, Inc.,
25 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
26 * http://www.gnu.org/copyleft/gpl.html
29 * @author Brion Vibber <brion at pobox.com>
30 * @ingroup Maintenance
33 require_once __DIR__
. '/Maintenance.php';
36 * Maintenance script to update image metadata records.
38 * @ingroup Maintenance
40 class ImageBuilder
extends Maintenance
{
47 function __construct() {
48 parent
::__construct();
50 global $wgUpdateCompatibleMetadata;
51 //make sure to update old, but compatible img_metadata fields.
52 $wgUpdateCompatibleMetadata = true;
54 $this->mDescription
= 'Script to update image metadata records';
56 $this->addOption( 'missing', 'Check for files without associated database record' );
57 $this->addOption( 'dry-run', 'Only report, don\'t update the database' );
60 public function execute() {
61 $this->dbw
= wfGetDB( DB_MASTER
);
62 $this->maxLag
= 10; # if slaves are lagged more than 10 secs, wait
63 $this->dryrun
= $this->hasOption( 'dry-run' );
64 if ( $this->dryrun
) {
65 $GLOBALS['wgReadOnly'] = 'Dry run mode, image upgrades are suppressed';
68 if ( $this->hasOption( 'missing' ) ) {
69 $this->crawlMissing();
79 if ( !isset( $this->repo
) ) {
80 $this->repo
= RepoGroup
::singleton()->getLocalRepo();
88 $this->buildOldImage();
91 function init( $count, $table ) {
94 $this->count
= $count;
95 $this->startTime
= microtime( true );
96 $this->table
= $table;
99 function progress( $updated ) {
100 $this->updated +
= $updated;
102 if ( $this->processed %
100 != 0 ) {
105 $portion = $this->processed
/ $this->count
;
106 $updateRate = $this->updated
/ $this->processed
;
108 $now = microtime( true );
109 $delta = $now - $this->startTime
;
110 $estimatedTotalTime = $delta / $portion;
111 $eta = $this->startTime +
$estimatedTotalTime;
112 $rate = $this->processed
/ $delta;
114 $this->output( sprintf( "%s: %6.2f%% done on %s; ETA %s [%d/%d] %.2f/sec <%.2f%% updated>\n",
115 wfTimestamp( TS_DB
, intval( $now ) ),
118 wfTimestamp( TS_DB
, intval( $eta ) ),
122 $updateRate * 100.0 ) );
126 function buildTable( $table, $key, $callback ) {
127 $count = $this->dbw
->selectField( $table, 'count(*)', '', __METHOD__
);
128 $this->init( $count, $table );
129 $this->output( "Processing $table...\n" );
131 $result = wfGetDB( DB_SLAVE
)->select( $table, '*', array(), __METHOD__
);
133 foreach ( $result as $row ) {
134 $update = call_user_func( $callback, $row, null );
136 $this->progress( 1 );
138 $this->progress( 0 );
141 $this->output( "Finished $table... $this->updated of $this->processed rows updated\n" );
144 function buildImage() {
145 $callback = array( $this, 'imageCallback' );
146 $this->buildTable( 'image', 'img_name', $callback );
149 function imageCallback( $row, $copy ) {
150 // Create a File object from the row
151 // This will also upgrade it
152 $file = $this->getRepo()->newFileFromRow( $row );
154 return $file->getUpgraded();
157 function buildOldImage() {
158 $this->buildTable( 'oldimage', 'oi_archive_name', array( $this, 'oldimageCallback' ) );
161 function oldimageCallback( $row, $copy ) {
162 // Create a File object from the row
163 // This will also upgrade it
164 if ( $row->oi_archive_name
== '' ) {
165 $this->output( "Empty oi_archive_name for oi_name={$row->oi_name}\n" );
169 $file = $this->getRepo()->newFileFromRow( $row );
171 return $file->getUpgraded();
174 function crawlMissing() {
175 $this->getRepo()->enumFiles( array( $this, 'checkMissingImage' ) );
178 function checkMissingImage( $fullpath ) {
179 $filename = wfBaseName( $fullpath );
180 $row = $this->dbw
->selectRow( 'image',
182 array( 'img_name' => $filename ),
185 if ( !$row ) { // file not registered
186 $this->addMissingImage( $filename, $fullpath );
190 function addMissingImage( $filename, $fullpath ) {
193 $timestamp = $this->dbw
->timestamp( $this->getRepo()->getFileTimestamp( $fullpath ) );
195 $altname = $wgContLang->checkTitleEncoding( $filename );
196 if ( $altname != $filename ) {
197 if ( $this->dryrun
) {
198 $filename = $altname;
199 $this->output( "Estimating transcoding... $altname\n" );
201 # @todo FIXME: create renameFile()
202 $filename = $this->renameFile( $filename );
206 if ( $filename == '' ) {
207 $this->output( "Empty filename for $fullpath\n" );
211 if ( !$this->dryrun
) {
212 $file = wfLocalFile( $filename );
213 if ( !$file->recordUpload(
215 '(recovered file, missing upload log entry)',
222 $this->output( "Error uploading file $fullpath\n" );
227 $this->output( $fullpath . "\n" );
231 $maintClass = 'ImageBuilder';
232 require_once RUN_MAINTENANCE_IF_MAIN
;