X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FeraseArchivedFile.php;h=ef6d3d8b895798b99465c824d600b4e15d32059f;hb=6a45c007420c27e502c8cd188b20954d004d6467;hp=05fbbbcb492f34202071e7db176f5217690c1386;hpb=f428f95ac49e71bde47bc982e31ff60b3ef41706;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/eraseArchivedFile.php b/maintenance/eraseArchivedFile.php index 05fbbbcb49..ef6d3d8b89 100644 --- a/maintenance/eraseArchivedFile.php +++ b/maintenance/eraseArchivedFile.php @@ -50,16 +50,17 @@ class EraseArchivedFile extends Maintenance { if ( $filekey === '*' ) { // all versions by name if ( !strlen( $filename ) ) { - $this->error( "Missing --filename parameter.", 1 ); + $this->fatalError( "Missing --filename parameter." ); } $afile = false; } else { // specified version $dbw = $this->getDB( DB_MASTER ); - $row = $dbw->selectRow( 'filearchive', ArchivedFile::selectFields(), + $fileQuery = ArchivedFile::getQueryInfo(); + $row = $dbw->selectRow( $fileQuery['tables'], $fileQuery['fields'], [ 'fa_storage_group' => 'deleted', 'fa_storage_key' => $filekey ], - __METHOD__ ); + __METHOD__, [], $fileQuery['joins'] ); if ( !$row ) { - $this->error( "No deleted file exists with key '$filekey'.", 1 ); + $this->fatalError( "No deleted file exists with key '$filekey'." ); } $filename = $row->fa_name; $afile = ArchivedFile::newFromRow( $row ); @@ -67,7 +68,7 @@ class EraseArchivedFile extends Maintenance { $file = wfLocalFile( $filename ); if ( $file->exists() ) { - $this->error( "File '$filename' is still a public file, use the delete form.\n", 1 ); + $this->fatalError( "File '$filename' is still a public file, use the delete form.\n" ); } $this->output( "Purging all thumbnails for file '$filename'..." ); @@ -85,9 +86,10 @@ class EraseArchivedFile extends Maintenance { protected function scrubAllVersions( $name ) { $dbw = $this->getDB( DB_MASTER ); - $res = $dbw->select( 'filearchive', ArchivedFile::selectFields(), + $fileQuery = ArchivedFile::getQueryInfo(); + $res = $dbw->select( $fileQuery['tables'], $fileQuery['fields'], [ 'fa_name' => $name, 'fa_storage_group' => 'deleted' ], - __METHOD__ ); + __METHOD__, [], $fileQuery['joins'] ); foreach ( $res as $row ) { $this->scrubVersion( ArchivedFile::newFromRow( $row ) ); } @@ -113,5 +115,5 @@ class EraseArchivedFile extends Maintenance { } } -$maintClass = "EraseArchivedFile"; +$maintClass = EraseArchivedFile::class; require_once RUN_MAINTENANCE_IF_MAIN;