MediaWiki REL1_35
RecentChange Class Reference

Utility class for creating new RC entries. More...

Inheritance diagram for RecentChange:
Collaboration diagram for RecentChange:

Public Member Functions

 addTags ( $tags)
 Tags to append to the recent change, and associated revision/log.
 
 diffLinkTrail ( $forceCur)
 Gets the end part of the diff URL associated with this object Blank if no diff link should be displayed.
 
 doMarkPatrolled (User $user, $auto=false, $tags=null)
 Mark this RecentChange as patrolled.
 
 getAttribute ( $name)
 Get an attribute value.
 
 getAttributes ()
 
 getCharacterDifference ( $old=0, $new=0)
 Returns the change size (HTML).
 
 getParam ( $name)
 Get a parameter value.
 
 getPerformer ()
 Get the User object of the person who performed this change.
 
getTitle ()
 
 loadFromRow ( $row)
 Initialises the members of this object from a mysql row object.
 
 notifyRCFeeds (array $feeds=null)
 Notify all the feeds about the change.
 
 parseParams ()
 Parses and returns the rc_params attribute.
 
 reallyMarkPatrolled ()
 Mark this RecentChange patrolled, without error checking.
 
 save ( $send=self::SEND_FEED)
 Writes the data in this object to the database.
 
 setAttribs ( $attribs)
 
 setExtra ( $extra)
 

Static Public Member Functions

static getChangeTypes ()
 Get an array of all change types.
 
static getEngine ( $uri, $params=[])
 
static getQueryInfo ()
 Return the tables, fields, and join conditions to be selected to create a new recentchanges object.
 
static isInRCLifespan ( $timestamp, $tolerance=0)
 Check whether the given timestamp is new enough to have a RC row with a given tolerance as the recentchanges table might not be cleared out regularly (so older entries might exist) or rows which will be deleted soon shouldn't be included.
 
static markPatrolled ( $change, $auto=false, $tags=null)
 Mark a given change as patrolled.
 
static newForCategorization ( $timestamp, Title $categoryTitle, ?User $user, $comment, Title $pageTitle, $oldRevId, $newRevId, $lastTimestamp, $bot, $ip='', $deleted=0, $added=null)
 Constructs a RecentChange object for the given categorization This does not call save() on the object and thus does not write to the db.
 
static newFromConds ( $conds, $fname=__METHOD__, $dbType=DB_REPLICA)
 Find the first recent change matching some specific conditions.
 
static newFromId ( $rcid)
 Obtain the recent change with a given rc_id value.
 
static newFromRow ( $row)
 
static newLogEntry ( $timestamp, $title, $user, $actionComment, $ip, $type, $action, $target, $logComment, $params, $newId=0, $actionCommentIRC='', $revId=0, $isPatrollable=false)
 
static notifyEdit ( $timestamp, $title, $minor, $user, $comment, $oldId, $lastTimestamp, $bot, $ip='', $oldSize=0, $newSize=0, $newId=0, $patrol=0, $tags=[])
 Makes an entry in the database corresponding to an edit.
 
static notifyLog ( $timestamp, $title, $user, $actionComment, $ip, $type, $action, $target, $logComment, $params, $newId=0, $actionCommentIRC='')
 
static notifyNew ( $timestamp, $title, $minor, $user, $comment, $bot, $ip='', $size=0, $newId=0, $patrol=0, $tags=[])
 Makes an entry in the database corresponding to page creation Note: the title object must be loaded with the new id using resetArticleID()
 
static parseFromRCType ( $rcType)
 Parsing RC_* constants to human-readable test.
 
static parseToRCType ( $type)
 Parsing text to RC_* constants.
 

Public Attributes

int $counter = -1
 Line number of recent change.
 
array $mAttribs = []
 
 $mExtra = []
 
Title false $mTitle = false
 
 $notificationtimestamp
 
 $numberofWatchingusers = 0
 
string null $watchlistExpiry
 The expiry time, if this is a temporary watchlist item.
 
const PRC_AUTOPATROLLED = 2
 
const PRC_PATROLLED = 1
 
const PRC_UNPATROLLED = 0
 
const SRC_CATEGORIZE = 'mw.categorize'
 
const SRC_EDIT = 'mw.edit'
 
