3 * Revision/log/file deletion backend
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
21 * @ingroup RevisionDelete
24 use MediaWiki\Context\IContextSource
;
25 use MediaWiki\MediaWikiServices
;
26 use MediaWiki\Page\PageIdentity
;
27 use MediaWiki\Revision\RevisionRecord
;
28 use MediaWiki\Title\Title
;
31 * General controller for RevDel, used by both SpecialRevisiondelete and
33 * @ingroup RevisionDelete
35 class RevisionDeleter
{
37 * List of known revdel types, with their corresponding ObjectFactory spec to
38 * create the relevant class. All specs need to include DBLoadBalancerFactory,
39 * which is used in the base RevDelList class
41 private const ALLOWED_TYPES
= [
43 'class' => RevDelRevisionList
::class,
45 'DBLoadBalancerFactory',
52 'class' => RevDelArchiveList
::class,
54 'DBLoadBalancerFactory',
61 'class' => RevDelFileList
::class,
63 'DBLoadBalancerFactory',
69 'class' => RevDelArchivedFileList
::class,
71 'DBLoadBalancerFactory',
77 'class' => RevDelLogList
::class,
79 'DBLoadBalancerFactory',
81 'LogFormatterFactory',
86 /** Type map to support old log entries */
87 private const DEPRECATED_TYPE_MAP
= [
88 'oldid' => 'revision',
89 'artimestamp' => 'archive',
90 'oldimage' => 'oldimage',
91 'fileid' => 'filearchive',
96 * Lists the valid possible types for revision deletion.
101 public static function getTypes() {
102 return array_keys( self
::ALLOWED_TYPES
);
106 * Gets the canonical type name, if any.
109 * @param string $typeName
110 * @return string|null
112 public static function getCanonicalTypeName( $typeName ) {
113 if ( isset( self
::DEPRECATED_TYPE_MAP
[$typeName] ) ) {
114 $typeName = self
::DEPRECATED_TYPE_MAP
[$typeName];
116 return isset( self
::ALLOWED_TYPES
[$typeName] ) ?
$typeName : null;
120 * Instantiate the appropriate list class for a given list of IDs.
123 * @param string $typeName RevDel type, see RevisionDeleter::getTypes()
124 * @param IContextSource $context
125 * @param PageIdentity $page
129 public static function createList( $typeName, IContextSource
$context, PageIdentity
$page, array $ids ) {
130 $typeName = self
::getCanonicalTypeName( $typeName );
132 throw new InvalidArgumentException( __METHOD__
. ": Unknown RevDel type '$typeName'" );
134 $spec = self
::ALLOWED_TYPES
[$typeName];
135 $objectFactory = MediaWikiServices
::getInstance()->getObjectFactory();
137 // ObjectFactory::createObject accepts an array, not just a callable (phan bug)
138 // @phan-suppress-next-line PhanTypeInvalidCallableArrayKey
139 return $objectFactory->createObject(
142 'extraArgs' => [ $context, $page, $ids ],
143 'assertClass' => RevDelList
::class,
149 * Checks for a change in the bitfield for a certain option and updates the
150 * provided array accordingly.
152 * @param string $desc Description to add to the array if the option was
153 * enabled / disabled.
154 * @param int $field The bitmask describing the single option.
155 * @param int $diff The xor of the old and new bitfields.
156 * @param int $new The new bitfield
157 * @param array &$arr The array to update.
159 protected static function checkItem( $desc, $field, $diff, $new, &$arr ) {
160 if ( $diff & $field ) {
161 $arr[( $new & $field ) ?
0 : 1][] = $desc;
166 * Gets an array of message keys describing the changes made to the
167 * visibility of the revision.
169 * If the resulting array is $arr, then $arr[0] will contain an array of
170 * keys describing the items that were hidden, $arr[1] will contain
171 * an array of keys describing the items that were unhidden, and $arr[2]
172 * will contain an array with a single message key, which can be one of
173 * "revdelete-restricted", "revdelete-unrestricted" indicating (un)suppression
174 * or null to indicate nothing in particular.
175 * You can turn the keys in $arr[0] and $arr[1] into message keys by
176 * appending -hid and -unhid to the keys respectively.
178 * @param int $n The new bitfield.
179 * @param int $o The old bitfield.
180 * @return array An array as described above.
183 public static function getChanges( $n, $o ) {
185 $ret = [ 0 => [], 1 => [], 2 => [] ];
186 // Build bitfield changes in language
187 self
::checkItem( 'revdelete-content',
188 RevisionRecord
::DELETED_TEXT
, $diff, $n, $ret );
189 self
::checkItem( 'revdelete-summary',
190 RevisionRecord
::DELETED_COMMENT
, $diff, $n, $ret );
191 self
::checkItem( 'revdelete-uname',
192 RevisionRecord
::DELETED_USER
, $diff, $n, $ret );
193 // Restriction application to sysops
194 if ( $diff & RevisionRecord
::DELETED_RESTRICTED
) {
195 if ( $n & RevisionRecord
::DELETED_RESTRICTED
) {
196 $ret[2][] = 'revdelete-restricted';
198 $ret[2][] = 'revdelete-unrestricted';
204 /** Get DB field name for URL param...
205 * Future code for other things may also track
206 * other types of revision-specific changes.
207 * @param string $typeName
208 * @return string|null One of log_id/rev_id/fa_id/ar_timestamp/oi_archive_name
210 public static function getRelationType( $typeName ) {
211 $typeName = self
::getCanonicalTypeName( $typeName );
215 return call_user_func( [ self
::ALLOWED_TYPES
[$typeName]['class'], 'getRelationType' ] );
219 * Get the user right required for the RevDel type
221 * @param string $typeName
222 * @return string|null User right
224 public static function getRestriction( $typeName ) {
225 $typeName = self
::getCanonicalTypeName( $typeName );
229 return call_user_func( [ self
::ALLOWED_TYPES
[$typeName]['class'], 'getRestriction' ] );
233 * Get the revision deletion constant for the RevDel type
235 * @param string $typeName
236 * @return int|null RevDel constant
238 public static function getRevdelConstant( $typeName ) {
239 $typeName = self
::getCanonicalTypeName( $typeName );
243 return call_user_func( [ self
::ALLOWED_TYPES
[$typeName]['class'], 'getRevdelConstant' ] );
247 * Suggest a target for the revision deletion
249 * @param string $typeName
250 * @param Title|null $target User-supplied target
254 public static function suggestTarget( $typeName, $target, array $ids ) {
255 $typeName = self
::getCanonicalTypeName( $typeName );
259 return call_user_func(
260 [ self
::ALLOWED_TYPES
[$typeName]['class'], 'suggestTarget' ],
267 * Put together a rev_deleted bitfield
269 * @param array $bitPars ExtractBitParams() params
270 * @param int $oldfield Current bitfield
273 public static function extractBitfield( array $bitPars, $oldfield ) {
274 // Build the actual new rev_deleted bitfield
276 foreach ( $bitPars as $const => $val ) {
278 $newBits |
= $const; // $const is the *_deleted const
279 } elseif ( $val == -1 ) {
280 $newBits |
= ( $oldfield & $const ); // use existing