3 * Formatter for delete log entries.
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 * @author Niklas Laxström
22 * @license GPL-2.0-or-later
26 use MediaWiki\Api\ApiResult
;
27 use MediaWiki\Revision\RevisionRecord
;
28 use MediaWiki\SpecialPage\SpecialPage
;
31 * This class formats delete log entries.
35 class DeleteLogFormatter
extends LogFormatter
{
36 /** @var array|null */
37 private $parsedParametersDeleteLog;
42 protected function getMessageKey() {
43 $key = parent
::getMessageKey();
44 if ( in_array( $this->entry
->getSubtype(), [ 'event', 'revision' ] ) ) {
45 if ( count( $this->getMessageParameters() ) < 5 ) {
46 // Messages: logentry-delete-event-legacy, logentry-delete-revision-legacy,
47 // logentry-suppress-event-legacy, logentry-suppress-revision-legacy
50 } elseif ( $this->entry
->getSubtype() === 'restore' ) {
51 $rawParams = $this->entry
->getParameters();
52 if ( !isset( $rawParams[':assoc:count'] ) ) {
53 // Message: logentry-delete-restore-nocount
54 return $key . '-nocount';
64 protected function getMessageParameters() {
65 if ( $this->parsedParametersDeleteLog
!== null ) {
66 return $this->parsedParametersDeleteLog
;
69 $params = parent
::getMessageParameters();
70 $subtype = $this->entry
->getSubtype();
71 if ( in_array( $subtype, [ 'event', 'revision' ] ) ) {
72 // $params[3] here is 'revision' or 'archive' for page revisions, 'oldimage' or
73 // 'filearchive' for file versions, or a comma-separated list of log_ids for log
74 // entries. $subtype here is 'revision' for page revisions and file
75 // versions, or 'event' for log entries.
77 ( $subtype === 'event' && count( $params ) === 6 )
79 $subtype === 'revision' && isset( $params[3] ) && count( $params ) === 7
80 && in_array( $params[3], [ 'revision', 'archive', 'oldimage', 'filearchive' ] )
83 // See RevDelList::getLogParams()/RevDelLogList::getLogParams()
84 $paramStart = $subtype === 'revision' ?
4 : 3;
86 $old = $this->parseBitField( $params[$paramStart +
1] );
87 $new = $this->parseBitField( $params[$paramStart +
2] );
88 [ $hid, $unhid, $extra ] = RevisionDeleter
::getChanges( $new, $old );
90 // messages used: revdelete-content-hid, revdelete-summary-hid, revdelete-uname-hid
91 foreach ( $hid as $v ) {
92 $changes[] = $this->msg( "$v-hid" )->plain();
94 // messages used: revdelete-content-unhid, revdelete-summary-unhid,
95 // revdelete-uname-unhid
96 foreach ( $unhid as $v ) {
97 $changes[] = $this->msg( "$v-unhid" )->plain();
99 foreach ( $extra as $v ) {
100 $changes[] = $this->msg( $v )->plain();
102 $changeText = $this->context
->getLanguage()->listToText( $changes );
104 $newParams = array_slice( $params, 0, 3 );
105 $newParams[3] = $changeText;
106 $ids = is_array( $params[$paramStart] )
107 ?
$params[$paramStart]
108 : explode( ',', $params[$paramStart] );
109 $newParams[4] = $this->context
->getLanguage()->formatNum( count( $ids ) );
111 $this->parsedParametersDeleteLog
= $newParams;
112 return $this->parsedParametersDeleteLog
;
114 $this->parsedParametersDeleteLog
= array_slice( $params, 0, 3 );
115 return $this->parsedParametersDeleteLog
;
117 } elseif ( $subtype === 'restore' ) {
118 $rawParams = $this->entry
->getParameters();
119 if ( isset( $rawParams[':assoc:count'] ) ) {
121 foreach ( $rawParams[':assoc:count'] as $type => $count ) {
123 // Messages: restore-count-revisions, restore-count-files
124 $countList[] = $this->context
->msg( 'restore-count-' . $type )
125 ->numParams( $count )->plain();
128 $params[3] = $this->context
->getLanguage()->listToText( $countList );
132 $this->parsedParametersDeleteLog
= $params;
133 return $this->parsedParametersDeleteLog
;
136 protected function parseBitField( $string ) {
137 // Input is like ofield=2134 or just the number
138 if ( strpos( $string, 'field=' ) === 1 ) {
139 [ , $field ] = explode( '=', $string );
147 public function getActionLinks() {
148 $linkRenderer = $this->getLinkRenderer();
149 if ( !$this->context
->getAuthority()->isAllowed( 'deletedhistory' )
150 ||
$this->entry
->isDeleted( LogPage
::DELETED_ACTION
)
155 switch ( $this->entry
->getSubtype() ) {
156 case 'delete': // Show undelete link
158 case 'delete_redir2':
159 if ( $this->context
->getAuthority()->isAllowed( 'undelete' ) ) {
160 $message = 'undeletelink';
162 $message = 'undeleteviewlink';
164 $revert = $linkRenderer->makeKnownLink(
165 SpecialPage
::getTitleFor( 'Undelete' ),
166 $this->msg( $message )->text(),
168 [ 'target' => $this->entry
->getTarget()->getPrefixedDBkey() ]
171 return $this->msg( 'parentheses' )->rawParams( $revert )->escaped();
173 case 'revision': // If an edit was hidden from a page give a review link to the history
174 $params = $this->extractParameters();
175 if ( !isset( $params[3] ) ||
!isset( $params[4] ) ) {
179 // Different revision types use different URL params...
181 // This is a array or CSV of the IDs
182 $ids = is_array( $params[4] )
184 : explode( ',', $params[4] );
188 // If there's only one item, we can show a diff link
189 if ( count( $ids ) == 1 ) {
190 // Live revision diffs...
191 if ( $key == 'oldid' ||
$key == 'revision' ) {
192 $links[] = $linkRenderer->makeKnownLink(
193 $this->entry
->getTarget(),
194 $this->msg( 'diff' )->text(),
197 'diff' => intval( $ids[0] ),
201 // Deleted revision diffs...
202 } elseif ( $key == 'artimestamp' ||
$key == 'archive' ) {
203 $links[] = $linkRenderer->makeKnownLink(
204 SpecialPage
::getTitleFor( 'Undelete' ),
205 $this->msg( 'diff' )->text(),
208 'target' => $this->entry
->getTarget()->getPrefixedDBkey(),
210 'timestamp' => $ids[0]
216 // View/modify link...
217 $links[] = $linkRenderer->makeKnownLink(
218 SpecialPage
::getTitleFor( 'Revisiondelete' ),
219 $this->msg( 'revdel-restore' )->text(),
222 'target' => $this->entry
->getTarget()->getPrefixedText(),
224 'ids' => implode( ',', $ids ),
228 return $this->msg( 'parentheses' )->rawParams(
229 $this->context
->getLanguage()->pipeList( $links ) )->escaped();
231 case 'event': // Hidden log items, give review link
232 $params = $this->extractParameters();
233 if ( !isset( $params[3] ) ) {
236 // This is a CSV of the IDs
238 if ( is_array( $query ) ) {
239 $query = implode( ',', $query );
241 // Link to each hidden object ID, $params[1] is the url param
242 $revert = $linkRenderer->makeKnownLink(
243 SpecialPage
::getTitleFor( 'Revisiondelete' ),
244 $this->msg( 'revdel-restore' )->text(),
247 'target' => $this->entry
->getTarget()->getPrefixedText(),
253 return $this->msg( 'parentheses' )->rawParams( $revert )->escaped();
259 protected function getParametersForApi() {
260 $entry = $this->entry
;
263 $subtype = $this->entry
->getSubtype();
264 if ( in_array( $subtype, [ 'event', 'revision' ] ) ) {
265 $rawParams = $entry->getParameters();
266 if ( $subtype === 'event' ) {
267 array_unshift( $rawParams, 'logging' );
275 '4::ids' => '5::ids',
276 '5::ofield' => '6::ofield',
277 '6::nfield' => '7::nfield',
279 foreach ( $map as $index => $key ) {
280 if ( isset( $rawParams[$index] ) ) {
281 $rawParams[$key] = $rawParams[$index];
282 unset( $rawParams[$index] );
286 if ( !is_array( $rawParams['5::ids'] ) ) {
287 $rawParams['5::ids'] = explode( ',', $rawParams['5::ids'] );
291 '::type' => $rawParams['4::type'],
292 ':array:ids' => $rawParams['5::ids'],
296 RevisionRecord
::DELETED_TEXT
=> 'content',
297 RevisionRecord
::DELETED_COMMENT
=> 'comment',
298 RevisionRecord
::DELETED_USER
=> 'user',
299 RevisionRecord
::DELETED_RESTRICTED
=> 'restricted',
302 if ( isset( $rawParams['6::ofield'] ) ) {
303 $old = $this->parseBitField( $rawParams['6::ofield'] );
304 $params[':assoc:old'] = [ 'bitmask' => $old ];
305 foreach ( $fields as $bit => $key ) {
306 $params[':assoc:old'][$key] = (bool)( $old & $bit );
309 if ( isset( $rawParams['7::nfield'] ) ) {
310 $new = $this->parseBitField( $rawParams['7::nfield'] );
311 $params[':assoc:new'] = [ 'bitmask' => $new ];
312 foreach ( $fields as $bit => $key ) {
313 $params[':assoc:new'][$key] = (bool)( $new & $bit );
316 } elseif ( $subtype === 'restore' ) {
317 $rawParams = $entry->getParameters();
318 if ( isset( $rawParams[':assoc:count'] ) ) {
319 $params[':assoc:count'] = $rawParams[':assoc:count'];
326 public function formatParametersForApi() {
327 $ret = parent
::formatParametersForApi();
328 if ( isset( $ret['ids'] ) ) {
329 ApiResult
::setIndexedTagName( $ret['ids'], 'id' );