const SRC_EXTERNAL = 'mw.external'
 
const SRC_LOG = 'mw.log'
 
const SRC_NEW = 'mw.new'
 

Static Private Member Functions

static checkIPAddress ( $ip)
 

Private Attributes

User false $mPerformer = false
 
array $tags = []
 List of tags to apply.
 

Detailed Description

Utility class for creating new RC entries.

mAttribs: rc_id id of the row in the recentchanges table rc_timestamp time the entry was made rc_namespace namespace # rc_title non-prefixed db key rc_type is new entry, used to determine whether updating is necessary rc_source string representation of change source rc_minor is minor rc_cur_id page_id of associated page entry rc_user user id who made the entry rc_user_text user name who made the entry rc_actor actor id who made the entry rc_comment edit summary rc_this_oldid rev_id associated with this entry (or zero) rc_last_oldid rev_id associated with the entry before this one (or zero) rc_bot is bot, hidden rc_ip IP address of the user in dotted quad notation rc_new obsolete, use rc_type==RC_NEW rc_patrolled boolean whether or not someone has marked this edit as patrolled rc_old_len integer byte length of the text before the edit rc_new_len the same after the edit rc_deleted partial deletion rc_logid the log_id value for this log entry (or zero) rc_log_type the log type (or null) rc_log_action the log action (or null) rc_params log params

mExtra: prefixedDBkey prefixed db key, used by external app via msg queue lastTimestamp timestamp of previous entry, used in WHERE clause during update oldSize text size before the change newSize text size after the change pageStatus status of the page: created, deleted, moved, restored, changed

temporary: not stored in the database notificationtimestamp numberofWatchingusers watchlistExpiry for temporary watchlist items

Todo:
Deprecate access to mAttribs (direct or via getAttributes). Right now we're having to include both rc_comment and rc_comment_text/rc_comment_data so random crap works right.

Definition at line 72 of file RecentChange.php.

Member Function Documentation

◆ addTags()

RecentChange::addTags (   $tags)

Tags to append to the recent change, and associated revision/log.

Since
1.28
Parameters
string | string[]$tags

Implements MediaWiki\ChangeTags\Taggable.

Definition at line 1177 of file RecentChange.php.

◆ checkIPAddress()

static RecentChange::checkIPAddress (   $ip)
staticprivate

Definition at line 1120 of file RecentChange.php.

References $wgRequest.

◆ diffLinkTrail()

RecentChange::diffLinkTrail (   $forceCur)

Gets the end part of the diff URL associated with this object Blank if no diff link should be displayed.

Parameters
bool$forceCur
Returns
string

Definition at line 1083 of file RecentChange.php.

References RC_EDIT.

◆ doMarkPatrolled()

RecentChange::doMarkPatrolled ( User  $user,
  $auto = false,
  $tags = null 
)

Mark this RecentChange as patrolled.

NOTE: Can also return 'rcpatroldisabled', 'hookaborted' and 'markedaspatrollederror-noautopatrol' as errors

Parameters
User$userUser object doing the action
bool$autoFor automatic patrol
string | string[] | null$tagsChange tags to add to the patrol log entry ($user should be able to add the specified tags before this is called)
Returns
array[] Array of permissions errors, see PermissionManager::getPermissionErrors()

Definition at line 545 of file RecentChange.php.

References $wgUseFilePatrol, $wgUseNPPatrol, $wgUseRCPatrol, getAttribute(), User\getName(), RC_LOG, RC_NEW, reallyMarkPatrolled(), and PatrolLog\record().

◆ getAttribute()

◆ getAttributes()

RecentChange::getAttributes ( )
Returns
array

Definition at line 1073 of file RecentChange.php.

Referenced by IRCColourfulRCFeedFormatter\getLine().

◆ getChangeTypes()

static RecentChange::getChangeTypes ( )
static

Get an array of all change types.

Since
1.26
Returns
array

Definition at line 191 of file RecentChange.php.

◆ getCharacterDifference()

RecentChange::getCharacterDifference (   $old = 0,
  $new = 0 
)

Returns the change size (HTML).

The lengths can be given optionally.

Parameters
int$old
int$new
Returns
string

Definition at line 1106 of file RecentChange.php.

◆ getEngine()

