96 $dbw = $this->file->repo->getPrimaryDB();
97 $result = $dbw->newSelectQueryBuilder()
98 ->select( [
'oi_archive_name' ] )
100 ->where( [
'oi_name' => $this->file->getName() ] )
101 ->caller( __METHOD__ )->fetchResultSet();
103 foreach ( $result as $row ) {
104 $this->
addOld( $row->oi_archive_name );
105 $archiveNames[] = $row->oi_archive_name;
108 return $archiveNames;
133 [ $oldRels, $deleteCurrent ] = $this->
getOldRels();
135 if ( $deleteCurrent ) {
136 $hashes[
'.'] = $this->file->getSha1();
139 if ( count( $oldRels ) ) {
140 $dbw = $this->file->repo->getPrimaryDB();
141 $res = $dbw->newSelectQueryBuilder()
142 ->select( [
'oi_archive_name',
'oi_sha1' ] )
145 'oi_archive_name' => array_map(
'strval', array_keys( $oldRels ) ),
146 'oi_name' => $this->file->getName()
148 ->caller( __METHOD__ )->fetchResultSet();
150 foreach ( $res as $row ) {
151 if ( $row->oi_archive_name ===
'' ) {
153 $hashes[$row->oi_archive_name] =
false;
156 if ( rtrim( $row->oi_sha1,
"\0" ) ===
'' ) {
158 $oldUrl = $this->file->getArchiveVirtualUrl( $row->oi_archive_name );
159 $props = $this->file->repo->getFileProps( $oldUrl );
161 if ( $props[
'fileExists'] ) {
163 $dbw->newUpdateQueryBuilder()
164 ->update(
'oldimage' )
165 ->set( [
'oi_sha1' => $props[
'sha1'] ] )
167 'oi_name' => $this->file->getName(),
168 'oi_archive_name' => $row->oi_archive_name,
170 ->caller( __METHOD__ )->execute();
171 $hashes[$row->oi_archive_name] = $props[
'sha1'];
173 $hashes[$row->oi_archive_name] =
false;
176 $hashes[$row->oi_archive_name] = $row->oi_sha1;
181 $missing = array_diff_key( $this->srcRels, $hashes );
183 foreach ( $missing as $name => $rel ) {
184 $status->
error(
'filedelete-old-unregistered', $name );
187 foreach ( $hashes as $name => $hash ) {
189 $status->
error(
'filedelete-missing', $this->srcRels[$name] );
190 unset( $hashes[$name] );
199 $dbw = $this->file->repo->getPrimaryDB();
203 $encTimestamp = $dbw->addQuotes( $dbw->timestamp( $now ) );
204 $encUserId = $dbw->addQuotes( $this->user->getId() );
205 $encGroup = $dbw->addQuotes(
'deleted' );
206 $ext = $this->file->getExtension();
207 $dotExt = $ext ===
'' ?
'' :
".$ext";
208 $encExt = $dbw->addQuotes( $dotExt );
209 [ $oldRels, $deleteCurrent ] = $this->getOldRels();
212 if ( $this->suppress ) {
213 $bitfield = RevisionRecord::SUPPRESSED_ALL;
215 $bitfield =
'oi_deleted';
218 if ( $deleteCurrent ) {
219 $tables = [
'image' ];
221 'fa_storage_group' => $encGroup,
222 'fa_storage_key' => $dbw->conditional(
223 [
'img_sha1' =>
'' ],
224 $dbw->addQuotes(
'' ),
225 $dbw->buildConcat( [
"img_sha1", $encExt ] )
227 'fa_deleted_user' => $encUserId,
228 'fa_deleted_timestamp' => $encTimestamp,
229 'fa_deleted' => $this->suppress ? $bitfield : 0,
230 'fa_name' =>
'img_name',
231 'fa_archive_name' =>
'NULL',
232 'fa_size' =>
'img_size',
233 'fa_width' =>
'img_width',
234 'fa_height' =>
'img_height',
235 'fa_metadata' =>
'img_metadata',
236 'fa_bits' =>
'img_bits',
237 'fa_media_type' =>
'img_media_type',
238 'fa_major_mime' =>
'img_major_mime',
239 'fa_minor_mime' =>
'img_minor_mime',
240 'fa_description_id' =>
'img_description_id',
241 'fa_timestamp' =>
'img_timestamp',
242 'fa_sha1' =>
'img_sha1',
243 'fa_actor' =>
'img_actor',
247 $fields += array_map(
248 [ $dbw,
'addQuotes' ],
249 $commentStore->insert( $dbw,
'fa_deleted_reason', $this->reason )
252 $dbw->insertSelect(
'filearchive', $tables, $fields,
253 [
'img_name' => $this->file->getName() ], __METHOD__, [
'IGNORE' ], [], $joins );
256 if ( count( $oldRels ) ) {
260 ->where( [
'oi_name' => $this->file->getName() ] )
261 ->andWhere( [
'oi_archive_name' => array_map(
'strval', array_keys( $oldRels ) ) ] );
262 $res = $queryBuilder->caller( __METHOD__ )->fetchResultSet();
263 if ( $res->numRows() ) {
264 $reason = $commentStore->createComment( $dbw, $this->reason );
266 foreach ( $res as $row ) {
267 $comment = $commentStore->getComment(
'oi_description', $row );
270 'fa_storage_group' =>
'deleted',
271 'fa_storage_key' => ( $row->oi_sha1 ===
'' )
273 :
"{$row->oi_sha1}{$dotExt}",
274 'fa_deleted_user' => $this->user->getId(),
275 'fa_deleted_timestamp' => $dbw->timestamp( $now ),
277 'fa_deleted' => $this->suppress ? $bitfield : $row->oi_deleted,
278 'fa_name' => $row->oi_name,
279 'fa_archive_name' => $row->oi_archive_name,
280 'fa_size' => $row->oi_size,
281 'fa_width' => $row->oi_width,
282 'fa_height' => $row->oi_height,
283 'fa_metadata' => $row->oi_metadata,
284 'fa_bits' => $row->oi_bits,
285 'fa_media_type' => $row->oi_media_type,
286 'fa_major_mime' => $row->oi_major_mime,
287 'fa_minor_mime' => $row->oi_minor_mime,
288 'fa_actor' => $row->oi_actor,
289 'fa_timestamp' => $row->oi_timestamp,
290 'fa_sha1' => $row->oi_sha1
291 ] + $commentStore->insert( $dbw,
'fa_deleted_reason', $reason )
292 + $commentStore->insert( $dbw,
'fa_description', $comment );
294 $dbw->newInsertQueryBuilder()
295 ->insertInto(
'filearchive' )
297 ->rows( $rowsInsert )
298 ->caller( __METHOD__ )->execute();
364 $repo = $this->file->getRepo();
365 $lockStatus = $this->file->acquireFileLock();
366 if ( !$lockStatus->isOK() ) {
369 $unlockScope =
new ScopedCallback(
function () {
370 $this->file->releaseFileLock();
373 $status = $this->file->repo->
newGood();
375 $hashes = $this->getHashes( $status );
376 $this->deletionBatch = [];
377 $ext = $this->file->getExtension();
378 $dotExt = $ext ===
'' ?
'' :
".$ext";
380 foreach ( $this->srcRels as $name => $srcRel ) {
382 if ( isset( $hashes[$name] ) ) {
383 $hash = $hashes[$name];
384 $key = $hash . $dotExt;
385 $dstRel = $repo->getDeletedHashPath( $key ) . $key;
386 $this->deletionBatch[$name] = [ $srcRel, $dstRel ];
390 if ( !$repo->hasSha1Storage() ) {
393 $checkStatus = $this->removeNonexistentFiles( $this->deletionBatch );
394 if ( !$checkStatus->isGood() ) {
395 $status->merge( $checkStatus );
398 $this->deletionBatch = $checkStatus->value;
401 $status = $this->file->repo->deleteBatch( $this->deletionBatch );
402 if ( !$status->isGood() ) {
403 $status->merge( $status );
407 if ( !$status->isOK() ) {
412 $dbw = $this->file->repo->getPrimaryDB();
414 $dbw->startAtomic( __METHOD__ );
417 $this->doDBInserts();
419 $this->doDBDeletes();
423 $dbw->endAtomic( __METHOD__ );
426 ScopedCallback::consume( $unlockScope );
439 foreach ( $batch as [ $src, ] ) {
440 $files[$src] = $this->file->repo->getVirtualUrl(
'public' ) .
'/' . rawurlencode( $src );
443 $result = $this->file->repo->fileExistsBatch( $files );
444 if ( in_array(
null, $result,
true ) ) {
445 return Status::newFatal(
'backend-fail-internal',
446 $this->file->repo->getBackend()->getName() );
450 foreach ( $batch as $batchItem ) {
451 if ( $result[$batchItem[0]] ) {
452 $newBatch[] = $batchItem;
456 return Status::newGood( $newBatch );