X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FcheckImages.php;h=b720b1ca360e533a5bb129a24122ede2bfca55ec;hb=066984cbe3ccac2d54bcb2097f345836cd1a8141;hp=378caa348b6ea4d839e4f0aa1347ce883959e6f6;hpb=c49d1e8953c6f88cc3ca5bc981d998e4b69d68ac;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/checkImages.php b/maintenance/checkImages.php index 378caa348b..b720b1ca36 100644 --- a/maintenance/checkImages.php +++ b/maintenance/checkImages.php @@ -1,51 +1,83 @@ 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++; + public function __construct() { + parent::__construct(); + $this->mDescription = "Check images to see if they exist, are readable, etc"; + $this->setBatchSize( 1000 ); } + + public function execute() { + $start = ''; + $dbr = wfGetDB( DB_SLAVE ); -} while ( $res->numRows() ); + $numImages = 0; + $numGood = 0; + + do { + $res = $dbr->select( 'image', '*', array( 'img_name > ' . $dbr->addQuotes( $start ) ), + __METHOD__, array( 'LIMIT' => $this->mBatchSize ) ); + 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" ); + } +} -echo "Good images: $numGood/$numImages\n"; +$maintClass = "CheckImages"; +require_once( DO_MAINTENANCE );