static RecentChange::getEngine (   $uri,
  $params = [] 
)
static
Since
1.22
Deprecated:
since 1.29 Use RCFeed::factory() instead
Parameters
string$uriURI to get the engine object for
array$params
Returns
RCFeedEngine The engine object
Exceptions
MWException

Definition at line 491 of file RecentChange.php.

References $wgRCEngines.

◆ getParam()

RecentChange::getParam (   $name)

Get a parameter value.

Since
1.27
Parameters
string$nameparameter name
Returns
mixed

Definition at line 991 of file RecentChange.php.

References parseParams().

◆ getPerformer()

RecentChange::getPerformer ( )

Get the User object of the person who performed this change.

Returns
User

Definition at line 304 of file RecentChange.php.

References User\newFromActorId(), User\newFromId(), and User\newFromName().

Referenced by notifyRCFeeds(), and save().

◆ getQueryInfo()

static RecentChange::getQueryInfo ( )
static

Return the tables, fields, and join conditions to be selected to create a new recentchanges object.

Since
1.31
Returns
array With three keys:
  • tables: (string[]) to include in the $table to IDatabase->select()
  • fields: (string[]) to include in the $vars to IDatabase->select()
  • joins: (array) to include in the $join_conds to IDatabase->select()

Definition at line 240 of file RecentChange.php.

◆ getTitle()

◆ isInRCLifespan()

static RecentChange::isInRCLifespan (   $timestamp,
  $tolerance = 0 
)
static

Check whether the given timestamp is new enough to have a RC row with a given tolerance as the recentchanges table might not be cleared out regularly (so older entries might exist) or rows which will be deleted soon shouldn't be included.

Parameters
mixed$timestampMWTimestamp compatible timestamp
int$toleranceTolerance in seconds
Returns
bool

Definition at line 1146 of file RecentChange.php.

References $wgRCMaxAge, and wfTimestamp().

◆ loadFromRow()

RecentChange::loadFromRow (   $row)

Initialises the members of this object from a mysql row object.

Parameters
mixed$row

Definition at line 1001 of file RecentChange.php.

References DB_REPLICA, User\newFromAnyId(), wfGetDB(), and wfTimestamp().

Referenced by newFromRow().

◆ markPatrolled()

static RecentChange::markPatrolled (   $change,
  $auto = false,
  $tags = null 
)
static

Mark a given change as patrolled.

Deprecated:
since 1.35, use doMarkPatrolled directly
Parameters
RecentChange | int$changeRecentChange or corresponding rc_id
bool$autoFor automatic patrol
string | string[] | null$tagsChange tags to add to the patrol log entry ($user should be able to add the specified tags before this is called)
Returns
array[]|null See doMarkPatrolled(), or null if $change is not an existing rc_id

Definition at line 518 of file RecentChange.php.

References wfDeprecated().

◆ newForCategorization()

static RecentChange::newForCategorization (   $timestamp,
Title  $categoryTitle,
?User  $user,
  $comment,
Title  $pageTitle,
  $oldRevId,
  $newRevId,
  $lastTimestamp,
  $bot,
  $ip = '',
  $deleted = 0,
  $added = null 
)
static

Constructs a RecentChange object for the given categorization This does not call save() on the object and thus does not write to the db.

Since
1.27
Parameters
string$timestampTimestamp of the recent change to occur
Title$categoryTitleTitle of the category a page is being added to or removed from
User | null$userUser object of the user that made the change
string$commentChange summary
Title$pageTitleTitle of the page that is being added or removed
int$oldRevIdParent revision ID of this change
int$newRevIdRevision ID of this change
string$lastTimestampParent revision timestamp of this change
bool$bottrue, if the change was made by a bot
string$ipIP address of the user, if the change was made anonymously
int$deletedIndicates whether the change has been deleted
bool | null$addedtrue, if the category was added, false for removed
Returns
RecentChange

Definition at line 918 of file RecentChange.php.

References WikiPage\factory(), User\getActorId(), Title\getArticleID(), Title\getDBkey(), User\getId(), User\getName(), Title\getNamespace(), Title\getPrefixedDBkey(), RC_CATEGORIZE, and serialize().

◆ newFromConds()

static RecentChange::newFromConds (   $conds,
  $fname = __METHOD__,
  $dbType = DB_REPLICA 
)
static

