Use IDatabase type hints in /maintenance
[lhc/web/wiklou.git] / maintenance / rebuildImages.php
1 <?php
2 /**
3 * Update image metadata records.
4 *
5 * Usage: php rebuildImages.php [--missing] [--dry-run]
6 * Options:
7 * --missing Crawl the uploads dir for images without records, and
8 * add them only.
9 *
10 * Copyright © 2005 Brion Vibber <brion@pobox.com>
11 * https://www.mediawiki.org/
12 *
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.
17 *
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.
22 *
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
27 *
28 * @file
29 * @author Brion Vibber <brion at pobox.com>
30 * @ingroup Maintenance
31 */
32
33 require_once __DIR__ . '/Maintenance.php';
34
35 use Wikimedia\Rdbms\IMaintainableDatabase;
36
37 /**
38 * Maintenance script to update image metadata records.
39 *
40 * @ingroup Maintenance
41 */
42 class ImageBuilder extends Maintenance {
43
44 /**
45 * @var IMaintainableDatabase
46 */
47 protected $dbw;
48
49 function __construct() {
50 parent::__construct();
51
52 global $wgUpdateCompatibleMetadata;
53 // make sure to update old, but compatible img_metadata fields.
54 $wgUpdateCompatibleMetadata = true;
55
56 $this->addDescription( 'Script to update image metadata records' );
57
58 $this->addOption( 'missing', 'Check for files without associated database record' );
59 $this->addOption( 'dry-run', 'Only report, don\'t update the database' );
60 }
61
62 public function execute() {
63 $this->dbw = $this->getDB( DB_MASTER );
64 $this->dryrun = $this->hasOption( 'dry-run' );
65 if ( $this->dryrun ) {
66 $GLOBALS['wgReadOnly'] = 'Dry run mode, image upgrades are suppressed';
67 }
68
69 if ( $this->hasOption( 'missing' ) ) {
70 $this->crawlMissing();
71 } else {
72 $this->build();
73 }
74 }
75
76 /**
77 * @return FileRepo
78 */
79 function getRepo() {
80 if ( !isset( $this->repo ) ) {
81 $this->repo = RepoGroup::singleton()->getLocalRepo();
82 }
83
84 return $this->repo;
85 }
86
87 function build() {
88 $this->buildImage();
89 $this->buildOldImage();
90 }
91
92 function init( $count, $table ) {
93 $this->processed = 0;
94 $this->updated = 0;
95 $this->count = $count;
96 $this->startTime = microtime( true );
97 $this->table = $table;
98 }
99
100 function progress( $updated ) {
101 $this->updated += $updated;
102 $this->processed++;
103 if ( $this->processed % 100 != 0 ) {
104 return;
105 }
106 $portion = $this->processed / $this->count;
107 $updateRate = $this->updated / $this->processed;
108
109 $now = microtime( true );
110 $delta = $now - $this->startTime;
111 $estimatedTotalTime = $delta / $portion;
112 $eta = $this->startTime + $estimatedTotalTime;
113 $rate = $this->processed / $delta;
114
115 $this->output( sprintf( "%s: %6.2f%% done on %s; ETA %s [%d/%d] %.2f/sec <%.2f%% updated>\n",
116 wfTimestamp( TS_DB, intval( $now ) ),
117 $portion * 100.0,
118 $this->table,
119 wfTimestamp( TS_DB, intval( $eta ) ),
120 $this->processed,
121 $this->count,
122 $rate,
123 $updateRate * 100.0 ) );
124 flush();
125 }
126
127 function buildTable( $table, $key, $callback ) {
128 $count = $this->dbw->selectField( $table, 'count(*)', '', __METHOD__ );
129 $this->init( $count, $table );
130 $this->output( "Processing $table...\n" );
131
132 $result = $this->getDB( DB_REPLICA )->select( $table, '*', [], __METHOD__ );
133
134 foreach ( $result as $row ) {
135 $update = call_user_func( $callback, $row, null );
136 if ( $update ) {
137 $this->progress( 1 );
138 } else {
139 $this->progress( 0 );
140 }
141 }
142 $this->output( "Finished $table... $this->updated of $this->processed rows updated\n" );
143 }
144
145 function buildImage() {
146 $callback = [ $this, 'imageCallback' ];
147 $this->buildTable( 'image', 'img_name', $callback );
148 }
149
150 function imageCallback( $row, $copy ) {
151 // Create a File object from the row
152 // This will also upgrade it
153 $file = $this->getRepo()->newFileFromRow( $row );
154
155 return $file->getUpgraded();
156 }
157
158 function buildOldImage() {
159 $this->buildTable( 'oldimage', 'oi_archive_name', [ $this, 'oldimageCallback' ] );
160 }
161
162 function oldimageCallback( $row, $copy ) {
163 // Create a File object from the row
164 // This will also upgrade it
165 if ( $row->oi_archive_name == '' ) {
166 $this->output( "Empty oi_archive_name for oi_name={$row->oi_name}\n" );
167
168 return false;
169 }
170 $file = $this->getRepo()->newFileFromRow( $row );
171
172 return $file->getUpgraded();
173 }
174
175 function crawlMissing() {
176 $this->getRepo()->enumFiles( [ $this, 'checkMissingImage' ] );
177 }
178
179 function checkMissingImage( $fullpath ) {
180 $filename = wfBaseName( $fullpath );
181 $row = $this->dbw->selectRow( 'image',
182 [ 'img_name' ],
183 [ 'img_name' => $filename ],
184 __METHOD__ );
185
186 if ( !$row ) { // file not registered
187 $this->addMissingImage( $filename, $fullpath );
188 }
189 }
190
191 function addMissingImage( $filename, $fullpath ) {
192 global $wgContLang;
193
194 $timestamp = $this->dbw->timestamp( $this->getRepo()->getFileTimestamp( $fullpath ) );
195
196 $altname = $wgContLang->checkTitleEncoding( $filename );
197 if ( $altname != $filename ) {
198 if ( $this->dryrun ) {
199 $filename = $altname;
200 $this->output( "Estimating transcoding... $altname\n" );
201 } else {
202 # @todo FIXME: create renameFile()
203 $filename = $this->renameFile( $filename );
204 }
205 }
206
207 if ( $filename == '' ) {
208 $this->output( "Empty filename for $fullpath\n" );
209
210 return;
211 }
212 if ( !$this->dryrun ) {
213 $file = wfLocalFile( $filename );
214 if ( !$file->recordUpload(
215 '',
216 '(recovered file, missing upload log entry)',
217 '',
218 '',
219 '',
220 false,
221 $timestamp
222 ) ) {
223 $this->output( "Error uploading file $fullpath\n" );
224
225 return;
226 }
227 }
228 $this->output( $fullpath . "\n" );
229 }
230 }
231
232 $maintClass = 'ImageBuilder';
233 require_once RUN_MAINTENANCE_IF_MAIN;