3 * Contains classes for formatting 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 http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
27 * Implements the default log formatting.
28 * Can be overridden by subclassing and setting
29 * $wgLogActionsHandlers['type/subtype'] = 'class'; or
30 * $wgLogActionsHandlers['type/*'] = 'class';
34 // Audience options for viewing usernames, comments, and actions
36 const FOR_THIS_USER
= 2;
41 * Constructs a new formatter suitable for given entry.
42 * @param $entry LogEntry
43 * @return LogFormatter
45 public static function newFromEntry( LogEntry
$entry ) {
46 global $wgLogActionsHandlers;
47 $fulltype = $entry->getFullType();
48 $wildcard = $entry->getType() . '/*';
51 if ( isset( $wgLogActionsHandlers[$fulltype] ) ) {
52 $handler = $wgLogActionsHandlers[$fulltype];
53 } elseif ( isset( $wgLogActionsHandlers[$wildcard] ) ) {
54 $handler = $wgLogActionsHandlers[$wildcard];
57 if ( $handler !== '' && is_string( $handler ) && class_exists( $handler ) ) {
58 return new $handler( $entry );
61 return new LegacyLogFormatter( $entry );
65 * Handy shortcut for constructing a formatter directly from
68 * @see DatabaseLogEntry::getSelectQueryData
69 * @return LogFormatter
71 public static function newFromRow( $row ) {
72 return self
::newFromEntry( DatabaseLogEntry
::newFromRow( $row ) );
80 /// Integer constant for handling log_deleted
81 protected $audience = self
::FOR_PUBLIC
;
83 /// Whether to output user tool links
84 protected $linkFlood = false;
87 * Set to true if we are constructing a message text that is going to
88 * be included in page history or send to IRC feed. Links are replaced
89 * with plaintext or with [[pagename]] kind of syntax, that is parsed
90 * by page histories and IRC feeds.
93 protected $plaintext = false;
95 protected $irctext = false;
97 protected function __construct( LogEntry
$entry ) {
98 $this->entry
= $entry;
99 $this->context
= RequestContext
::getMain();
103 * Replace the default context
104 * @param $context IContextSource
106 public function setContext( IContextSource
$context ) {
107 $this->context
= $context;
111 * Set the visibility restrictions for displaying content.
112 * If set to public, and an item is deleted, then it will be replaced
113 * with a placeholder even if the context user is allowed to view it.
114 * @param $audience integer self::FOR_THIS_USER or self::FOR_PUBLIC
116 public function setAudience( $audience ) {
117 $this->audience
= ( $audience == self
::FOR_THIS_USER
)
118 ? self
::FOR_THIS_USER
123 * Check if a log item can be displayed
124 * @param $field integer LogPage::DELETED_* constant
127 protected function canView( $field ) {
128 if ( $this->audience
== self
::FOR_THIS_USER
) {
129 return LogEventsList
::userCanBitfield(
130 $this->entry
->getDeleted(), $field, $this->context
->getUser() );
132 return !$this->entry
->isDeleted( $field );
137 * If set to true, will produce user tool links after
138 * the user name. This should be replaced with generic
140 * @param $value boolean
142 public function setShowUserToolLinks( $value ) {
143 $this->linkFlood
= $value;
147 * Ugly hack to produce plaintext version of the message.
148 * Usually you also want to set extraneous request context
149 * to avoid formatting for any particular user.
150 * @see getActionText()
151 * @return string text
153 public function getPlainActionText() {
154 $this->plaintext
= true;
155 $text = $this->getActionText();
156 $this->plaintext
= false;
161 * Even uglier hack to maintain backwards compatibilty with IRC bots
163 * @see getActionText()
164 * @return string text
166 public function getIRCActionComment() {
167 $actionComment = $this->getIRCActionText();
168 $comment = $this->entry
->getComment();
170 if ( $comment != '' ) {
171 if ( $actionComment == '' ) {
172 $actionComment = $comment;
174 $actionComment .= wfMsgForContent( 'colon-separator' ) . $comment;
178 return $actionComment;
182 * Even uglier hack to maintain backwards compatibilty with IRC bots
184 * @see getActionText()
185 * @return string text
187 public function getIRCActionText() {
188 $this->plaintext
= true;
189 $this->irctext
= true;
190 $text = $this->getActionText();
192 $entry = $this->entry
;
193 $parameters = $entry->getParameters();
194 // @see LogPage::actionText()
195 $msgOpts = array( 'parsemag', 'escape', 'replaceafter', 'content' );
196 // Text of title the action is aimed at.
197 $target = $entry->getTarget()->getPrefixedText() ;
199 switch( $entry->getType() ) {
201 switch( $entry->getSubtype() ) {
203 $movesource = $parameters['4::target'];
204 $text = wfMsgExt( '1movedto2', $msgOpts, $target, $movesource );
207 $movesource = $parameters['4::target'];
208 $text = wfMsgExt( '1movedto2_redir', $msgOpts, $target, $movesource );
210 case 'move-noredirect':
212 case 'move_redir-noredirect':
218 switch( $entry->getSubtype() ) {
220 $text = wfMsgExt( 'deletedarticle', $msgOpts, $target );
223 $text = wfMsgExt( 'undeletedarticle', $msgOpts, $target );
225 //case 'revision': // Revision deletion
226 //case 'event': // Log deletion
227 // see https://svn.wikimedia.org/viewvc/mediawiki/trunk/phase3/includes/LogPage.php?&pathrev=97044&r1=97043&r2=97044
233 // https://svn.wikimedia.org/viewvc/mediawiki/trunk/phase3/includes/PatrolLog.php?&pathrev=97495&r1=97494&r2=97495
234 // Create a diff link to the patrolled revision
235 if ( $entry->getSubtype() === 'patrol' ) {
236 $diffLink = htmlspecialchars(
237 wfMsgForContent( 'patrol-log-diff', $parameters['4::curid'] ) );
238 $text = wfMsgForContent( 'patrol-log-line', $diffLink, "[[$target]]", "" );
245 switch( $entry->getSubtype() ) {
247 $text = wfMsgExt( 'protectedarticle', $msgOpts, $target . ' ' . $parameters[0] );
250 $text = wfMsgExt( 'unprotectedarticle', $msgOpts, $target );
253 $text = wfMsgExt( 'modifiedarticleprotection', $msgOpts, $target . ' ' . $parameters[0] );
259 switch( $entry->getSubtype() ) {
262 $text = wfMsgExt( 'newuserlog-create-entry', $msgOpts /* no params */ );
265 $text = wfMsgExt( 'newuserlog-create2-entry', $msgOpts, $target );
268 $text = wfMsgExt( 'newuserlog-autocreate-entry', $msgOpts /* no params */ );
274 switch( $entry->getSubtype() ) {
276 $text = wfMsgExt( 'uploadedimage', $msgOpts, $target );
279 $text = wfMsgExt( 'overwroteimage', $msgOpts, $target );
285 // case 'suppress' --private log -- aaron (sign your messages so we know who to blame in a few years :-D)
288 if( is_null( $text ) ) {
289 $text = $this->getPlainActionText();
292 $this->plaintext
= false;
293 $this->irctext
= false;
298 * Gets the log action, including username.
299 * @return string HTML
301 public function getActionText() {
302 if ( $this->canView( LogPage
::DELETED_ACTION
) ) {
303 $element = $this->getActionMessage();
304 if ( $element instanceof Message
) {
305 $element = $this->plaintext ?
$element->text() : $element->escaped();
307 if ( $this->entry
->isDeleted( LogPage
::DELETED_ACTION
) ) {
308 $element = $this->styleRestricedElement( $element );
311 $performer = $this->getPerformerElement() . $this->msg( 'word-separator' )->text();
312 $element = $performer . $this->getRestrictedElement( 'rev-deleted-event' );
319 * Returns a sentence describing the log action. Usually
320 * a Message object is returned, but old style log types
321 * and entries might return pre-escaped html string.
322 * @return Message|string pre-escaped html
324 protected function getActionMessage() {
325 $message = $this->msg( $this->getMessageKey() );
326 $message->params( $this->getMessageParameters() );
331 * Returns a key to be used for formatting the action sentence.
332 * Default is logentry-TYPE-SUBTYPE for modern logs. Legacy log
333 * types will use custom keys, and subclasses can also alter the
334 * key depending on the entry itself.
335 * @return string message key
337 protected function getMessageKey() {
338 $type = $this->entry
->getType();
339 $subtype = $this->entry
->getSubtype();
341 return "logentry-$type-$subtype";
345 * Extracts the optional extra parameters for use in action messages.
346 * The array indexes start from number 3.
349 protected function extractParameters() {
350 $entry = $this->entry
;
353 if ( $entry->isLegacy() ) {
354 foreach ( $entry->getParameters() as $index => $value ) {
355 $params[$index +
3] = $value;
359 // Filter out parameters which are not in format #:foo
360 foreach ( $entry->getParameters() as $key => $value ) {
361 if ( strpos( $key, ':' ) === false ) continue;
362 list( $index, $type, $name ) = explode( ':', $key, 3 );
363 $params[$index - 1] = $value;
366 /* Message class doesn't like non consecutive numbering.
367 * Fill in missing indexes with empty strings to avoid
368 * incorrect renumbering.
370 if ( count( $params ) ) {
371 $max = max( array_keys( $params ) );
372 for ( $i = 4; $i < $max; $i++
) {
373 if ( !isset( $params[$i] ) ) {
382 * Formats parameters intented for action message from
383 * array of all parameters. There are three hardcoded
384 * parameters (array is zero-indexed, this list not):
385 * - 1: user name with premade link
386 * - 2: usable for gender magic function
387 * - 3: target page with premade link
390 protected function getMessageParameters() {
391 if ( isset( $this->parsedParameters
) ) {
392 return $this->parsedParameters
;
395 $entry = $this->entry
;
396 $params = $this->extractParameters();
397 $params[0] = Message
::rawParam( $this->getPerformerElement() );
398 $params[1] = $entry->getPerformer()->getName();
399 $params[2] = Message
::rawParam( $this->makePageLink( $entry->getTarget() ) );
401 // Bad things happens if the numbers are not in correct order
403 return $this->parsedParameters
= $params;
407 * Helper to make a link to the page, taking the plaintext
408 * value in consideration.
409 * @param $title Title the page
410 * @param $parameters array query parameters
413 protected function makePageLink( Title
$title = null, $parameters = array() ) {
414 if ( !$this->plaintext
) {
415 $link = Linker
::link( $title, null, array(), $parameters );
417 if ( !$title instanceof Title
) {
418 throw new MWException( "Expected title, got null" );
420 $link = '[[' . $title->getPrefixedText() . ']]';
426 * Provides the name of the user who performed the log action.
427 * Used as part of log action message or standalone, depending
428 * which parts of the log entry has been hidden.
431 public function getPerformerElement() {
432 if ( $this->canView( LogPage
::DELETED_USER
) ) {
433 $performer = $this->entry
->getPerformer();
434 $element = $this->makeUserLink( $performer );
435 if ( $this->entry
->isDeleted( LogPage
::DELETED_USER
) ) {
436 $element = $this->styleRestricedElement( $element );
439 $element = $this->getRestrictedElement( 'rev-deleted-user' );
446 * Gets the luser provided comment
447 * @return string HTML
449 public function getComment() {
450 if ( $this->canView( LogPage
::DELETED_COMMENT
) ) {
451 $comment = Linker
::commentBlock( $this->entry
->getComment() );
452 // No hard coded spaces thanx
453 $element = ltrim( $comment );
454 if ( $this->entry
->isDeleted( LogPage
::DELETED_COMMENT
) ) {
455 $element = $this->styleRestricedElement( $element );
458 $element = $this->getRestrictedElement( 'rev-deleted-comment' );
465 * Helper method for displaying restricted element.
466 * @param $message string
467 * @return string HTML or wikitext
469 protected function getRestrictedElement( $message ) {
470 if ( $this->plaintext
) {
471 return $this->msg( $message )->text();
474 $content = $this->msg( $message )->escaped();
475 $attribs = array( 'class' => 'history-deleted' );
476 return Html
::rawElement( 'span', $attribs, $content );
480 * Helper method for styling restricted element.
481 * @param $content string
482 * @return string HTML or wikitext
484 protected function styleRestricedElement( $content ) {
485 if ( $this->plaintext
) {
488 $attribs = array( 'class' => 'history-deleted' );
489 return Html
::rawElement( 'span', $attribs, $content );
493 * Shortcut for wfMessage which honors local context.
494 * @todo Would it be better to require replacing the global context instead?
498 protected function msg( $key ) {
499 return wfMessage( $key )
500 ->inLanguage( $this->context
->getLanguage() )
501 ->title( $this->context
->getTitle() );
504 protected function makeUserLink( User
$user ) {
505 if ( $this->plaintext
) {
506 $element = $user->getName();
508 $element = Linker
::userLink(
513 if ( $this->linkFlood
) {
514 $element .= Linker
::userToolLinks(
517 true, // Red if no edits
519 $user->getEditCount()
527 * @return Array of titles that should be preloaded with LinkBatch.
529 public function getPreloadTitles() {
536 * This class formats all log entries for log types
537 * which have not been converted to the new system.
538 * This is not about old log entries which store
539 * parameters in a different format - the new
540 * LogFormatter classes have code to support formatting
544 class LegacyLogFormatter
extends LogFormatter
{
545 protected function getActionMessage() {
546 $entry = $this->entry
;
547 $action = LogPage
::actionText(
549 $entry->getSubtype(),
551 $this->plaintext ?
null : $this->context
->getSkin(),
552 (array)$entry->getParameters(),
553 !$this->plaintext
// whether to filter [[]] links
556 $performer = $this->getPerformerElement();
557 if ( !$this->irctext
) {
558 $action = $performer . $this->msg( 'word-separator' )->text() . $action;
567 * This class formats move log entries.
570 class MoveLogFormatter
extends LogFormatter
{
571 public function getPreloadTitles() {
572 $params = $this->extractParameters();
573 return array( Title
::newFromText( $params[3] ) );
576 protected function getMessageKey() {
577 $key = parent
::getMessageKey();
578 $params = $this->getMessageParameters();
579 if ( isset( $params[4] ) && $params[4] === '1' ) {
580 $key .= '-noredirect';
585 protected function getMessageParameters() {
586 $params = parent
::getMessageParameters();
587 $oldname = $this->makePageLink( $this->entry
->getTarget(), array( 'redirect' => 'no' ) );
588 $newname = $this->makePageLink( Title
::newFromText( $params[3] ) );
589 $params[2] = Message
::rawParam( $oldname );
590 $params[3] = Message
::rawParam( $newname );
596 * This class formats delete log entries.
599 class DeleteLogFormatter
extends LogFormatter
{
600 protected function getMessageKey() {
601 $key = parent
::getMessageKey();
602 if ( in_array( $this->entry
->getSubtype(), array( 'event', 'revision' ) ) ) {
603 if ( count( $this->getMessageParameters() ) < 5 ) {
604 return "$key-legacy";
610 protected function getMessageParameters() {
611 if ( isset( $this->parsedParametersDeleteLog
) ) {
612 return $this->parsedParametersDeleteLog
;
615 $params = parent
::getMessageParameters();
616 $subtype = $this->entry
->getSubtype();
617 if ( in_array( $subtype, array( 'event', 'revision' ) ) ) {
619 ($subtype === 'event' && count( $params ) === 6 ) ||
620 ($subtype === 'revision' && isset( $params[3] ) && $params[3] === 'revision' )
622 $paramStart = $subtype === 'revision' ?
4 : 3;
624 $old = $this->parseBitField( $params[$paramStart+
1] );
625 $new = $this->parseBitField( $params[$paramStart+
2] );
626 list( $hid, $unhid, $extra ) = RevisionDeleter
::getChanges( $new, $old );
628 foreach ( $hid as $v ) {
629 $changes[] = $this->msg( "$v-hid" )->plain();
631 foreach ( $unhid as $v ) {
632 $changes[] = $this->msg( "$v-unhid" )->plain();
634 foreach ( $extra as $v ) {
635 $changes[] = $this->msg( $v )->plain();
637 $changeText = $this->context
->getLanguage()->listToText( $changes );
640 $newParams = array_slice( $params, 0, 3 );
641 $newParams[3] = $changeText;
642 $count = count( explode( ',', $params[$paramStart] ) );
643 $newParams[4] = $this->context
->getLanguage()->formatNum( $count );
644 return $this->parsedParametersDeleteLog
= $newParams;
646 return $this->parsedParametersDeleteLog
= array_slice( $params, 0, 3 );
650 return $this->parsedParametersDeleteLog
= $params;
653 protected function parseBitField( $string ) {
654 // Input is like ofield=2134 or just the number
655 if ( strpos( $string, 'field=' ) === 1 ) {
656 list( , $field ) = explode( '=', $string );
659 return (int) $string;
665 * This class formats patrol log entries.
668 class PatrolLogFormatter
extends LogFormatter
{
669 protected function getMessageKey() {
670 $key = parent
::getMessageKey();
671 $params = $this->getMessageParameters();
672 if ( isset( $params[5] ) && $params[5] ) {
678 protected function getMessageParameters() {
679 $params = parent
::getMessageParameters();
681 $target = $this->entry
->getTarget();
683 $revision = $this->context
->getLanguage()->formatNum( $oldid, true );
685 if ( $this->plaintext
) {
686 $revlink = $revision;
687 } elseif ( $target->exists() ) {
692 $revlink = Linker
::link( $target, htmlspecialchars( $revision ), array(), $query );
694 $revlink = htmlspecialchars( $revision );
697 $params[3] = Message
::rawParam( $revlink );
703 * This class formats new user log entries.
706 class NewUsersLogFormatter
extends LogFormatter
{
707 protected function getMessageParameters() {
708 $params = parent
::getMessageParameters();
709 if ( $this->entry
->getSubtype() === 'create2' ) {
710 if ( isset( $params[3] ) ) {
711 $target = User
::newFromId( $params[3] );
713 $target = User
::newFromName( $this->entry
->getTarget()->getText(), false );
715 $params[2] = Message
::rawParam( $this->makeUserLink( $target ) );
716 $params[3] = $target->getName();
721 public function getComment() {
722 $timestamp = wfTimestamp( TS_MW
, $this->entry
->getTimestamp() );
723 if ( $timestamp < '20080129000000' ) {
724 # Suppress $comment from old entries (before 2008-01-29),
725 # not needed and can contain incorrect links
728 return parent
::getComment();
731 public function getPreloadTitles() {
732 if ( $this->entry
->getSubtype() === 'create2' ) {
733 //add the user talk to LinkBatch for the userLink
734 return array( Title
::makeTitle( NS_USER_TALK
, $this->entry
->getTarget()->getText() ) );