Removed dead $undeletedRevisions code (useless since r87804)
[mediawiki.git] / includes / revisiondelete / RevisionDeleter.php
blob6e38c6e4e1b775fb925953af0db30525ea489619
1 <?php
2 /**
3 * Revision/log/file deletion backend
5 * @file
6 */
8 /**
9 * Temporary b/c interface, collection of static functions.
10 * @ingroup SpecialPage
12 class RevisionDeleter {
13 /**
14 * Checks for a change in the bitfield for a certain option and updates the
15 * provided array accordingly.
17 * @param $desc String: description to add to the array if the option was
18 * enabled / disabled.
19 * @param $field Integer: the bitmask describing the single option.
20 * @param $diff Integer: the xor of the old and new bitfields.
21 * @param $new Integer: the new bitfield
22 * @param $arr Array: the array to update.
24 protected static function checkItem( $desc, $field, $diff, $new, &$arr ) {
25 if( $diff & $field ) {
26 $arr[ ( $new & $field ) ? 0 : 1 ][] = $desc;
30 /**
31 * Gets an array of message keys describing the changes made to the visibility
32 * of the revision. If the resulting array is $arr, then $arr[0] will contain an
33 * array of strings describing the items that were hidden, $arr[2] will contain
34 * an array of strings describing the items that were unhidden, and $arr[3] will
35 * contain an array with a single string, which can be one of "applied
36 * restrictions to sysops", "removed restrictions from sysops", or null.
38 * @param $n Integer: the new bitfield.
39 * @param $o Integer: the old bitfield.
40 * @return An array as described above.
42 protected static function getChanges( $n, $o ) {
43 $diff = $n ^ $o;
44 $ret = array( 0 => array(), 1 => array(), 2 => array() );
45 // Build bitfield changes in language
46 self::checkItem( 'revdelete-content',
47 Revision::DELETED_TEXT, $diff, $n, $ret );
48 self::checkItem( 'revdelete-summary',
49 Revision::DELETED_COMMENT, $diff, $n, $ret );
50 self::checkItem( 'revdelete-uname',
51 Revision::DELETED_USER, $diff, $n, $ret );
52 // Restriction application to sysops
53 if( $diff & Revision::DELETED_RESTRICTED ) {
54 if( $n & Revision::DELETED_RESTRICTED )
55 $ret[2][] = 'revdelete-restricted';
56 else
57 $ret[2][] = 'revdelete-unrestricted';
59 return $ret;
62 /**
63 * Gets a log message to describe the given revision visibility change. This
64 * message will be of the form "[hid {content, edit summary, username}];
65 * [unhid {...}][applied restrictions to sysops] for $count revisions: $comment".
67 * @param $count Integer: The number of effected revisions.
68 * @param $nbitfield Integer: The new bitfield for the revision.
69 * @param $obitfield Integer: The old bitfield for the revision.
70 * @param $isForLog Boolean
71 * @param $forContent Boolean
73 public static function getLogMessage( $count, $nbitfield, $obitfield, $isForLog = false, $forContent = false ) {
74 global $wgLang, $wgContLang;
76 $lang = $forContent ? $wgContLang : $wgLang;
77 $msgFunc = $forContent ? "wfMsgForContent" : "wfMsg";
79 $changes = self::getChanges( $nbitfield, $obitfield );
80 array_walk( $changes, array( __CLASS__, 'expandMessageArray' ), $forContent );
82 $changesText = array();
84 if( count( $changes[0] ) ) {
85 $changesText[] = $msgFunc( 'revdelete-hid', $lang->commaList( $changes[0] ) );
87 if( count( $changes[1] ) ) {
88 $changesText[] = $msgFunc( 'revdelete-unhid', $lang->commaList( $changes[1] ) );
91 $s = $lang->semicolonList( $changesText );
92 if( count( $changes[2] ) ) {
93 $s .= $s ? ' (' . $changes[2][0] . ')' : ' ' . $changes[2][0];
96 $msg = $isForLog ? 'logdelete-log-message' : 'revdelete-log-message';
97 return wfMsgExt( $msg, $forContent ? array( 'parsemag', 'content' ) : array( 'parsemag' ), $s, $lang->formatNum($count) );
100 private static function expandMessageArray(& $msg, $key, $forContent) {
101 if ( is_array ( $msg ) ) {
102 array_walk( $msg, array( __CLASS__, 'expandMessageArray' ), $forContent );
103 } else {
104 if ( $forContent ) {
105 $msg = wfMsgForContent($msg);
106 } else {
107 $msg = wfMsg($msg);
112 // Get DB field name for URL param...
113 // Future code for other things may also track
114 // other types of revision-specific changes.
115 // @returns string One of log_id/rev_id/fa_id/ar_timestamp/oi_archive_name
116 public static function getRelationType( $typeName ) {
117 if ( isset( SpecialRevisionDelete::$deprecatedTypeMap[$typeName] ) ) {
118 $typeName = SpecialRevisionDelete::$deprecatedTypeMap[$typeName];
120 if ( isset( SpecialRevisionDelete::$allowedTypes[$typeName] ) ) {
121 $class = SpecialRevisionDelete::$allowedTypes[$typeName]['list-class'];
122 return call_user_func( array( $class, 'getRelationType' ) );
123 } else {
124 return null;
129 * Checks if a revision still exists in the revision table.
130 * If it doesn't, returns the corresponding ar_timestamp field
131 * so that this key can be used instead.
133 * @param $title Title
134 * @param $revid
135 * @return bool|mixed
137 public static function checkRevisionExistence( $title, $revid ) {
138 $dbr = wfGetDB( DB_SLAVE );
139 $exists = $dbr->selectField( 'revision', '1',
140 array( 'rev_id' => $revid ), __METHOD__ );
142 if ( $exists ) {
143 return true;
146 $timestamp = $dbr->selectField( 'archive', 'ar_timestamp',
147 array( 'ar_namespace' => $title->getNamespace(),
148 'ar_title' => $title->getDBkey(),
149 'ar_rev_id' => $revid ), __METHOD__ );
151 return $timestamp;
155 * Creates utility links for log entries.
157 * @param $title Title
158 * @param $paramArray Array
159 * @param $skin Skin
160 * @param $messages
161 * @return String
163 public static function getLogLinks( $title, $paramArray, $skin, $messages ) {
164 global $wgLang;
166 if ( count( $paramArray ) >= 2 ) {
167 // Different revision types use different URL params...
168 $originalKey = $key = $paramArray[0];
169 // $paramArray[1] is a CSV of the IDs
170 $Ids = explode( ',', $paramArray[1] );
172 $revert = array();
174 // Diff link for single rev deletions
175 if ( count( $Ids ) == 1 ) {
176 // Live revision diffs...
177 if ( in_array( $key, array( 'oldid', 'revision' ) ) ) {
178 $revert[] = $skin->link(
179 $title,
180 $messages['diff'],
181 array(),
182 array(
183 'diff' => intval( $Ids[0] ),
184 'unhide' => 1
186 array( 'known', 'noclasses' )
188 // Deleted revision diffs...
189 } elseif ( in_array( $key, array( 'artimestamp','archive' ) ) ) {
190 $revert[] = $skin->link(
191 SpecialPage::getTitleFor( 'Undelete' ),
192 $messages['diff'],
193 array(),
194 array(
195 'target' => $title->getPrefixedDBKey(),
196 'diff' => 'prev',
197 'timestamp' => $Ids[0]
199 array( 'known', 'noclasses' )
204 // View/modify link...
205 $revert[] = $skin->link(
206 SpecialPage::getTitleFor( 'Revisiondelete' ),
207 $messages['revdel-restore'],
208 array(),
209 array(
210 'target' => $title->getPrefixedText(),
211 'type' => $key,
212 'ids' => implode(',', $Ids),
214 array( 'known', 'noclasses' )
217 // Pipe links
218 return wfMsg( 'parentheses', $wgLang->pipeList( $revert ) );
220 return '';