122 return ( $this->
getDeleted() & $field ) === $field;
174 $commentQuery = CommentStore::getStore()->getJoin(
'log_comment' );
175 $actorQuery = ActorMigration::newMigration()->getJoin(
'log_user' );
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;
347 $title = Title::makeTitle( $namespace, $page );
353 return wfTimestamp( TS_MW, $this->row->log_timestamp );
357 return CommentStore::getStore()->getComment(
'log_comment', $this->row )->text;
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;
412 $title = Title::makeTitle( $namespace, $page );
418 return wfTimestamp( TS_MW, $this->row->rc_timestamp );
422 return CommentStore::getStore()
428 return $this->row->rc_deleted;
523 $this->relations = $relations;
533 $this->performer = $performer;
543 $this->target = $target;
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 ) ) {
689 $data[
'log_deleted'] = $this->deleted;
691 $data += CommentStore::getStore()->insert( $dbw,
'log_comment',
$comment );
692 $data += ActorMigration::newMigration()
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 ];
712 'ls_log_id' => $this->id
716 if ( count(
$rows ) ) {
717 $dbw->insert(
'log_search',
$rows, __METHOD__,
'IGNORE' );
735 $logpage = SpecialPage::getTitleFor(
'Log', $this->
getType() );
738 if (
$user->isAnon() ) {
741 if ( IP::isIPAddress(
$user->getName() ) ) {
742 $ip =
$user->getName();
746 return RecentChange::newLogEntry(
750 $formatter->getPlainActionText(),
758 $formatter->getIRCActionComment(),
759 $this->getAssociatedRevId(),
760 $this->getIsPatrollable()
770 public function publish( $newId, $to =
'rcandudp' ) {
771 DeferredUpdates::addCallableUpdate(
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();
792 DeferredUpdates::POSTSEND,
802 return $this->subtype;
806 return $this->parameters;
813 return $this->performer;
820 return $this->target;
830 return $this->comment;
856 return $this->isPatrollable;
864 return $this->legacy;
868 return (
int)$this->deleted;
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
unserialize( $serialized)
int $wgActorTableSchemaMigrationStage
Actor table schema migration stage.
wfTimestampNow()
Convenience function; returns MediaWiki timestamp for the present time.
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
A value class to process existing log entries.
getParameters()
Get the extra parameters stored for this message.
isLegacy()
Whether the parameters for this log are stored in new or old format.
array $params
Parameters for log entry.
getSubtype()
The log subtype.
getDeleted()
Get the access restriction.
static newFromRow( $row)
Constructs new LogEntry from database result row.
getComment()
Get the user provided comment.
bool $legacy
Whether the parameters for this log entry are stored in new or old format.
int $revId
A rev id associated to the log entry.
getRawParameters()
Returns whatever is stored in the database field.
static getSelectQueryData()
Returns array of information that is needed for querying log entries.
stdClass $row
Database result row.
getId()
Returns the unique database id.
getPerformer()
Get the user for performed this action.
getTarget()
Get the target page of this action.
getType()
The main log type.
static newFromId( $id, IDatabase $db)
Loads a LogEntry with the given id from database.
getTimestamp()
Get the timestamp when the action was executed.
Extends the LogEntryInterface with some basic functionality.
isLegacy()
Whether the parameters for this log are stored in new or old format.
static extractParams( $blob)
Extract a parameter array from a blob.
static makeParamBlob( $params)
Create a blob from a parameter array.
getFullType()
The full logtype in format maintype/subtype.
Class to simplify the use of log pages.
static extractParams( $blob)
Extract a parameter array from a blob.
Class for creating new log entries and inserting them into the database.
getDeleted()
Get the access restriction.
getIsPatrollable()
Whether this log entry is patrollable.
setDeleted( $deleted)
Set the 'deleted' flag.
string $subtype
Sub type of log entry.
int $id
ID of the log entry.
string $type
Type of log entry.
setTarget(Title $target)
Set the title of the object changed.
setAssociatedRevId( $revId)
Set an associated revision id.
insert(IDatabase $dbw=null)
Insert the entry into the logging table.
string $comment
Comment for the log entry.
setTimestamp( $timestamp)
Set the timestamp of when the logged action took place.
array $parameters
Parameters for log entry.
getTimestamp()
Get the timestamp when the action was executed.
int $revId
A rev id associated to the log entry.
setComment( $comment)
Set a comment associated with the action being logged.
setParameters( $parameters)
Set extra log parameters.
getComment()
Get the user provided comment.
bool $isPatrollable
Can this log entry be patrolled?
getType()
The main log type.
Title $target
Target title for the log entry.
int $deleted
Deletion state of the log entry.
setLegacy( $legacy)
Set the 'legacy' flag.
setIsPatrollable( $patrollable)
Set whether this log entry should be made patrollable This shouldn't depend on config,...
getParameters()
Get the extra parameters stored for this message.
bool $legacy
Whether this is a legacy log entry.
string $timestamp
Timestamp of creation of the log entry.
getRecentChange( $newId=0)
Get a RecentChanges object for the log entry.
User $performer
Performer of the action for the log entry.
setRelations(array $relations)
Declare arbitrary tag/value relations to this log entry.
setPerformer(User $performer)
Set the user that performed the action being logged.
__construct( $type, $subtype)
setTags( $tags)
Set change tags for the log entry.
array $tags
Change tags add to the log entry.
publish( $newId, $to='rcandudp')
Publish the log entry.
getSubtype()
The log subtype.
A subclass of DatabaseLogEntry for objects constructed from entries in the recentchanges table (rathe...
getTimestamp()
Get the timestamp when the action was executed.
getTarget()
Get the target page of this action.
getSubtype()
The log subtype.
getComment()
Get the user provided comment.
getDeleted()
Get the access restriction.
getRawParameters()
Returns whatever is stored in the database field.
getId()
Returns the unique database id.
getPerformer()
Get the user for performed this action.
getType()
The main log type.
Represents a title within MediaWiki.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
static newFromRow( $row, $data=null)
Create a new user object from a user row.
static newFromId( $id)
Static factory method for creation from a given user ID.
static newFromActorId( $id)
Static factory method for creation from a given actor ID.
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
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
const SCHEMA_COMPAT_WRITE_OLD
const SCHEMA_COMPAT_WRITE_NEW
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
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
namespace and then decline to actually register it file or subcat img or subcat $title
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
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 local account $user
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
Interface for log entries.
getParameters()
Get the extra parameters stored for this message.
getTimestamp()
Get the timestamp when the action was executed.
getTarget()
Get the target page of this action.
getSubtype()
The log subtype.
getDeleted()
Get the access restriction.
getComment()
Get the user provided comment.
getFullType()
The full logtype in format maintype/subtype.
getPerformer()
Get the user for performed this action.
getType()
The main log type.
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))
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