X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FcheckImages.php;h=378caa348b6ea4d839e4f0aa1347ce883959e6f6;hb=2fb2f17fb00214b4c7ff7e82f9b9127276d5b8cd;hp=2102bcf60c155b1e83a98c005033e41e379c8e51;hpb=59b60fc31194b3b09bba2c95b8ddf85c3f9e81bb;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/checkImages.php b/maintenance/checkImages.php index 2102bcf60c..378caa348b 100644 --- a/maintenance/checkImages.php +++ b/maintenance/checkImages.php @@ -1,63 +1,51 @@ mDescription = "Check images to see if they exist, are readable, etc"; - } - - public function execute() { - $batchSize = 1000; - $start = ''; - $dbr = wfGetDB( DB_SLAVE ); - - $numImages = 0; - $numGood = 0; - - do { - $res = $dbr->select( 'image', '*', array( 'img_name > ' . $dbr->addQuotes( $start ) ), - __METHOD__, array( 'LIMIT' => $batchSize ) ); - foreach ( $res as $row ) { - $numImages++; - $start = $row->img_name; - $file = RepoGroup::singleton()->getLocalRepo()->newFileFromRow( $row ); - $path = $file->getPath(); - if ( !$path ) { - $this->output( "{$row->img_name}: not locally accessible\n"; - continue; - } - $stat = @stat( $file->getPath() ); - if ( !$stat ) { - $this->output( "{$row->img_name}: missing\n" ); - continue; - } - - if ( $stat['mode'] & 040000 ) { - $this->output( "{$row->img_name}: is a directory\n" ); - continue; - } - - if ( $stat['size'] == 0 && $row->img_size != 0 ) { - $this->output( "{$row->img_name}: truncated, was {$row->img_size}\n" ); - continue; - } - - if ( $stat['size'] != $row->img_size ) { - $this->output( "{$row->img_name}: size mismatch DB={$row->img_size}, actual={$stat['size']}\n" ); - continue; - } - - $numGood++; - } - - } while ( $res->numRows() ); - - $this->output( "Good images: $numGood/$numImages\n" ); +$batchSize = 1000; +$start = ''; +$dbr = wfGetDB( DB_SLAVE ); +$localRepo = RepoGroup::singleton()->getLocalRepo(); + +$numImages = 0; +$numGood = 0; + +do { + $res = $dbr->select( 'image', '*', array( 'img_name > ' . $dbr->addQuotes( $start ) ), + 'checkImages.php', array( 'LIMIT' => $batchSize ) ); + 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['mode'] & 040000 ) { + echo "{$row->img_name}: is a directory\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={$stat['size']}\n"; + continue; + } + + $numGood++; } -} +} while ( $res->numRows() ); + +echo "Good images: $numGood/$numImages\n";