Find the first recent change matching some specific conditions.

Parameters
array$condsArray of conditions
mixed$fnameOverride the method name in profiling/logs
int$dbTypeDB_* constant
Returns
RecentChange|null

Definition at line 214 of file RecentChange.php.

References wfGetDB().

◆ newFromId()

static RecentChange::newFromId (   $rcid)
static

Obtain the recent change with a given rc_id value.

Parameters
int$rcidThe rc_id value to retrieve
Returns
RecentChange|null

Definition at line 201 of file RecentChange.php.

◆ newFromRow()

static RecentChange::newFromRow (   $row)
static
Parameters
mixed$row
Returns
RecentChange

Definition at line 144 of file RecentChange.php.

References loadFromRow().

◆ newLogEntry()

static RecentChange::newLogEntry (   $timestamp,
  $title,
  $user,
  $actionComment,
  $ip,
  $type,
  $action,
  $target,
  $logComment,
  $params,
  $newId = 0,
  $actionCommentIRC = '',
  $revId = 0,
  $isPatrollable = false 
)
static
Parameters
string$timestamp
Title$title
User$user
string$actionComment
string$ip
string$type
string$action
Title$target
string$logComment
string$params
int$newId
string$actionCommentIRC
int$revIdId of associated revision, if any
bool$isPatrollableWhether this log entry is patrollable
Returns
RecentChange

Definition at line 821 of file RecentChange.php.

References $title, $type, $wgRequest, and RC_LOG.

◆ notifyEdit()

static RecentChange::notifyEdit (   $timestamp,
  $title,
  $minor,
  $user,
  $comment,
  $oldId,
  $lastTimestamp,
  $bot,
  $ip = '',
  $oldSize = 0,
  $newSize = 0,
  $newId = 0,
  $patrol = 0,
  $tags = [] 
)
static

Makes an entry in the database corresponding to an edit.

Parameters
string$timestamp
Title$title
bool$minor
User$user
string$comment
int$oldId
string$lastTimestamp
bool$bot
string$ip
int$oldSize
int$newSize
int$newId
int$patrol
array$tags
Returns
RecentChange

Definition at line 643 of file RecentChange.php.

References $title, DB_MASTER, RC_EDIT, and wfGetDB().

◆ notifyLog()

static RecentChange::notifyLog (   $timestamp,
  $title,
  $user,
  $actionComment,
  $ip,
  $type,
  $action,
  $target,
  $logComment,
  $params,
  $newId = 0,
  $actionCommentIRC = '' 
)
static
Parameters
string$timestamp
Title$title
User$user
string$actionComment
string$ip
string$type
string$action
Title$target
string$logComment
string$params
int$newId
string$actionCommentIRC
Returns
bool

Definition at line 788 of file RecentChange.php.

References $title, $type, and $wgLogRestrictions.

◆ notifyNew()

static RecentChange::notifyNew (   $timestamp,
  $title,
  $minor,
  $user,
  $comment,
  $bot,
  $ip = '',
  $size = 0,
  $newId = 0,
  $patrol = 0,
  $tags = [] 
)
static

Makes an entry in the database corresponding to page creation Note: the title object must be loaded with the new id using resetArticleID()

Parameters
string$timestamp
Title$title
bool$minor
User$user
string$comment
bool$bot
string$ip
int$size
int$newId
int$patrol
array$tags
Returns
RecentChange

Definition at line 717 of file RecentChange.php.

References $title, DB_MASTER, RC_NEW, and wfGetDB().

◆ notifyRCFeeds()

RecentChange::notifyRCFeeds ( array  $feeds = null)

Notify all the feeds about the change.

Parameters
array | null$feedsOptional feeds to send to, defaults to $wgRCFeeds

Definition at line 448 of file RecentChange.php.

References $wgRCFeeds, RCFeed\factory(), getPerformer(), and RC_EXTERNAL.

Referenced by save().

◆ parseFromRCType()

static RecentChange::parseFromRCType (   $rcType)
static

Parsing RC_* constants to human-readable test.

Since
1.24
Parameters
int$rcType
Returns
string $type

Definition at line 180 of file RecentChange.php.

◆ parseParams()

RecentChange::parseParams ( )

