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
25 * General controller for RevDel, used by both SpecialRevisiondelete and
27 * @ingroup RevisionDelete
29 class RevisionDeleter
{
30 /** List of known revdel types, with their corresponding list classes */
31 private static $allowedTypes = array(
32 'revision' => 'RevDelRevisionList',
33 'archive' => 'RevDelArchiveList',
34 'oldimage' => 'RevDelFileList',
35 'filearchive' => 'RevDelArchivedFileList',
36 'logging' => 'RevDelLogList',
39 /** Type map to support old log entries */
40 private static $deprecatedTypeMap = array(
41 'oldid' => 'revision',
42 'artimestamp' => 'archive',
43 'oldimage' => 'oldimage',
44 'fileid' => 'filearchive',
49 * Lists the valid possible types for revision deletion.
54 public static function getTypes() {
55 return array_keys( self
::$allowedTypes );
59 * Gets the canonical type name, if any.
62 * @param string $typeName
65 public static function getCanonicalTypeName( $typeName ) {
66 if ( isset( self
::$deprecatedTypeMap[$typeName] ) ) {
67 $typeName = self
::$deprecatedTypeMap[$typeName];
69 return isset( self
::$allowedTypes[$typeName] ) ?
$typeName : null;
73 * Instantiate the appropriate list class for a given list of IDs.
76 * @param string $typeName RevDel type, see RevisionDeleter::getTypes()
77 * @param IContextSource $context
83 public static function createList( $typeName, IContextSource
$context, Title
$title, array $ids ) {
84 $typeName = self
::getCanonicalTypeName( $typeName );
86 throw new MWException( __METHOD__
. ": Unknown RevDel type '$typeName'" );
88 $class = self
::$allowedTypes[$typeName];
89 return new $class( $context, $title, $ids );
93 * Checks for a change in the bitfield for a certain option and updates the
94 * provided array accordingly.
96 * @param string $desc Description to add to the array if the option was
98 * @param int $field The bitmask describing the single option.
99 * @param int $diff The xor of the old and new bitfields.
100 * @param int $new The new bitfield
101 * @param array $arr The array to update.
103 protected static function checkItem( $desc, $field, $diff, $new, &$arr ) {
104 if ( $diff & $field ) {
105 $arr[( $new & $field ) ?
0 : 1][] = $desc;
110 * Gets an array of message keys describing the changes made to the
111 * visibility of the revision.
113 * If the resulting array is $arr, then $arr[0] will contain an array of
114 * keys describing the items that were hidden, $arr[1] will contain
115 * an array of keys describing the items that were unhidden, and $arr[2]
116 * will contain an array with a single message key, which can be one of
117 * "revdelete-restricted", "revdelete-unrestricted" indicating (un)suppression
118 * or null to indicate nothing in particular.
119 * You can turn the keys in $arr[0] and $arr[1] into message keys by
120 * appending -hid and -unhid to the keys respectively.
122 * @param int $n The new bitfield.
123 * @param int $o The old bitfield.
124 * @return array An array as described above.
127 public static function getChanges( $n, $o ) {
129 $ret = array( 0 => array(), 1 => array(), 2 => array() );
130 // Build bitfield changes in language
131 self
::checkItem( 'revdelete-content',
132 Revision
::DELETED_TEXT
, $diff, $n, $ret );
133 self
::checkItem( 'revdelete-summary',
134 Revision
::DELETED_COMMENT
, $diff, $n, $ret );
135 self
::checkItem( 'revdelete-uname',
136 Revision
::DELETED_USER
, $diff, $n, $ret );
137 // Restriction application to sysops
138 if ( $diff & Revision
::DELETED_RESTRICTED
) {
139 if ( $n & Revision
::DELETED_RESTRICTED
) {
140 $ret[2][] = 'revdelete-restricted';
142 $ret[2][] = 'revdelete-unrestricted';
148 /** Get DB field name for URL param...
149 * Future code for other things may also track
150 * other types of revision-specific changes.
151 * @param string $typeName
152 * @return string One of log_id/rev_id/fa_id/ar_timestamp/oi_archive_name
154 public static function getRelationType( $typeName ) {
155 $typeName = self
::getCanonicalTypeName( $typeName );
159 return call_user_func( array( self
::$allowedTypes[$typeName], 'getRelationType' ) );
163 * Get the user right required for the RevDel type
165 * @param string $typeName
166 * @return string User right
168 public static function getRestriction( $typeName ) {
169 $typeName = self
::getCanonicalTypeName( $typeName );
173 return call_user_func( array( self
::$allowedTypes[$typeName], 'getRestriction' ) );
177 * Get the revision deletion constant for the RevDel type
179 * @param string $typeName
180 * @return int RevDel constant
182 public static function getRevdelConstant( $typeName ) {
183 $typeName = self
::getCanonicalTypeName( $typeName );
187 return call_user_func( array( self
::$allowedTypes[$typeName], 'getRevdelConstant' ) );
191 * Suggest a target for the revision deletion
193 * @param string $typeName
194 * @param Title|null $target User-supplied target
198 public static function suggestTarget( $typeName, $target, array $ids ) {
199 $typeName = self
::getCanonicalTypeName( $typeName );
203 return call_user_func( array( self
::$allowedTypes[$typeName], 'suggestTarget' ), $target, $ids );
207 * Checks if a revision still exists in the revision table.
208 * If it doesn't, returns the corresponding ar_timestamp field
209 * so that this key can be used instead.
211 * @param Title $title
215 public static function checkRevisionExistence( $title, $revid ) {
216 $dbr = wfGetDB( DB_SLAVE
);
217 $exists = $dbr->selectField( 'revision', '1',
218 array( 'rev_id' => $revid ), __METHOD__
);
224 $timestamp = $dbr->selectField( 'archive', 'ar_timestamp',
225 array( 'ar_namespace' => $title->getNamespace(),
226 'ar_title' => $title->getDBkey(),
227 'ar_rev_id' => $revid ), __METHOD__
);
233 * Put together a rev_deleted bitfield
235 * @param array $bitPars ExtractBitParams() params
236 * @param int $oldfield Current bitfield
239 public static function extractBitfield( array $bitPars, $oldfield ) {
240 // Build the actual new rev_deleted bitfield
242 foreach ( $bitPars as $const => $val ) {
244 $newBits |
= $const; // $const is the *_deleted const
245 } elseif ( $val == -1 ) {
246 $newBits |
= ( $oldfield & $const ); // use existing