MediaWiki REL1_29
RevDelList.php
Go to the documentation of this file.
1<?php
23
30abstract class RevDelList extends RevisionListBase {
32 parent::__construct( $context, $title );
33 $this->ids = $ids;
34 }
35
42 public static function getRelationType() {
43 return null;
44 }
45
52 public static function getRestriction() {
53 return null;
54 }
55
62 public static function getRevdelConstant() {
63 return null;
64 }
65
74 public static function suggestTarget( $target, array $ids ) {
75 return $target;
76 }
77
83 public function areAnySuppressed() {
84 $bit = $this->getSuppressBit();
85
87 foreach ( $this as $item ) {
88 if ( $item->getBits() & $bit ) {
89 return true;
90 }
91 }
92
93 return false;
94 }
95
108 public function setVisibility( array $params ) {
109 $status = Status::newGood();
110
111 $bitPars = $params['value'];
112 $comment = $params['comment'];
113 $perItemStatus = isset( $params['perItemStatus'] ) ? $params['perItemStatus'] : false;
114
115 // CAS-style checks are done on the _deleted fields so the select
116 // does not need to use FOR UPDATE nor be in the atomic section
117 $dbw = wfGetDB( DB_MASTER );
118 $this->res = $this->doQuery( $dbw );
119
120 $status->merge( $this->acquireItemLocks() );
121 if ( !$status->isGood() ) {
122 return $status;
123 }
124
125 $dbw->startAtomic( __METHOD__ );
126 $dbw->onTransactionResolution(
127 function () {
128 // Release locks on commit or error
129 $this->releaseItemLocks();
130 },
131 __METHOD__
132 );
133
134 $missing = array_flip( $this->ids );
135 $this->clearFileOps();
136 $idsForLog = [];
137 $authorIds = $authorIPs = [];
138
139 if ( $perItemStatus ) {
140 $status->itemStatuses = [];
141 }
142
143 // For multi-item deletions, set the old/new bitfields in log_params such that "hid X"
144 // shows in logs if field X was hidden from ANY item and likewise for "unhid Y". Note the
145 // form does not let the same field get hidden and unhidden in different items at once.
146 $virtualOldBits = 0;
147 $virtualNewBits = 0;
148 $logType = 'delete';
149
150 // Will be filled with id => [old, new bits] information and
151 // passed to doPostCommitUpdates().
152 $visibilityChangeMap = [];
153
155 foreach ( $this as $item ) {
156 unset( $missing[$item->getId()] );
157
158 if ( $perItemStatus ) {
159 $itemStatus = Status::newGood();
160 $status->itemStatuses[$item->getId()] = $itemStatus;
161 } else {
162 $itemStatus = $status;
163 }
164
165 $oldBits = $item->getBits();
166 // Build the actual new rev_deleted bitfield
167 $newBits = RevisionDeleter::extractBitfield( $bitPars, $oldBits );
168
169 if ( $oldBits == $newBits ) {
170 $itemStatus->warning(
171 'revdelete-no-change', $item->formatDate(), $item->formatTime() );
172 $status->failCount++;
173 continue;
174 } elseif ( $oldBits == 0 && $newBits != 0 ) {
175 $opType = 'hide';
176 } elseif ( $oldBits != 0 && $newBits == 0 ) {
177 $opType = 'show';
178 } else {
179 $opType = 'modify';
180 }
181
182 if ( $item->isHideCurrentOp( $newBits ) ) {
183 // Cannot hide current version text
184 $itemStatus->error(
185 'revdelete-hide-current', $item->formatDate(), $item->formatTime() );
186 $status->failCount++;
187 continue;
188 } elseif ( !$item->canView() ) {
189 // Cannot access this revision
190 $msg = ( $opType == 'show' ) ?
191 'revdelete-show-no-access' : 'revdelete-modify-no-access';
192 $itemStatus->error( $msg, $item->formatDate(), $item->formatTime() );
193 $status->failCount++;
194 continue;
195 // Cannot just "hide from Sysops" without hiding any fields
196 } elseif ( $newBits == Revision::DELETED_RESTRICTED ) {
197 $itemStatus->warning(
198 'revdelete-only-restricted', $item->formatDate(), $item->formatTime() );
199 $status->failCount++;
200 continue;
201 }
202
203 // Update the revision
204 $ok = $item->setBits( $newBits );
205
206 if ( $ok ) {
207 $idsForLog[] = $item->getId();
208 // If any item field was suppressed or unsupressed
209 if ( ( $oldBits | $newBits ) & $this->getSuppressBit() ) {
210 $logType = 'suppress';
211 }
212 // Track which fields where (un)hidden for each item
213 $addedBits = ( $oldBits ^ $newBits ) & $newBits;
214 $removedBits = ( $oldBits ^ $newBits ) & $oldBits;
215 $virtualNewBits |= $addedBits;
216 $virtualOldBits |= $removedBits;
217
218 $status->successCount++;
219 if ( $item->getAuthorId() > 0 ) {
220 $authorIds[] = $item->getAuthorId();
221 } elseif ( IP::isIPAddress( $item->getAuthorName() ) ) {
222 $authorIPs[] = $item->getAuthorName();
223 }
224
225 // Save the old and new bits in $visibilityChangeMap for
226 // later use.
227 $visibilityChangeMap[$item->getId()] = [
228 'oldBits' => $oldBits,
229 'newBits' => $newBits,
230 ];
231 } else {
232 $itemStatus->error(
233 'revdelete-concurrent-change', $item->formatDate(), $item->formatTime() );
234 $status->failCount++;
235 }
236 }
237
238 // Handle missing revisions
239 foreach ( $missing as $id => $unused ) {
240 if ( $perItemStatus ) {
241 $status->itemStatuses[$id] = Status::newFatal( 'revdelete-modify-missing', $id );
242 } else {
243 $status->error( 'revdelete-modify-missing', $id );
244 }
245 $status->failCount++;
246 }
247
248 if ( $status->successCount == 0 ) {
249 $dbw->endAtomic( __METHOD__ );
250 return $status;
251 }
252
253 // Save success count
254 $successCount = $status->successCount;
255
256 // Move files, if there are any
257 $status->merge( $this->doPreCommitUpdates() );
258 if ( !$status->isOK() ) {
259 // Fatal error, such as no configured archive directory or I/O failures
260 $lbFactory = MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
261 $lbFactory->rollbackMasterChanges( __METHOD__ );
262 return $status;
263 }
264
265 // Log it
266 $this->updateLog(
267 $logType,
268 [
269 'title' => $this->title,
270 'count' => $successCount,
271 'newBits' => $virtualNewBits,
272 'oldBits' => $virtualOldBits,
273 'comment' => $comment,
274 'ids' => $idsForLog,
275 'authorIds' => $authorIds,
276 'authorIPs' => $authorIPs,
277 'tags' => isset( $params['tags'] ) ? $params['tags'] : [],
278 ]
279 );
280
281 // Clear caches after commit
282 DeferredUpdates::addCallableUpdate(
283 function () use ( $visibilityChangeMap ) {
284 $this->doPostCommitUpdates( $visibilityChangeMap );
285 },
286 DeferredUpdates::PRESEND,
287 $dbw
288 );
289
290 $dbw->endAtomic( __METHOD__ );
291
292 return $status;
293 }
294
295 final protected function acquireItemLocks() {
296 $status = Status::newGood();
298 foreach ( $this as $item ) {
299 $status->merge( $item->lock() );
300 }
301
302 return $status;
303 }
304
305 final protected function releaseItemLocks() {
306 $status = Status::newGood();
308 foreach ( $this as $item ) {
309 $status->merge( $item->unlock() );
310 }
311
312 return $status;
313 }
314
319 function reloadFromMaster() {
320 $dbw = wfGetDB( DB_MASTER );
321 $this->res = $this->doQuery( $dbw );
322 }
323
338 private function updateLog( $logType, $params ) {
339 // Get the URL param's corresponding DB field
340 $field = RevisionDeleter::getRelationType( $this->getType() );
341 if ( !$field ) {
342 throw new MWException( "Bad log URL param type!" );
343 }
344 // Add params for affected page and ids
345 $logParams = $this->getLogParams( $params );
346 // Actually add the deletion log entry
347 $logEntry = new ManualLogEntry( $logType, $this->getLogAction() );
348 $logEntry->setTarget( $params['title'] );
349 $logEntry->setComment( $params['comment'] );
350 $logEntry->setParameters( $logParams );
351 $logEntry->setPerformer( $this->getUser() );
352 // Allow for easy searching of deletion log items for revision/log items
353 $logEntry->setRelations( [
354 $field => $params['ids'],
355 'target_author_id' => $params['authorIds'],
356 'target_author_ip' => $params['authorIPs'],
357 ] );
358 // Apply change tags to the log entry
359 $logEntry->setTags( $params['tags'] );
360 $logId = $logEntry->insert();
361 $logEntry->publish( $logId );
362 }
363
368 public function getLogAction() {
369 return 'revision';
370 }
371
377 public function getLogParams( $params ) {
378 return [
379 '4::type' => $this->getType(),
380 '5::ids' => $params['ids'],
381 '6::ofield' => $params['oldBits'],
382 '7::nfield' => $params['newBits'],
383 ];
384 }
385
390 public function clearFileOps() {
391 }
392
398 public function doPreCommitUpdates() {
399 return Status::newGood();
400 }
401
408 public function doPostCommitUpdates( array $visibilityChangeMap ) {
409 return Status::newGood();
410 }
411
415 abstract public function getSuppressBit();
416}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
getUser()
Get the User object.
IContextSource $context
MediaWiki exception.
Class for creating log entries manually, to inject them into the database.
Definition LogEntry.php:396
MediaWikiServices is the service locator for the application scope of MediaWiki.
Abstract base class for a list of deletable items.
setVisibility(array $params)
Set the visibility for the revisions in this list.
areAnySuppressed()
Indicate whether any item in this list is suppressed.
static suggestTarget( $target, array $ids)
Suggest a target for the revision deletion Optionally override this function.
doPreCommitUpdates()
A hook for setVisibility(): do batch updates pre-commit.
__construct(IContextSource $context, Title $title, array $ids)
static getRestriction()
Get the user right required for this list type Override this function.
getLogAction()
Get the log action for this list type.
clearFileOps()
Clear any data structures needed for doPreCommitUpdates() and doPostCommitUpdates() STUB.
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.
getSuppressBit()
Get the integer value of the flag used for suppression.
getLogParams( $params)
Get log parameter array.
static getRevdelConstant()
Get the revision deletion constant for this list type Override this function.
updateLog( $logType, $params)
Record a log entry on the action.
reloadFromMaster()
Reload the list data from the master DB.
static getRelationType( $typeName)
Get DB field name for URL param... Future code for other things may also track other types of revisio...
static extractBitfield(array $bitPars, $oldfield)
Put together a rev_deleted bitfield.
List for revision table items for a single page.
getType()
Get the internal type name of this list.
doQuery( $db)
Do the DB query to iterate through the objects.
const DELETED_RESTRICTED
Definition Revision.php:93
Represents a title within MediaWiki.
Definition Title.php:39
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
$lbFactory
the array() calling protocol came about after MediaWiki 1.4rc1.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup 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
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
Interface for objects which can provide a MediaWiki context on request.
title
const DB_MASTER
Definition defines.php:26
$params