MediaWiki REL1_28
RevDelFileList.php
Go to the documentation of this file.
1<?php
28
31
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() {
84 $status = Status::newGood();
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( array $visibilityChangeMap ) {
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 }
119 DeferredUpdates::addUpdate(
120 new CdnCacheUpdate( $purgeUrls ),
121 DeferredUpdates::PRESEND
122 );
123
124 return Status::newGood();
125 }
126
127 public function getSuppressBit() {
129 }
130}
wfLocalFile( $title)
Get an object referring to a locally registered file.
Handles purging appropriate CDN URLs given a title (or titles)
const OVERWRITE_SAME
Definition FileRepo.php:40
const DELETED_RESTRICTED
Definition File.php:55
const DELETED_FILE
Definition File.php:52
static selectFields()
Fields in the oldimage table.
static singleton()
Get a RepoGroup instance.
Definition RepoGroup.php:59
Item class for an oldimage table row.
List for oldimage table items.
getSuppressBit()
Get the integer value of the flag used for suppression.
static getRelationType()
Get the DB field name associated with the ID list.
doPostCommitUpdates(array $visibilityChangeMap)
A hook for setVisibility(): do any necessary updates post-commit.
doPreCommitUpdates()
A hook for setVisibility(): do batch updates pre-commit.
clearFileOps()
Clear any data structures needed for doPreCommitUpdates() and doPostCommitUpdates() STUB.
newItem( $row)
Create an item object from a DB result row.
getType()
Get the internal type name of this list.
static getRevdelConstant()
Get the revision deletion constant for this list type Override this function.
static getRestriction()
Get the user right required for this list type Override this function.
Abstract base class for a list of deletable items.
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
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:1049
the array() calling protocol came about after MediaWiki 1.4rc1.
if( $limit) $timestamp
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:37
title