Swap else if for elseif
[lhc/web/wiklou.git] / includes / revisiondelete / RevisionDeleter.php
1 <?php
2 /**
3 * Revision/log/file deletion backend
4 *
5 * @file
6 */
7
8 /**
9 * Temporary b/c interface, collection of static functions.
10 * @ingroup SpecialPage
11 */
12 class RevisionDeleter {
13 /**
14 * Checks for a change in the bitfield for a certain option and updates the
15 * provided array accordingly.
16 *
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.
23 */
24 protected static function checkItem( $desc, $field, $diff, $new, &$arr ) {
25 if( $diff & $field ) {
26 $arr[ ( $new & $field ) ? 0 : 1 ][] = $desc;
27 }
28 }
29
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.
37 *
38 * @param $n Integer: the new bitfield.
39 * @param $o Integer: the old bitfield.
40 * @return An array as described above.
41 */
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';
58 }
59 return $ret;
60 }
61
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".
66 *
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
72 */
73 public static function getLogMessage( $count, $nbitfield, $obitfield, $isForLog = false, $forContent = false ) {
74 global $wgLang, $wgContLang;
75
76 $lang = $forContent ? $wgContLang : $wgLang;
77 $msgFunc = $forContent ? "wfMsgForContent" : "wfMsg";
78
79 $changes = self::getChanges( $nbitfield, $obitfield );
80 array_walk( $changes, array( __CLASS__, 'expandMessageArray' ), $forContent );
81
82 $changesText = array();
83
84 if( count( $changes[0] ) ) {
85 $changesText[] = $msgFunc( 'revdelete-hid', $lang->commaList( $changes[0] ) );
86 }
87 if( count( $changes[1] ) ) {
88 $changesText[] = $msgFunc( 'revdelete-unhid', $lang->commaList( $changes[1] ) );
89 }
90
91 $s = $lang->semicolonList( $changesText );
92 if( count( $changes[2] ) ) {
93 $s .= $s ? ' (' . $changes[2][0] . ')' : ' ' . $changes[2][0];
94 }
95
96 $msg = $isForLog ? 'logdelete-log-message' : 'revdelete-log-message';
97 return wfMsgExt( $msg, $forContent ? array( 'parsemag', 'content' ) : array( 'parsemag' ), $s, $lang->formatNum($count) );
98 }
99
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);
108 }
109 }
110 }
111
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];
119 }
120 if ( isset( SpecialRevisionDelete::$allowedTypes[$typeName] ) ) {
121 $class = SpecialRevisionDelete::$allowedTypes[$typeName]['list-class'];
122 $list = new $class( null, null, null );
123 return $list->getIdField();
124 } else {
125 return null;
126 }
127 }
128
129 /**
130 * Checks if a revision still exists in the revision table.
131 * If it doesn't, returns the corresponding ar_timestamp field
132 * so that this key can be used instead.
133 *
134 * @param $title Title
135 * @param $revid
136 * @return bool|mixed
137 */
138 public static function checkRevisionExistence( $title, $revid ) {
139 $dbr = wfGetDB( DB_SLAVE );
140 $exists = $dbr->selectField( 'revision', '1',
141 array( 'rev_id' => $revid ), __METHOD__ );
142
143 if ( $exists ) {
144 return true;
145 }
146
147 $timestamp = $dbr->selectField( 'archive', 'ar_timestamp',
148 array( 'ar_namespace' => $title->getNamespace(),
149 'ar_title' => $title->getDBkey(),
150 'ar_rev_id' => $revid ), __METHOD__ );
151
152 return $timestamp;
153 }
154
155 /**
156 * Creates utility links for log entries.
157 *
158 * @param $title Title
159 * @param $paramArray Array
160 * @param $skin Skin
161 * @param $messages
162 * @return String
163 */
164 public static function getLogLinks( $title, $paramArray, $skin, $messages ) {
165 global $wgLang;
166
167 if( count($paramArray) >= 2 ) {
168 // Different revision types use different URL params...
169 $originalKey = $key = $paramArray[0];
170 // $paramArray[1] is a CSV of the IDs
171 $Ids = explode( ',', $paramArray[1] );
172
173 $revert = array();
174
175 // For if undeleted revisions are found amidst deleted ones.
176 $undeletedRevisions = array();
177
178 // This is not going to work if some revs are deleted and some
179 // aren't.
180 if ($key == 'revision') {
181 // Nothing to do; deleted revisions can still be looked up by ID.
182 }
183
184 // Diff link for single rev deletions
185 if( count($Ids) == 1 && !count($undeletedRevisions) ) {
186 // Live revision diffs...
187 if( in_array( $key, array( 'oldid', 'revision' ) ) ) {
188 $revert[] = $skin->link(
189 $title,
190 $messages['diff'],
191 array(),
192 array(
193 'diff' => intval( $Ids[0] ),
194 'unhide' => 1
195 ),
196 array( 'known', 'noclasses' )
197 );
198 // Deleted revision diffs...
199 } elseif( in_array( $key, array( 'artimestamp','archive' ) ) ) {
200 $revert[] = $skin->link(
201 SpecialPage::getTitleFor( 'Undelete' ),
202 $messages['diff'],
203 array(),
204 array(
205 'target' => $title->getPrefixedDBKey(),
206 'diff' => 'prev',
207 'timestamp' => $Ids[0]
208 ),
209 array( 'known', 'noclasses' )
210 );
211 }
212 }
213
214 // View/modify link...
215 if ( count( $undeletedRevisions ) ) {
216 // @todo FIXME: THIS IS A HORRIBLE HORRIBLE HACK AND SHOULD DIE
217 // It's not possible to pass a list of both deleted and
218 // undeleted revisions to SpecialRevisionDelete, so we're
219 // stuck with two links. See bug 23363.
220 $restoreLinks = array();
221
222 $restoreLinks[] = $skin->link(
223 SpecialPage::getTitleFor( 'Revisiondelete' ),
224 $messages['revdel-restore-visible'],
225 array(),
226 array(
227 'target' => $title->getPrefixedText(),
228 'type' => $originalKey,
229 'ids' => implode( ',', $undeletedRevisions ),
230 ),
231 array( 'known', 'noclasses' )
232 );
233
234 $restoreLinks[] = $skin->link(
235 SpecialPage::getTitleFor( 'Revisiondelete' ),
236 $messages['revdel-restore-deleted'],
237 array(),
238 array(
239 'target' => $title->getPrefixedText(),
240 'type' => $key,
241 'ids' => implode(',', $Ids),
242 ),
243 array( 'known', 'noclasses' )
244 );
245
246 $revert[] = $messages['revdel-restore'] . ' [' .
247 $wgLang->pipeList( $restoreLinks ) . ']';
248 } else {
249 $revert[] = $skin->link(
250 SpecialPage::getTitleFor( 'Revisiondelete' ),
251 $messages['revdel-restore'],
252 array(),
253 array(
254 'target' => $title->getPrefixedText(),
255 'type' => $key,
256 'ids' => implode(',', $Ids),
257 ),
258 array( 'known', 'noclasses' )
259 );
260 }
261
262 // Pipe links
263 return wfMsg( 'parentheses', $wgLang->pipeList( $revert ) );
264 }
265 return '';
266 }
267 }