MediaWiki  1.27.2
RevDelFileList.php
Go to the documentation of this file.
1 <?php
25 class RevDelFileList extends RevDelList {
27  public $storeBatch;
28 
30  public $deleteBatch;
31 
33  public $cleanupBatch;
34 
35  public function getType() {
36  return 'oldimage';
37  }
38 
39  public static function getRelationType() {
40  return 'oi_archive_name';
41  }
42 
43  public static function getRestriction() {
44  return 'deleterevision';
45  }
46 
47  public static function getRevdelConstant() {
48  return File::DELETED_FILE;
49  }
50 
55  public function doQuery( $db ) {
56  $archiveNames = [];
57  foreach ( $this->ids as $timestamp ) {
58  $archiveNames[] = $timestamp . '!' . $this->title->getDBkey();
59  }
60 
61  return $db->select(
62  'oldimage',
64  [
65  'oi_name' => $this->title->getDBkey(),
66  'oi_archive_name' => $archiveNames
67  ],
68  __METHOD__,
69  [ 'ORDER BY' => 'oi_timestamp DESC' ]
70  );
71  }
72 
73  public function newItem( $row ) {
74  return new RevDelFileItem( $this, $row );
75  }
76 
77  public function clearFileOps() {
78  $this->deleteBatch = [];
79  $this->storeBatch = [];
80  $this->cleanupBatch = [];
81  }
82 
83  public function doPreCommitUpdates() {
85  $repo = RepoGroup::singleton()->getLocalRepo();
86  if ( $this->storeBatch ) {
87  $status->merge( $repo->storeBatch( $this->storeBatch, FileRepo::OVERWRITE_SAME ) );
88  }
89  if ( !$status->isOK() ) {
90  return $status;
91  }
92  if ( $this->deleteBatch ) {
93  $status->merge( $repo->deleteBatch( $this->deleteBatch ) );
94  }
95  if ( !$status->isOK() ) {
96  // Running cleanupDeletedBatch() after a failed storeBatch() with the DB already
97  // modified (but destined for rollback) causes data loss
98  return $status;
99  }
100  if ( $this->cleanupBatch ) {
101  $status->merge( $repo->cleanupDeletedBatch( $this->cleanupBatch ) );
102  }
103 
104  return $status;
105  }
106 
107  public function doPostCommitUpdates() {
108  $file = wfLocalFile( $this->title );
109  $file->purgeCache();
110  $file->purgeDescription();
111 
112  // Purge full images from cache
113  $purgeUrls = [];
114  foreach ( $this->ids as $timestamp ) {
115  $archiveName = $timestamp . '!' . $this->title->getDBkey();
116  $file->purgeOldThumbnails( $archiveName );
117  $purgeUrls[] = $file->getArchiveUrl( $archiveName );
118  }
120  new CdnCacheUpdate( $purgeUrls ),
122  );
123 
124  return Status::newGood();
125  }
126 
127  public function getSuppressBit() {
129  }
130 }
Abstract base class for a list of deletable items.
Definition: RevDelList.php:28
Handles purging appropriate CDN URLs given a title (or titles)
Item class for an oldimage table row.
wfLocalFile($title)
Get an object referring to a locally registered file.
List for oldimage table items.
const DELETED_FILE
Definition: File.php:52
static getRelationType()
static getRestriction()
if($limit) $timestamp
static singleton()
Get a RepoGroup instance.
Definition: RepoGroup.php:59
static getRevdelConstant()
static selectFields()
Fields in the oldimage table.
title
static addUpdate(DeferrableUpdate $update, $type=self::POSTSEND)
Add an update to the deferred list.
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
const DELETED_RESTRICTED
Definition: File.php:55
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
const OVERWRITE_SAME
Definition: FileRepo.php:40
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set $status
Definition: hooks.txt:1004
static newGood($value=null)
Factory function for good results.
Definition: Status.php:101