From: Tim Starling Date: Thu, 9 Oct 2008 02:26:49 +0000 (+0000) Subject: Image integrity checker X-Git-Tag: 1.31.0-rc.0~44833 X-Git-Url: https://git.cyclocoop.org/%7B%24admin_url%7Dmembres/%7B%7B%20url_for%28%27vote%27%2C%20idvote=vote.voteid%29%20%7D%7D?a=commitdiff_plain;h=359a097cb7c6db8bde320fdfd95e81c62424efb7;p=lhc%2Fweb%2Fwiklou.git Image integrity checker --- diff --git a/maintenance/checkImages.php b/maintenance/checkImages.php new file mode 100644 index 0000000000..534c5c28e3 --- /dev/null +++ b/maintenance/checkImages.php @@ -0,0 +1,45 @@ +getLocalRepo(); + +$numImages = 0; +$numGood = 0; + +do { + $res = $dbr->select( 'image', '*', array( 'img_name > ' . $dbr->addQuotes( $start ) ) ); + foreach ( $res as $row ) { + $numImages++; + $start = $row->img_name; + $file = $localRepo->newFileFromRow( $row ); + $path = $file->getPath(); + if ( !$path ) { + echo "{$row->img_name}: not locally accessible\n"; + continue; + } + $stat = @stat( $file->getPath() ); + if ( !$stat ) { + echo "{$row->img_name}: missing\n"; + continue; + } + + if ( $stat['size'] == 0 && $row->img_size != 0 ) { + echo "{$row->img_name}: truncated, was {$row->img_size}\n"; + continue; + } + + if ( $stat['size'] != $row->img_size ) { + echo "{$row->img_name}: size mismatch DB={$row->img_size}, actual={$row->img_size}\n"; + continue; + } + + $numGood++; + } + +} while ( $res->numRows() ); + +echo "Good images: $numGood/$numImages\n";