MediaWiki  1.30.0
LogFormatter.php
Go to the documentation of this file.
1 <?php
27 
38 class LogFormatter {
39  // Audience options for viewing usernames, comments, and actions
40  const FOR_PUBLIC = 1;
41  const FOR_THIS_USER = 2;
42 
43  // Static->
44 
50  public static function newFromEntry( LogEntry $entry ) {
52  $fulltype = $entry->getFullType();
53  $wildcard = $entry->getType() . '/*';
54  $handler = '';
55 
56  if ( isset( $wgLogActionsHandlers[$fulltype] ) ) {
57  $handler = $wgLogActionsHandlers[$fulltype];
58  } elseif ( isset( $wgLogActionsHandlers[$wildcard] ) ) {
59  $handler = $wgLogActionsHandlers[$wildcard];
60  }
61 
62  if ( $handler !== '' && is_string( $handler ) && class_exists( $handler ) ) {
63  return new $handler( $entry );
64  }
65 
66  return new LegacyLogFormatter( $entry );
67  }
68 
76  public static function newFromRow( $row ) {
78  }
79 
80  // Nonstatic->
81 
83  protected $entry;
84 
87 
89  public $context;
90 
92  protected $linkFlood = false;
93 
101  protected $plaintext = false;
102 
104  protected $irctext = false;
105 
109  private $linkRenderer;
110 
111  protected function __construct( LogEntry $entry ) {
112  $this->entry = $entry;
113  $this->context = RequestContext::getMain();
114  }
115 
120  public function setContext( IContextSource $context ) {
121  $this->context = $context;
122  }
123 
129  $this->linkRenderer = $linkRenderer;
130  }
131 
136  public function getLinkRenderer() {
137  if ( $this->linkRenderer !== null ) {
138  return $this->linkRenderer;
139  } else {
140  return MediaWikiServices::getInstance()->getLinkRenderer();
141  }
142  }
143 
150  public function setAudience( $audience ) {
151  $this->audience = ( $audience == self::FOR_THIS_USER )
152  ? self::FOR_THIS_USER
153  : self::FOR_PUBLIC;
154  }
155 
161  protected function canView( $field ) {
162  if ( $this->audience == self::FOR_THIS_USER ) {
164  $this->entry->getDeleted(), $field, $this->context->getUser() );
165  } else {
166  return !$this->entry->isDeleted( $field );
167  }
168  }
169 
176  public function setShowUserToolLinks( $value ) {
177  $this->linkFlood = $value;
178  }
179 
187  public function getPlainActionText() {
188  $this->plaintext = true;
189  $text = $this->getActionText();
190  $this->plaintext = false;
191 
192  return $text;
193  }
194 
201  public function getIRCActionComment() {
202  $actionComment = $this->getIRCActionText();
203  $comment = $this->entry->getComment();
204 
205  if ( $comment != '' ) {
206  if ( $actionComment == '' ) {
207  $actionComment = $comment;
208  } else {
209  $actionComment .= wfMessage( 'colon-separator' )->inContentLanguage()->text() . $comment;
210  }
211  }
212 
213  return $actionComment;
214  }
215 
222  public function getIRCActionText() {
224 
225  $this->plaintext = true;
226  $this->irctext = true;
227 
229  $parameters = $entry->getParameters();
230  // @see LogPage::actionText()
231  // Text of title the action is aimed at.
232  $target = $entry->getTarget()->getPrefixedText();
233  $text = null;
234  switch ( $entry->getType() ) {
235  case 'move':
236  switch ( $entry->getSubtype() ) {
237  case 'move':
238  $movesource = $parameters['4::target'];
239  $text = wfMessage( '1movedto2' )
240  ->rawParams( $target, $movesource )->inContentLanguage()->escaped();
241  break;
242  case 'move_redir':
243  $movesource = $parameters['4::target'];
244  $text = wfMessage( '1movedto2_redir' )
245  ->rawParams( $target, $movesource )->inContentLanguage()->escaped();
246  break;
247  case 'move-noredirect':
248  break;
249  case 'move_redir-noredirect':
250  break;
251  }
252  break;
253 
254  case 'delete':
255  switch ( $entry->getSubtype() ) {
256  case 'delete':
257  $text = wfMessage( 'deletedarticle' )
258  ->rawParams( $target )->inContentLanguage()->escaped();
259  break;
260  case 'restore':
261  $text = wfMessage( 'undeletedarticle' )
262  ->rawParams( $target )->inContentLanguage()->escaped();
263  break;
264  // @codingStandardsIgnoreStart Long line
265  //case 'revision': // Revision deletion
266  //case 'event': // Log deletion
267  // see https://github.com/wikimedia/mediawiki/commit/a9c243b7b5289dad204278dbe7ed571fd914e395
268  //default:
269  // @codingStandardsIgnoreEnd
270  }
271  break;
272 
273  case 'patrol':
274  // @codingStandardsIgnoreStart Long line
275  // https://github.com/wikimedia/mediawiki/commit/1a05f8faf78675dc85984f27f355b8825b43efff
276  // @codingStandardsIgnoreEnd
277  // Create a diff link to the patrolled revision
278  if ( $entry->getSubtype() === 'patrol' ) {
279  $diffLink = htmlspecialchars(
280  wfMessage( 'patrol-log-diff', $parameters['4::curid'] )
281  ->inContentLanguage()->text() );
282  $text = wfMessage( 'patrol-log-line', $diffLink, "[[$target]]", "" )
283  ->inContentLanguage()->text();
284  } else {
285  // broken??
286  }
287  break;
288 
289  case 'protect':
290  switch ( $entry->getSubtype() ) {
291  case 'protect':
292  $text = wfMessage( 'protectedarticle' )
293  ->rawParams( $target . ' ' . $parameters['4::description'] )->inContentLanguage()->escaped();
294  break;
295  case 'unprotect':
296  $text = wfMessage( 'unprotectedarticle' )
297  ->rawParams( $target )->inContentLanguage()->escaped();
298  break;
299  case 'modify':
300  $text = wfMessage( 'modifiedarticleprotection' )
301  ->rawParams( $target . ' ' . $parameters['4::description'] )->inContentLanguage()->escaped();
302  break;
303  case 'move_prot':
304  $text = wfMessage( 'movedarticleprotection' )
305  ->rawParams( $target, $parameters['4::oldtitle'] )->inContentLanguage()->escaped();
306  break;
307  }
308  break;
309 
310  case 'newusers':
311  switch ( $entry->getSubtype() ) {
312  case 'newusers':
313  case 'create':
314  $text = wfMessage( 'newuserlog-create-entry' )
315  ->inContentLanguage()->escaped();
316  break;
317  case 'create2':
318  case 'byemail':
319  $text = wfMessage( 'newuserlog-create2-entry' )
320  ->rawParams( $target )->inContentLanguage()->escaped();
321  break;
322  case 'autocreate':
323  $text = wfMessage( 'newuserlog-autocreate-entry' )
324  ->inContentLanguage()->escaped();
325  break;
326  }
327  break;
328 
329  case 'upload':
330  switch ( $entry->getSubtype() ) {
331  case 'upload':
332  $text = wfMessage( 'uploadedimage' )
333  ->rawParams( $target )->inContentLanguage()->escaped();
334  break;
335  case 'overwrite':
336  $text = wfMessage( 'overwroteimage' )
337  ->rawParams( $target )->inContentLanguage()->escaped();
338  break;
339  }
340  break;
341 
342  case 'rights':
343  if ( count( $parameters['4::oldgroups'] ) ) {
344  $oldgroups = implode( ', ', $parameters['4::oldgroups'] );
345  } else {
346  $oldgroups = wfMessage( 'rightsnone' )->inContentLanguage()->escaped();
347  }
348  if ( count( $parameters['5::newgroups'] ) ) {
349  $newgroups = implode( ', ', $parameters['5::newgroups'] );
350  } else {
351  $newgroups = wfMessage( 'rightsnone' )->inContentLanguage()->escaped();
352  }
353  switch ( $entry->getSubtype() ) {
354  case 'rights':
355  $text = wfMessage( 'rightslogentry' )
356  ->rawParams( $target, $oldgroups, $newgroups )->inContentLanguage()->escaped();
357  break;
358  case 'autopromote':
359  $text = wfMessage( 'rightslogentry-autopromote' )
360  ->rawParams( $target, $oldgroups, $newgroups )->inContentLanguage()->escaped();
361  break;
362  }
363  break;
364 
365  case 'merge':
366  $text = wfMessage( 'pagemerge-logentry' )
367  ->rawParams( $target, $parameters['4::dest'], $parameters['5::mergepoint'] )
368  ->inContentLanguage()->escaped();
369  break;
370 
371  case 'block':
372  switch ( $entry->getSubtype() ) {
373  case 'block':
374  // Keep compatibility with extensions by checking for
375  // new key (5::duration/6::flags) or old key (0/optional 1)
376  if ( $entry->isLegacy() ) {
377  $rawDuration = $parameters[0];
378  $rawFlags = isset( $parameters[1] ) ? $parameters[1] : '';
379  } else {
380  $rawDuration = $parameters['5::duration'];
381  $rawFlags = $parameters['6::flags'];
382  }
383  $duration = $wgContLang->translateBlockExpiry(
384  $rawDuration,
385  null,
386  wfTimestamp( TS_UNIX, $entry->getTimestamp() )
387  );
389  $text = wfMessage( 'blocklogentry' )
390  ->rawParams( $target, $duration, $flags )->inContentLanguage()->escaped();
391  break;
392  case 'unblock':
393  $text = wfMessage( 'unblocklogentry' )
394  ->rawParams( $target )->inContentLanguage()->escaped();
395  break;
396  case 'reblock':
397  $duration = $wgContLang->translateBlockExpiry(
398  $parameters['5::duration'],
399  null,
400  wfTimestamp( TS_UNIX, $entry->getTimestamp() )
401  );
402  $flags = BlockLogFormatter::formatBlockFlags( $parameters['6::flags'], $wgContLang );
403  $text = wfMessage( 'reblock-logentry' )
404  ->rawParams( $target, $duration, $flags )->inContentLanguage()->escaped();
405  break;
406  }
407  break;
408 
409  case 'import':
410  switch ( $entry->getSubtype() ) {
411  case 'upload':
412  $text = wfMessage( 'import-logentry-upload' )
413  ->rawParams( $target )->inContentLanguage()->escaped();
414  break;
415  case 'interwiki':
416  $text = wfMessage( 'import-logentry-interwiki' )
417  ->rawParams( $target )->inContentLanguage()->escaped();
418  break;
419  }
420  break;
421  // case 'suppress' --private log -- aaron (so we know who to blame in a few years :-D)
422  // default:
423  }
424  if ( is_null( $text ) ) {
425  $text = $this->getPlainActionText();
426  }
427 
428  $this->plaintext = false;
429  $this->irctext = false;
430 
431  return $text;
432  }
433 
438  public function getActionText() {
439  if ( $this->canView( LogPage::DELETED_ACTION ) ) {
440  $element = $this->getActionMessage();
441  if ( $element instanceof Message ) {
442  $element = $this->plaintext ? $element->text() : $element->escaped();
443  }
444  if ( $this->entry->isDeleted( LogPage::DELETED_ACTION ) ) {
445  $element = $this->styleRestricedElement( $element );
446  }
447  } else {
448  $sep = $this->msg( 'word-separator' );
449  $sep = $this->plaintext ? $sep->text() : $sep->escaped();
450  $performer = $this->getPerformerElement();
451  $element = $performer . $sep . $this->getRestrictedElement( 'rev-deleted-event' );
452  }
453 
454  return $element;
455  }
456 
463  protected function getActionMessage() {
464  $message = $this->msg( $this->getMessageKey() );
465  $message->params( $this->getMessageParameters() );
466 
467  return $message;
468  }
469 
477  protected function getMessageKey() {
478  $type = $this->entry->getType();
479  $subtype = $this->entry->getSubtype();
480 
481  return "logentry-$type-$subtype";
482  }
483 
489  public function getActionLinks() {
490  return '';
491  }
492 
498  protected function extractParameters() {
500  $params = [];
501 
502  if ( $entry->isLegacy() ) {
503  foreach ( $entry->getParameters() as $index => $value ) {
504  $params[$index + 3] = $value;
505  }
506  }
507 
508  // Filter out parameters which are not in format #:foo
509  foreach ( $entry->getParameters() as $key => $value ) {
510  if ( strpos( $key, ':' ) === false ) {
511  continue;
512  }
513  list( $index, $type, ) = explode( ':', $key, 3 );
514  if ( ctype_digit( $index ) ) {
515  $params[$index - 1] = $this->formatParameterValue( $type, $value );
516  }
517  }
518 
519  /* Message class doesn't like non consecutive numbering.
520  * Fill in missing indexes with empty strings to avoid
521  * incorrect renumbering.
522  */
523  if ( count( $params ) ) {
524  $max = max( array_keys( $params ) );
525  // index 0 to 2 are added in getMessageParameters
526  for ( $i = 3; $i < $max; $i++ ) {
527  if ( !isset( $params[$i] ) ) {
528  $params[$i] = '';
529  }
530  }
531  }
532 
533  return $params;
534  }
535 
545  protected function getMessageParameters() {
546  if ( isset( $this->parsedParameters ) ) {
547  return $this->parsedParameters;
548  }
549 
551  $params = $this->extractParameters();
552  $params[0] = Message::rawParam( $this->getPerformerElement() );
553  $params[1] = $this->canView( LogPage::DELETED_USER ) ? $entry->getPerformer()->getName() : '';
554  $params[2] = Message::rawParam( $this->makePageLink( $entry->getTarget() ) );
555 
556  // Bad things happens if the numbers are not in correct order
557  ksort( $params );
558 
559  $this->parsedParameters = $params;
560  return $this->parsedParameters;
561  }
562 
589  protected function formatParameterValue( $type, $value ) {
590  $saveLinkFlood = $this->linkFlood;
591 
592  switch ( strtolower( trim( $type ) ) ) {
593  case 'raw':
594  $value = Message::rawParam( $value );
595  break;
596  case 'list':
597  $value = $this->context->getLanguage()->commaList( $value );
598  break;
599  case 'msg':
600  $value = $this->msg( $value )->text();
601  break;
602  case 'msg-content':
603  $value = $this->msg( $value )->inContentLanguage()->text();
604  break;
605  case 'number':
606  $value = Message::numParam( $value );
607  break;
608  case 'user':
610  $value = $user->getName();
611  break;
612  case 'user-link':
613  $this->setShowUserToolLinks( false );
614 
616  $value = Message::rawParam( $this->makeUserLink( $user ) );
617 
618  $this->setShowUserToolLinks( $saveLinkFlood );
619  break;
620  case 'title':
622  $value = $title->getPrefixedText();
623  break;
624  case 'title-link':
626  $value = Message::rawParam( $this->makePageLink( $title ) );
627  break;
628  case 'plain':
629  // Plain text, nothing to do
630  default:
631  // Catch other types and use the old behavior (return as-is)
632  }
633 
634  return $value;
635  }
636 
646  protected function makePageLink( Title $title = null, $parameters = [], $html = null ) {
647  if ( !$this->plaintext ) {
648  $link = Linker::link( $title, $html, [], $parameters );
649  } else {
650  if ( !$title instanceof Title ) {
651  throw new MWException( "Expected title, got null" );
652  }
653  $link = '[[' . $title->getPrefixedText() . ']]';
654  }
655 
656  return $link;
657  }
658 
665  public function getPerformerElement() {
666  if ( $this->canView( LogPage::DELETED_USER ) ) {
667  $performer = $this->entry->getPerformer();
668  $element = $this->makeUserLink( $performer );
669  if ( $this->entry->isDeleted( LogPage::DELETED_USER ) ) {
670  $element = $this->styleRestricedElement( $element );
671  }
672  } else {
673  $element = $this->getRestrictedElement( 'rev-deleted-user' );
674  }
675 
676  return $element;
677  }
678 
683  public function getComment() {
684  if ( $this->canView( LogPage::DELETED_COMMENT ) ) {
685  $comment = Linker::commentBlock( $this->entry->getComment() );
686  // No hard coded spaces thanx
687  $element = ltrim( $comment );
688  if ( $this->entry->isDeleted( LogPage::DELETED_COMMENT ) ) {
689  $element = $this->styleRestricedElement( $element );
690  }
691  } else {
692  $element = $this->getRestrictedElement( 'rev-deleted-comment' );
693  }
694 
695  return $element;
696  }
697 
703  protected function getRestrictedElement( $message ) {
704  if ( $this->plaintext ) {
705  return $this->msg( $message )->text();
706  }
707 
708  $content = $this->msg( $message )->escaped();
709  $attribs = [ 'class' => 'history-deleted' ];
710 
711  return Html::rawElement( 'span', $attribs, $content );
712  }
713 
719  protected function styleRestricedElement( $content ) {
720  if ( $this->plaintext ) {
721  return $content;
722  }
723  $attribs = [ 'class' => 'history-deleted' ];
724 
725  return Html::rawElement( 'span', $attribs, $content );
726  }
727 
733  protected function msg( $key ) {
734  return $this->context->msg( $key );
735  }
736 
737  protected function makeUserLink( User $user, $toolFlags = 0 ) {
738  if ( $this->plaintext ) {
739  $element = $user->getName();
740  } else {
741  $element = Linker::userLink(
742  $user->getId(),
743  $user->getName()
744  );
745 
746  if ( $this->linkFlood ) {
747  $element .= Linker::userToolLinks(
748  $user->getId(),
749  $user->getName(),
750  true, // redContribsWhenNoEdits
751  $toolFlags,
752  $user->getEditCount()
753  );
754  }
755  }
756 
757  return $element;
758  }
759 
763  public function getPreloadTitles() {
764  return [];
765  }
766 
770  public function getMessageParametersForTesting() {
771  // This function was added because getMessageParameters() is
772  // protected and a change from protected to public caused
773  // problems with extensions
774  return $this->getMessageParameters();
775  }
776 
782  protected function getParametersForApi() {
783  return $this->entry->getParameters();
784  }
785 
800  public function formatParametersForApi() {
801  $logParams = [];
802  foreach ( $this->getParametersForApi() as $key => $value ) {
803  $vals = explode( ':', $key, 3 );
804  if ( count( $vals ) !== 3 ) {
805  $logParams[$key] = $value;
806  continue;
807  }
808  $logParams += $this->formatParameterValueForApi( $vals[2], $vals[1], $value );
809  }
810  ApiResult::setIndexedTagName( $logParams, 'param' );
811  ApiResult::setArrayType( $logParams, 'assoc' );
812 
813  return $logParams;
814  }
815 
825  protected function formatParameterValueForApi( $name, $type, $value ) {
826  $type = strtolower( trim( $type ) );
827  switch ( $type ) {
828  case 'bool':
829  $value = (bool)$value;
830  break;
831 
832  case 'number':
833  if ( ctype_digit( $value ) || is_int( $value ) ) {
834  $value = (int)$value;
835  } else {
836  $value = (float)$value;
837  }
838  break;
839 
840  case 'array':
841  case 'assoc':
842  case 'kvp':
843  if ( is_array( $value ) ) {
845  }
846  break;
847 
848  case 'timestamp':
849  $value = wfTimestamp( TS_ISO_8601, $value );
850  break;
851 
852  case 'msg':
853  case 'msg-content':
854  $msg = $this->msg( $value );
855  if ( $type === 'msg-content' ) {
856  $msg->inContentLanguage();
857  }
858  $value = [];
859  $value["{$name}_key"] = $msg->getKey();
860  if ( $msg->getParams() ) {
861  $value["{$name}_params"] = $msg->getParams();
862  }
863  $value["{$name}_text"] = $msg->text();
864  return $value;
865 
866  case 'title':
867  case 'title-link':
869  if ( $title ) {
870  $value = [];
871  ApiQueryBase::addTitleInfo( $value, $title, "{$name}_" );
872  }
873  return $value;
874 
875  case 'user':
876  case 'user-link':
878  if ( $user ) {
879  $value = $user->getName();
880  }
881  break;
882 
883  default:
884  // do nothing
885  break;
886  }
887 
888  return [ $name => $value ];
889  }
890 }
891 
911  private $comment = null;
912 
920  private $revert = null;
921 
922  public function getComment() {
923  if ( $this->comment === null ) {
924  $this->comment = parent::getComment();
925  }
926 
927  // Make sure we execute the LogLine hook so that we immediately return
928  // the correct value.
929  if ( $this->revert === null ) {
930  $this->getActionLinks();
931  }
932 
933  return $this->comment;
934  }
935 
936  protected function getActionMessage() {
938  $action = LogPage::actionText(
939  $entry->getType(),
940  $entry->getSubtype(),
941  $entry->getTarget(),
942  $this->plaintext ? null : $this->context->getSkin(),
944  !$this->plaintext // whether to filter [[]] links
945  );
946 
947  $performer = $this->getPerformerElement();
948  if ( !$this->irctext ) {
949  $sep = $this->msg( 'word-separator' );
950  $sep = $this->plaintext ? $sep->text() : $sep->escaped();
951  $action = $performer . $sep . $action;
952  }
953 
954  return $action;
955  }
956 
957  public function getActionLinks() {
958  if ( $this->revert !== null ) {
959  return $this->revert;
960  }
961 
962  if ( $this->entry->isDeleted( LogPage::DELETED_ACTION ) ) {
963  $this->revert = '';
964  return $this->revert;
965  }
966 
967  $title = $this->entry->getTarget();
968  $type = $this->entry->getType();
969  $subtype = $this->entry->getSubtype();
970 
971  // Do nothing. The implementation is handled by the hook modifiying the
972  // passed-by-ref parameters. This also changes the default value so that
973  // getComment() and getActionLinks() do not call them indefinitely.
974  $this->revert = '';
975 
976  // This is to populate the $comment member of this instance so that it
977  // can be modified when calling the hook just below.
978  if ( $this->comment === null ) {
979  $this->getComment();
980  }
981 
982  $params = $this->entry->getParameters();
983 
984  Hooks::run( 'LogLine', [ $type, $subtype, $title, $params,
985  &$this->comment, &$this->revert, $this->entry->getTimestamp() ] );
986 
987  return $this->revert;
988  }
989 }
$user
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a account $user
Definition: hooks.txt:244
LogFormatter\FOR_THIS_USER
const FOR_THIS_USER
Definition: LogFormatter.php:41
Title\newFromText
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Definition: Title.php:268
LogFormatter\setAudience
setAudience( $audience)
Set the visibility restrictions for displaying content.
Definition: LogFormatter.php:150
LegacyLogFormatter\getComment
getComment()
Gets the user provided comment.
Definition: LogFormatter.php:922
LogFormatter\getActionLinks
getActionLinks()
Returns extra links that comes after the action text, like "revert", etc.
Definition: LogFormatter.php:489
false
processing should stop and the error should be shown to the user * false
Definition: hooks.txt:187
LogFormatter\getPlainActionText
getPlainActionText()
Ugly hack to produce plaintext version of the message.
Definition: LogFormatter.php:187
LogEntry\getTimestamp
getTimestamp()
Get the timestamp when the action was executed.
Linker\userLink
static userLink( $userId, $userName, $altUserName=false)
Make user link (or user contributions for unregistered users)
Definition: Linker.php:893
LogFormatter\makeUserLink
makeUserLink(User $user, $toolFlags=0)
Definition: LogFormatter.php:737
LogEntry\getParameters
getParameters()
Get the extra parameters stored for this message.
captcha-old.count
count
Definition: captcha-old.py:249
text
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add text
Definition: design.txt:12
LogFormatter\FOR_PUBLIC
const FOR_PUBLIC
Definition: LogFormatter.php:40
MediaWiki\Linker\LinkRenderer
Class that generates HTML links for pages.
Definition: LinkRenderer.php:42
LogFormatter\$entry
LogEntryBase $entry
Definition: LogFormatter.php:83
wfTimestamp
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
Definition: GlobalFunctions.php:2040
LogEntryBase\isLegacy
isLegacy()
Whether the parameters for this log are stored in new or old format.
Definition: LogEntry.php:131
LogEntry\getTarget
getTarget()
Get the target page of this action.
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
LogFormatter\getIRCActionComment
getIRCActionComment()
Even uglier hack to maintain backwards compatibilty with IRC bots (T36508).
Definition: LogFormatter.php:201
LogFormatter\getParametersForApi
getParametersForApi()
Get the array of parameters, converted from legacy format if necessary.
Definition: LogFormatter.php:782
$params
$params
Definition: styleTest.css.php:40
LogFormatter\$audience
int $audience
Constant for handling log_deleted.
Definition: LogFormatter.php:86
LogFormatter\canView
canView( $field)
Check if a log item can be displayed.
Definition: LogFormatter.php:161
User\newFromName
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition: User.php:550
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:302
LogFormatter\getMessageParameters
getMessageParameters()
Formats parameters intented for action message from array of all parameters.
Definition: LogFormatter.php:545
LogFormatter\$plaintext
string $plaintext
Set to true if we are constructing a message text that is going to be included in page history or sen...
Definition: LogFormatter.php:101
LogFormatter\setContext
setContext(IContextSource $context)
Replace the default context.
Definition: LogFormatter.php:120
LogPage\actionText
static actionText( $type, $action, $title=null, $skin=null, $params=[], $filterWikilinks=false)
Generate text for a log entry.
Definition: LogPage.php:222
LegacyLogFormatter\getActionLinks
getActionLinks()
Returns extra links that comes after the action text, like "revert", etc.
Definition: LogFormatter.php:957
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
LogEntry\getType
getType()
The main log type.
LogFormatter\getComment
getComment()
Gets the user provided comment.
Definition: LogFormatter.php:683
LogFormatter\getPerformerElement
getPerformerElement()
Provides the name of the user who performed the log action.
Definition: LogFormatter.php:665
LogFormatter\__construct
__construct(LogEntry $entry)
Definition: LogFormatter.php:111
LogFormatter\msg
msg( $key)
Shortcut for wfMessage which honors local context.
Definition: LogFormatter.php:733
ApiResult\setArrayType
static setArrayType(array &$arr, $type, $kvpKeyName=null)
Set the array data type.
Definition: ApiResult.php:728
$html
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses & $html
Definition: hooks.txt:1965
MWException
MediaWiki exception.
Definition: MWException.php:26
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:932
DatabaseLogEntry\newFromRow
static newFromRow( $row)
Constructs new LogEntry from database result row.
Definition: LogEntry.php:205
LogPage\DELETED_COMMENT
const DELETED_COMMENT
Definition: LogPage.php:33
LegacyLogFormatter\$revert
string null $revert
Cache for the result of getActionLinks() so that it does not need to run multiple times depending on ...
Definition: LogFormatter.php:920
LogFormatter\newFromRow
static newFromRow( $row)
Handy shortcut for constructing a formatter directly from database row.
Definition: LogFormatter.php:76
LogEntry
Interface for log entries.
Definition: LogEntry.php:38
LogPage\DELETED_USER
const DELETED_USER
Definition: LogPage.php:34
LogFormatter\getMessageParametersForTesting
getMessageParametersForTesting()
Definition: LogFormatter.php:770
$attribs
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses after processing & $attribs
Definition: hooks.txt:1965
global
when a variable name is used in a it is silently declared as a new masking the global
Definition: design.txt:93
LogFormatter\getIRCActionText
getIRCActionText()
Even uglier hack to maintain backwards compatibilty with IRC bots (T36508).
Definition: LogFormatter.php:222
list
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition: deferred.txt:11
LogPage\DELETED_ACTION
const DELETED_ACTION
Definition: LogPage.php:32
LogFormatter\styleRestricedElement
styleRestricedElement( $content)
Helper method for styling restricted element.
Definition: LogFormatter.php:719
LogEntryBase
Extends the LogEntryInterface with some basic functionality.
Definition: LogEntry.php:115
LogFormatter\formatParameterValue
formatParameterValue( $type, $value)
Formats parameters values dependent to their type.
Definition: LogFormatter.php:589
LogFormatter\formatParameterValueForApi
formatParameterValueForApi( $name, $type, $value)
Format a single parameter value for API output.
Definition: LogFormatter.php:825
ApiResult\setIndexedTagName
static setIndexedTagName(array &$arr, $tag)
Set the tag name for numeric-keyed values in XML format.
Definition: ApiResult.php:616
LogFormatter\formatParametersForApi
formatParametersForApi()
Format parameters for API output.
Definition: LogFormatter.php:800
$value
$value
Definition: styleTest.css.php:45
Linker\userToolLinks
static userToolLinks( $userId, $userText, $redContribsWhenNoEdits=false, $flags=0, $edits=null)
Generate standard user tool links (talk, contributions, block link, etc.)
Definition: Linker.php:926
LegacyLogFormatter\$comment
string null $comment
Backward compatibility for extension changing the comment from the LogLine hook.
Definition: LogFormatter.php:911
LogFormatter\setShowUserToolLinks
setShowUserToolLinks( $value)
If set to true, will produce user tool links after the user name.
Definition: LogFormatter.php:176
LegacyLogFormatter\getActionMessage
getActionMessage()
Returns a sentence describing the log action.
Definition: LogFormatter.php:936
Linker\link
static link( $target, $html=null, $customAttribs=[], $query=[], $options=[])
This function returns an HTML link to the given target.
Definition: Linker.php:107
LogFormatter\setLinkRenderer
setLinkRenderer(LinkRenderer $linkRenderer)
Definition: LogFormatter.php:128
LogEntryBase\getFullType
getFullType()
The full logtype in format maintype/subtype.
Definition: LogEntry.php:117
LogFormatter\getActionText
getActionText()
Gets the log action, including username.
Definition: LogFormatter.php:438
$handler
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable modifiable after all normalizations have been except for the $wgMaxImageArea check set to true or false to override the $wgMaxImageArea check result gives extension the possibility to transform it themselves $handler
Definition: hooks.txt:781
RequestContext\getMain
static getMain()
Static methods.
Definition: RequestContext.php:470
$wgLogActionsHandlers
$wgLogActionsHandlers
The same as above, but here values are names of classes, not messages.
Definition: DefaultSettings.php:7680
LogFormatter\getActionMessage
getActionMessage()
Returns a sentence describing the log action.
Definition: LogFormatter.php:463
LogEntry\getSubtype
getSubtype()
The log subtype.
LogFormatter
Implements the default log formatting.
Definition: LogFormatter.php:38
IContextSource
Interface for objects which can provide a MediaWiki context on request.
Definition: IContextSource.php:55
LogFormatter\getPreloadTitles
getPreloadTitles()
Definition: LogFormatter.php:763
Title
Represents a title within MediaWiki.
Definition: Title.php:39
LogFormatter\$linkRenderer
LinkRenderer null $linkRenderer
Definition: LogFormatter.php:109
LogFormatter\$linkFlood
bool $linkFlood
Whether to output user tool links.
Definition: LogFormatter.php:92
LogEventsList\userCanBitfield
static userCanBitfield( $bitfield, $field, User $user=null)
Determine if the current user is allowed to view a particular field of this log row,...
Definition: LogEventsList.php:542
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
Html\rawElement
static rawElement( $element, $attribs=[], $contents='')
Returns an HTML element in a string.
Definition: Html.php:209
Linker\commentBlock
static commentBlock( $comment, $title=null, $local=false, $wikiId=null)
Wrap a comment in standard punctuation and formatting if it's non-empty, otherwise return empty strin...
Definition: Linker.php:1445
$link
usually copyright or history_copyright This message must be in HTML not wikitext & $link
Definition: hooks.txt:2981
wfMessage
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "&lt
LogFormatter\getRestrictedElement
getRestrictedElement( $message)
Helper method for displaying restricted element.
Definition: LogFormatter.php:703
LogFormatter\$irctext
string $irctext
Definition: LogFormatter.php:104
LegacyLogFormatter
This class formats all log entries for log types which have not been converted to the new system.
Definition: LogFormatter.php:901
MediaWikiServices
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency MediaWikiServices
Definition: injection.txt:23
LogFormatter\getLinkRenderer
getLinkRenderer()
Definition: LogFormatter.php:136
LogFormatter\getMessageKey
getMessageKey()
Returns a key to be used for formatting the action sentence.
Definition: LogFormatter.php:477
User
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition: User.php:51
Hooks\run
static run( $event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
Definition: Hooks.php:203
LogEntry\getPerformer
getPerformer()
Get the user for performed this action.
BlockLogFormatter\formatBlockFlags
static formatBlockFlags( $flags, $lang)
Convert a comma-delimited list of block log flags into a more readable (and translated) form.
Definition: BlockLogFormatter.php:135
$flags
it s the revision text itself In either if gzip is the revision text is gzipped $flags
Definition: hooks.txt:2801
LogFormatter\$context
IContextSource $context
Context for logging.
Definition: LogFormatter.php:89
LogFormatter\extractParameters
extractParameters()
Extracts the optional extra parameters for use in action messages.
Definition: LogFormatter.php:498
ApiQueryBase\addTitleInfo
static addTitleInfo(&$arr, $title, $prefix='')
Add information (title and namespace) about a Title object to a result array.
Definition: ApiQueryBase.php:486
LogFormatter\makePageLink
makePageLink(Title $title=null, $parameters=[], $html=null)
Helper to make a link to the page, taking the plaintext value in consideration.
Definition: LogFormatter.php:646
array
the array() calling protocol came about after MediaWiki 1.4rc1.
$wgContLang
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the content language as $wgContLang
Definition: design.txt:56
LogFormatter\newFromEntry
static newFromEntry(LogEntry $entry)
Constructs a new formatter suitable for given entry.
Definition: LogFormatter.php:50
$type
$type
Definition: testCompression.php:48