Go to the documentation of this file.
122 return ( $this->
getDeleted() & $field ) === $field;
178 [
'logging' ], $commentQuery[
'tables'], $actorQuery[
'tables'], [
'user' ]
181 'log_id',
'log_type',
'log_action',
'log_timestamp',
182 'log_namespace',
'log_title',
183 'log_params',
'log_deleted',
184 'user_id',
'user_name',
'user_editcount',
185 ] + $commentQuery[
'fields'] + $actorQuery[
'fields'];
189 'user' => [
'LEFT JOIN',
'user_id=' . $actorQuery[
'fields'][
'log_user'] ],
190 ] + $commentQuery[
'joins'] + $actorQuery[
'joins'];
197 'join_conds' => $joins,
210 if ( isset(
$row->rc_logid ) ) {
213 return new self(
$row );
226 $queryInfo[
'conds'] += [
'log_id' => $id ];
228 $queryInfo[
'tables'],
229 $queryInfo[
'fields'],
232 $queryInfo[
'options'],
233 $queryInfo[
'join_conds']
266 return (
int)$this->row->log_id;
275 return $this->row->log_params;
285 return $this->row->log_type;
289 return $this->row->log_action;
293 if ( !isset( $this->params ) ) {
295 Wikimedia\suppressWarnings();
297 Wikimedia\restoreWarnings();
300 $this->legacy =
false;
303 $this->legacy =
true;
306 if ( isset( $this->params[
'associated_rev_id'] ) ) {
307 $this->revId = $this->params[
'associated_rev_id'];
308 unset( $this->params[
'associated_rev_id'] );
322 if ( !$this->performer ) {
323 $actorId = isset( $this->row->log_actor ) ? (int)$this->row->log_actor : 0;
324 $userId = (
int)$this->row->log_user;
325 if ( $userId !== 0 || $actorId !== 0 ) {
327 if ( isset( $this->row->user_name ) ) {
329 } elseif ( $actorId !== 0 ) {
336 $userText = $this->row->log_user_text;
345 $namespace = $this->row->log_namespace;
346 $page = $this->row->log_title;
353 return wfTimestamp( TS_MW, $this->row->log_timestamp );
361 return $this->row->log_deleted;
372 return $this->row->rc_logid;
376 return $this->row->rc_params;
380 return $this->row->rc_this_oldid;
384 return $this->row->rc_log_type;
388 return $this->row->rc_log_action;
392 if ( !$this->performer ) {
393 $actorId = isset( $this->row->rc_actor ) ? (int)$this->row->rc_actor : 0;
394 $userId = (
int)$this->row->rc_user;
395 if ( $actorId !== 0 ) {
397 } elseif ( $userId !== 0 ) {
400 $userText = $this->row->rc_user_text;
410 $namespace = $this->row->rc_namespace;
411 $page = $this->row->rc_title;
418 return wfTimestamp( TS_MW, $this->row->rc_timestamp );
428 return $this->row->rc_deleted;
586 if ( is_string(
$tags ) ) {
602 $this->isPatrollable = (bool)$patrollable;
637 if ( $this->timestamp ===
null ) {
652 if ( !empty(
$relations[
'target_author_id'] ) ) {
657 if ( !empty(
$relations[
'target_author_ip'] ) ) {
663 $relations[
'target_author_actor'] = $actorIds;
664 $params[
'authorActors'] = $actorIds;
680 'log_type' => $this->
getType(),
682 'log_timestamp' => $dbw->timestamp( $this->
getTimestamp() ),
683 'log_namespace' => $this->
getTarget()->getNamespace(),
684 'log_title' => $this->
getTarget()->getDBkey(),
685 'log_page' => $this->
getTarget()->getArticleID(),
688 if ( isset( $this->deleted ) ) {
693 ->getInsertValues( $dbw,
'log_user', $this->
getPerformer() );
695 $dbw->insert(
'logging', $data, __METHOD__ );
696 $this->
id = $dbw->insertId();
700 if ( !strlen( $tag ) ) {
701 throw new MWException(
"Got empty log search tag." );
704 if ( !is_array( $values ) ) {
705 $values = [ $values ];
717 $dbw->insert(
'log_search',
$rows, __METHOD__,
'IGNORE' );
738 if (
$user->isAnon() ) {
742 $ip =
$user->getName();
750 $formatter->getPlainActionText(),
758 $formatter->getIRCActionComment(),
770 public function publish( $newId, $to =
'rcandudp' ) {
772 function ()
use ( $newId, $to ) {
774 if ( !$log->isRestricted() ) {
777 if ( $to ===
'rc' || $to ===
'rcandudp' ) {
780 if ( is_null(
$tags ) ) {
783 $rc->addTags(
$tags );
784 $rc->save( $rc::SEND_NONE );
787 if ( $to ===
'udp' || $to ===
'rcandudp' ) {
788 $rc->notifyRCFeeds();
setTimestamp( $timestamp)
Set the timestamp of when the logged action took place.
__construct( $type, $subtype)
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
static newFromId( $id)
Static factory method for creation from a given user ID.
A subclass of DatabaseLogEntry for objects constructed from entries in the recentchanges table (rathe...
int $deleted
Deletion state of the log entry.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on and they can depend only on the ResourceLoaderContext $context
getType()
The main log type.
getTimestamp()
Get the timestamp when the action was executed.
insert(IDatabase $dbw=null)
Insert the entry into the logging table.
getId()
Returns the unique database id.
array $params
Parameters for log entry.
static extractParams( $blob)
Extract a parameter array from a blob.
getParameters()
Get the extra parameters stored for this message.
getParameters()
Get the extra parameters stored for this message.
setAssociatedRevId( $revId)
Set an associated revision id.
getParameters()
Get the extra parameters stored for this message.
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
isLegacy()
Whether the parameters for this log are stored in new or old format.
static getSelectQueryData()
Returns array of information that is needed for querying log entries.
getRawParameters()
Returns whatever is stored in the database field.
getSubtype()
The log subtype.
getTarget()
Get the target page of this action.
static newFromId( $id, IDatabase $db)
Loads a LogEntry with the given id from database.
this hook is for auditing only RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist & $tables
getComment()
Get the user provided comment.
getComment()
Get the user provided comment.
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
getComment()
Get the user provided comment.
static newExtraneousContext(Title $title, $request=[])
Create a new extraneous context.
getFullType()
The full logtype in format maintype/subtype.
static getTitleFor( $name, $subpage=false, $fragment='')
Get a localised Title object for a specified special page name If you don't need a full Title object,...
setRelations(array $relations)
Declare arbitrary tag/value relations to this log entry.
setTarget(Title $target)
Set the title of the object changed.
static newFromRow( $row, $data=null)
Create a new user object from a user row.
getSubtype()
The log subtype.
getTimestamp()
Get the timestamp when the action was executed.
static newMigration()
Static constructor.
bool $legacy
Whether this is a legacy log entry.
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
getTimestamp()
Get the timestamp when the action was executed.
setTags( $tags)
Set change tags for the log entry.
getType()
The main log type.
getId()
Returns the unique database id.
getTimestamp()
Get the timestamp when the action was executed.
string $comment
Comment for the log entry.
array $parameters
Parameters for log entry.
getRecentChange( $newId=0)
Get a RecentChanges object for the log entry.
getTarget()
Get the target page of this action.
namespace and then decline to actually register it file or subcat img or subcat $title
static newFromRow( $row)
Constructs new LogEntry from database result row.
setComment( $comment)
Set a comment associated with the action being logged.
int $id
ID of the log entry.
Interface for log entries.
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
getType()
The main log type.
Class to simplify the use of log pages.
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
getComment()
Get the user provided comment.
getSubtype()
The log subtype.
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
wfTimestampNow()
Convenience function; returns MediaWiki timestamp for the present time.
string $subtype
Sub type of log entry.
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
setParameters( $parameters)
Set extra log parameters.
publish( $newId, $to='rcandudp')
Publish the log entry.
Extends the LogEntryInterface with some basic functionality.
getDeleted()
Get the access restriction.
setIsPatrollable( $patrollable)
Set whether this log entry should be made patrollable This shouldn't depend on config,...
static extractParams( $blob)
Extract a parameter array from a blob.
setDeleted( $deleted)
Set the 'deleted' flag.
const SCHEMA_COMPAT_WRITE_OLD
getPerformer()
Get the user for performed this action.
string $timestamp
Timestamp of creation of the log entry.
const SCHEMA_COMPAT_WRITE_NEW
getFullType()
The full logtype in format maintype/subtype.
getType()
The main log type.
getSubtype()
The log subtype.
static newLogEntry( $timestamp, $title, $user, $actionComment, $ip, $type, $action, $target, $logComment, $params, $newId=0, $actionCommentIRC='', $revId=0, $isPatrollable=false)
unserialize( $serialized)
Represents a title within MediaWiki.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction $rows
setPerformer(User $performer)
Set the user that performed the action being logged.
int $revId
A rev id associated to the log entry.
bool $legacy
Whether the parameters for this log entry are stored in new or old format.
getDeleted()
Get the access restriction.
static makeParamBlob( $params)
Create a blob from a parameter array.
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
int $revId
A rev id associated to the log entry.
static newFromActorId( $id)
Static factory method for creation from a given actor ID.
A value class to process existing log entries.
getIsPatrollable()
Whether this log entry is patrollable.
isLegacy()
Whether the parameters for this log are stored in new or old format.
Title $target
Target title for the log entry.
Class for creating new log entries and inserting them into the database.
getPerformer()
Get the user for performed this action.
getTarget()
Get the target page of this action.
setLegacy( $legacy)
Set the 'legacy' flag.
stdClass $row
Database result row.
globals will be eliminated from MediaWiki replaced by an application object which would be passed to constructors Whether that would be an convenient solution remains to be but certainly PHP makes such object oriented programming models easier than they were in previous versions For the time being MediaWiki programmers will have to work in an environment with some global context At the time of globals were initialised on startup by MediaWiki of these were configuration which are documented in DefaultSettings php There is no comprehensive documentation for the remaining however some of the most important ones are listed below They are typically initialised either in index php or in Setup php $wgTitle Title object created from the request URL $wgOut OutputPage object for HTTP response $wgUser User object for the user associated with the current request $wgLang Language object selected by user preferences $wgContLang Language object associated with the wiki being viewed $wgParser Parser object Parser extensions register their hooks here $wgRequest WebRequest object
getDeleted()
Get the access restriction.
getDeleted()
Get the access restriction.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
static addCallableUpdate( $callable, $stage=self::POSTSEND, $dbw=null)
Add a callable update.
This document describes the state of Postgres support in and is fairly well maintained The main code is very well while extensions are very hit and miss it is probably the most supported database after MySQL Much of the work in making MediaWiki database agnostic came about through the work of creating Postgres as and are nearing end of but without copying over all the usage comments General notes on the but these can almost always be programmed around *Although Postgres has a true BOOLEAN type
getPerformer()
Get the user for performed this action.
getRawParameters()
Returns whatever is stored in the database field.
string $type
Type of log entry.
bool $isPatrollable
Can this log entry be patrolled?
User $performer
Performer of the action for the log entry.
static isIPAddress( $ip)
Determine if a string is as valid IP address or network (CIDR prefix).
array $tags
Change tags add to the log entry.
int $wgActorTableSchemaMigrationStage
Actor table schema migration stage.