Parses and returns the rc_params attribute.

Since
1.26
Returns
mixed|bool false on failed unserialization

Definition at line 1159 of file RecentChange.php.

References getAttribute(), and unserialize().

Referenced by MachineReadableRCFeedFormatter\getLine(), and getParam().

◆ parseToRCType()

static RecentChange::parseToRCType (   $type)
static

Parsing text to RC_* constants.

Since
1.24
Parameters
string | array$type
Exceptions
MWException
Returns
int|array RC_TYPE

Definition at line 158 of file RecentChange.php.

References $t, and $type.

◆ reallyMarkPatrolled()

RecentChange::reallyMarkPatrolled ( )

Mark this RecentChange patrolled, without error checking.

Returns
int Number of affected rows

Definition at line 605 of file RecentChange.php.

References DB_MASTER, getAttribute(), getTitle(), and wfGetDB().

Referenced by doMarkPatrolled().

◆ save()

RecentChange::save (   $send = self::SEND_FEED)

Writes the data in this object to the database.

For compatibility reasons, the SEND_ constants internally reference a value that may seem negated from their purpose (none=true, feed=false). This is because the parameter used to be called "$noudp", defaulting to false.

Parameters
bool$sendself::SEND_FEED or self::SEND_NONE

Definition at line 329 of file RecentChange.php.

References $title, $wgPutIPinRC, $wgShowUpdatedMarker, $wgUseEnotif, ChangeTags\addTags(), DB_MASTER, getPerformer(), getTitle(), User\newFromAnyId(), notifyRCFeeds(), RC_CATEGORIZE, and wfGetDB().

◆ setAttribs()

RecentChange::setAttribs (   $attribs)
Parameters
array$attribs

Definition at line 277 of file RecentChange.php.

◆ setExtra()

RecentChange::setExtra (   $extra)
Parameters
array$extra

Definition at line 284 of file RecentChange.php.

Member Data Documentation

◆ $counter

int RecentChange::$counter = -1

Line number of recent change.

Default -1.

Definition at line 120 of file RecentChange.php.

◆ $mAttribs

array RecentChange::$mAttribs = []

Definition at line 96 of file RecentChange.php.

◆ $mExtra

RecentChange::$mExtra = []

Definition at line 97 of file RecentChange.php.

◆ $mPerformer

User false RecentChange::$mPerformer = false
private

Definition at line 107 of file RecentChange.php.

◆ $mTitle

Title false RecentChange::$mTitle = false

Definition at line 102 of file RecentChange.php.

◆ $notificationtimestamp

RecentChange::$notificationtimestamp

Definition at line 110 of file RecentChange.php.

◆ $numberofWatchingusers

RecentChange::$numberofWatchingusers = 0

Definition at line 109 of file RecentChange.php.

◆ $tags

array RecentChange::$tags = []
private

List of tags to apply.

Definition at line 125 of file RecentChange.php.

◆ $watchlistExpiry

string null RecentChange::$watchlistExpiry

The expiry time, if this is a temporary watchlist item.

Definition at line 115 of file RecentChange.php.

◆ PRC_AUTOPATROLLED

const RecentChange::PRC_AUTOPATROLLED = 2

Definition at line 83 of file RecentChange.php.

◆ PRC_PATROLLED

const RecentChange::PRC_PATROLLED = 1

Definition at line 82 of file RecentChange.php.

◆ PRC_UNPATROLLED

const RecentChange::PRC_UNPATROLLED = 0

Definition at line 81 of file RecentChange.php.

◆ SRC_CATEGORIZE

const RecentChange::SRC_CATEGORIZE = 'mw.categorize'

Definition at line 79 of file RecentChange.php.

◆ SRC_EDIT

const RecentChange::SRC_EDIT = 'mw.edit'

Definition at line 75 of file RecentChange.php.

◆ SRC_EXTERNAL

const RecentChange::SRC_EXTERNAL = 'mw.external'

Definition at line 78 of file RecentChange.php.

◆ SRC_LOG

const RecentChange::SRC_LOG = 'mw.log'

Definition at line 77 of file RecentChange.php.

◆ SRC_NEW

const RecentChange::SRC_NEW = 'mw.new'

Definition at line 76 of file RecentChange.php.


The documentation for this class was generated from the following file: