3 * Utility class for creating and accessing recent change 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
24 * Utility class for creating new RC entries
27 * rc_id id of the row in the recentchanges table
28 * rc_timestamp time the entry was made
29 * rc_namespace namespace #
30 * rc_title non-prefixed db key
31 * rc_type is new entry, used to determine whether updating is necessary
32 * rc_source string representation of change source
34 * rc_cur_id page_id of associated page entry
35 * rc_user user id who made the entry
36 * rc_user_text user name who made the entry
37 * rc_comment edit summary
38 * rc_this_oldid rev_id associated with this entry (or zero)
39 * rc_last_oldid rev_id associated with the entry before this one (or zero)
40 * rc_bot is bot, hidden
41 * rc_ip IP address of the user in dotted quad notation
42 * rc_new obsolete, use rc_type==RC_NEW
43 * rc_patrolled boolean whether or not someone has marked this edit as patrolled
44 * rc_old_len integer byte length of the text before the edit
45 * rc_new_len the same after the edit
46 * rc_deleted partial deletion
47 * rc_logid the log_id value for this log entry (or zero)
48 * rc_log_type the log type (or null)
49 * rc_log_action the log action (or null)
50 * rc_params log params
53 * prefixedDBkey prefixed db key, used by external app via msg queue
54 * lastTimestamp timestamp of previous entry, used in WHERE clause during update
55 * oldSize text size before the change
56 * newSize text size after the change
57 * pageStatus status of the page: created, deleted, moved, restored, changed
59 * temporary: not stored in the database
60 * notificationtimestamp
61 * numberofWatchingusers
64 // Constants for the rc_source field. Extensions may also have
65 // their own source constants.
66 const SRC_EDIT
= 'mw.edit';
67 const SRC_NEW
= 'mw.new';
68 const SRC_LOG
= 'mw.log';
69 const SRC_EXTERNAL
= 'mw.external'; // obsolete
70 const SRC_CATEGORIZE
= 'mw.categorize';
72 public $mAttribs = [];
78 public $mTitle = false;
83 private $mPerformer = false;
85 public $numberofWatchingusers = 0; # Dummy to prevent error message in SpecialRecentChangesLinked
86 public $notificationtimestamp;
89 * @var int Line number of recent change. Default -1.
94 * @var array List of tags to apply
99 * @var array Array of change types
101 private static $changeTypes = [
105 'external' => RC_EXTERNAL
,
106 'categorize' => RC_CATEGORIZE
,
113 * @return RecentChange
115 public static function newFromRow( $row ) {
116 $rc = new RecentChange
;
117 $rc->loadFromRow( $row );
123 * Parsing text to RC_* constants
125 * @param string|array $type
126 * @throws MWException
127 * @return int|array RC_TYPE
129 public static function parseToRCType( $type ) {
130 if ( is_array( $type ) ) {
132 foreach ( $type as $t ) {
133 $retval[] = RecentChange
::parseToRCType( $t );
139 if ( !array_key_exists( $type, self
::$changeTypes ) ) {
140 throw new MWException( "Unknown type '$type'" );
142 return self
::$changeTypes[$type];
146 * Parsing RC_* constants to human-readable test
149 * @return string $type
151 public static function parseFromRCType( $rcType ) {
152 return array_search( $rcType, self
::$changeTypes, true ) ?
: "$rcType";
156 * Get an array of all change types
162 public static function getChangeTypes() {
163 return array_keys( self
::$changeTypes );
167 * Obtain the recent change with a given rc_id value
169 * @param int $rcid The rc_id value to retrieve
170 * @return RecentChange|null
172 public static function newFromId( $rcid ) {
173 return self
::newFromConds( [ 'rc_id' => $rcid ], __METHOD__
);
177 * Find the first recent change matching some specific conditions
179 * @param array $conds Array of conditions
180 * @param mixed $fname Override the method name in profiling/logs
181 * @param int $dbType DB_* constant
183 * @return RecentChange|null
185 public static function newFromConds(
190 $db = wfGetDB( $dbType );
191 $row = $db->selectRow( 'recentchanges', self
::selectFields(), $conds, $fname );
192 if ( $row !== false ) {
193 return self
::newFromRow( $row );
200 * Return the list of recentchanges fields that should be selected to create
201 * a new recentchanges object.
204 public static function selectFields() {
236 * @param array $attribs
238 public function setAttribs( $attribs ) {
239 $this->mAttribs
= $attribs;
243 * @param array $extra
245 public function setExtra( $extra ) {
246 $this->mExtra
= $extra;
252 public function &getTitle() {
253 if ( $this->mTitle
=== false ) {
254 $this->mTitle
= Title
::makeTitle( $this->mAttribs
['rc_namespace'], $this->mAttribs
['rc_title'] );
257 return $this->mTitle
;
261 * Get the User object of the person who performed this change.
265 public function getPerformer() {
266 if ( $this->mPerformer
=== false ) {
267 if ( $this->mAttribs
['rc_user'] ) {
268 $this->mPerformer
= User
::newFromId( $this->mAttribs
['rc_user'] );
270 $this->mPerformer
= User
::newFromName( $this->mAttribs
['rc_user_text'], false );
274 return $this->mPerformer
;
278 * Writes the data in this object to the database
281 public function save( $noudp = false ) {
282 global $wgPutIPinRC, $wgUseEnotif, $wgShowUpdatedMarker, $wgContLang;
284 $dbw = wfGetDB( DB_MASTER
);
285 if ( !is_array( $this->mExtra
) ) {
289 if ( !$wgPutIPinRC ) {
290 $this->mAttribs
['rc_ip'] = '';
293 # Strict mode fixups (not-NULL fields)
294 foreach ( [ 'minor', 'bot', 'new', 'patrolled', 'deleted' ] as $field ) {
295 $this->mAttribs
["rc_$field"] = (int)$this->mAttribs
["rc_$field"];
297 # ...more fixups (NULL fields)
298 foreach ( [ 'old_len', 'new_len' ] as $field ) {
299 $this->mAttribs
["rc_$field"] = isset( $this->mAttribs
["rc_$field"] )
300 ?
(int)$this->mAttribs
["rc_$field"]
304 # If our database is strict about IP addresses, use NULL instead of an empty string
305 $strictIPs = in_array( $dbw->getType(), [ 'oracle', 'postgres' ] ); // legacy
306 if ( $strictIPs && $this->mAttribs
['rc_ip'] == '' ) {
307 unset( $this->mAttribs
['rc_ip'] );
310 # Trim spaces on user supplied text
311 $this->mAttribs
['rc_comment'] = trim( $this->mAttribs
['rc_comment'] );
313 # Make sure summary is truncated (whole multibyte characters)
314 $this->mAttribs
['rc_comment'] = $wgContLang->truncate( $this->mAttribs
['rc_comment'], 255 );
316 # Fixup database timestamps
317 $this->mAttribs
['rc_timestamp'] = $dbw->timestamp( $this->mAttribs
['rc_timestamp'] );
318 $this->mAttribs
['rc_id'] = $dbw->nextSequenceValue( 'recentchanges_rc_id_seq' );
320 # # If we are using foreign keys, an entry of 0 for the page_id will fail, so use NULL
321 if ( $this->mAttribs
['rc_cur_id'] == 0 ) {
322 unset( $this->mAttribs
['rc_cur_id'] );
326 $dbw->insert( 'recentchanges', $this->mAttribs
, __METHOD__
);
329 $this->mAttribs
['rc_id'] = $dbw->insertId();
332 // Avoid PHP 7.1 warning from passing $this by reference
334 Hooks
::run( 'RecentChange_save', [ &$rc ] );
336 if ( count( $this->tags
) ) {
337 ChangeTags
::addTags( $this->tags
, $this->mAttribs
['rc_id'],
338 $this->mAttribs
['rc_this_oldid'], $this->mAttribs
['rc_logid'], null, $this );
341 # Notify external application via UDP
343 $this->notifyRCFeeds();
346 # E-mail notifications
347 if ( $wgUseEnotif ||
$wgShowUpdatedMarker ) {
348 $editor = $this->getPerformer();
349 $title = $this->getTitle();
351 // Never send an RC notification email about categorization changes
353 $this->mAttribs
['rc_type'] != RC_CATEGORIZE
&&
354 Hooks
::run( 'AbortEmailNotification', [ $editor, $title, $this ] )
356 // @FIXME: This would be better as an extension hook
357 // Send emails or email jobs once this row is safely committed
358 $dbw->onTransactionIdle(
359 function () use ( $editor, $title ) {
360 $enotif = new EmailNotification();
361 $enotif->notifyOnPageChange(
364 $this->mAttribs
['rc_timestamp'],
365 $this->mAttribs
['rc_comment'],
366 $this->mAttribs
['rc_minor'],
367 $this->mAttribs
['rc_last_oldid'],
368 $this->mExtra
['pageStatus']
376 // Update the cached list of active users
377 if ( $this->mAttribs
['rc_user'] > 0 ) {
378 JobQueueGroup
::singleton()->lazyPush( RecentChangesUpdateJob
::newCacheUpdateJob() );
383 * Notify all the feeds about the change.
384 * @param array $feeds Optional feeds to send to, defaults to $wgRCFeeds
386 public function notifyRCFeeds( array $feeds = null ) {
388 if ( $feeds === null ) {
392 $performer = $this->getPerformer();
394 foreach ( $feeds as $params ) {
396 'omit_bots' => false,
397 'omit_anon' => false,
398 'omit_user' => false,
399 'omit_minor' => false,
400 'omit_patrolled' => false,
404 ( $params['omit_bots'] && $this->mAttribs
['rc_bot'] ) ||
405 ( $params['omit_anon'] && $performer->isAnon() ) ||
406 ( $params['omit_user'] && !$performer->isAnon() ) ||
407 ( $params['omit_minor'] && $this->mAttribs
['rc_minor'] ) ||
408 ( $params['omit_patrolled'] && $this->mAttribs
['rc_patrolled'] ) ||
409 $this->mAttribs
['rc_type'] == RC_EXTERNAL
414 if ( isset( $this->mExtra
['actionCommentIRC'] ) ) {
415 $actionComment = $this->mExtra
['actionCommentIRC'];
417 $actionComment = null;
420 $feed = RCFeed
::factory( $params );
421 $feed->notify( $this, $actionComment );
427 * @deprecated since 1.29 Use RCFeed::factory() instead
428 * @param string $uri URI to get the engine object for
429 * @return RCFeedEngine The engine object
430 * @throws MWException
432 public static function getEngine( $uri, $params = [] ) {
433 // TODO: Merge into RCFeed::factory().
435 $scheme = parse_url( $uri, PHP_URL_SCHEME
);
437 throw new MWException( "Invalid RCFeed uri: '$uri'" );
439 if ( !isset( $wgRCEngines[$scheme] ) ) {
440 throw new MWException( "Unknown RCFeedEngine scheme: '$scheme'" );
442 if ( defined( 'MW_PHPUNIT_TEST' ) && is_object( $wgRCEngines[$scheme] ) ) {
443 return $wgRCEngines[$scheme];
445 return new $wgRCEngines[$scheme]( $params );
449 * Mark a given change as patrolled
451 * @param RecentChange|int $change RecentChange or corresponding rc_id
452 * @param bool $auto For automatic patrol
453 * @param string|string[] $tags Change tags to add to the patrol log entry
454 * ($user should be able to add the specified tags before this is called)
455 * @return array See doMarkPatrolled(), or null if $change is not an existing rc_id
457 public static function markPatrolled( $change, $auto = false, $tags = null ) {
460 $change = $change instanceof RecentChange
462 : RecentChange
::newFromId( $change );
464 if ( !$change instanceof RecentChange
) {
468 return $change->doMarkPatrolled( $wgUser, $auto, $tags );
472 * Mark this RecentChange as patrolled
474 * NOTE: Can also return 'rcpatroldisabled', 'hookaborted' and
475 * 'markedaspatrollederror-noautopatrol' as errors
476 * @param User $user User object doing the action
477 * @param bool $auto For automatic patrol
478 * @param string|string[] $tags Change tags to add to the patrol log entry
479 * ($user should be able to add the specified tags before this is called)
480 * @return array Array of permissions errors, see Title::getUserPermissionsErrors()
482 public function doMarkPatrolled( User
$user, $auto = false, $tags = null ) {
483 global $wgUseRCPatrol, $wgUseNPPatrol, $wgUseFilePatrol;
486 // If recentchanges patrol is disabled, only new pages or new file versions
487 // can be patrolled, provided the appropriate config variable is set
488 if ( !$wgUseRCPatrol && ( !$wgUseNPPatrol ||
$this->getAttribute( 'rc_type' ) != RC_NEW
) &&
489 ( !$wgUseFilePatrol ||
!( $this->getAttribute( 'rc_type' ) == RC_LOG
&&
490 $this->getAttribute( 'rc_log_type' ) == 'upload' ) ) ) {
491 $errors[] = [ 'rcpatroldisabled' ];
493 // Automatic patrol needs "autopatrol", ordinary patrol needs "patrol"
494 $right = $auto ?
'autopatrol' : 'patrol';
495 $errors = array_merge( $errors, $this->getTitle()->getUserPermissionsErrors( $right, $user ) );
496 if ( !Hooks
::run( 'MarkPatrolled',
497 [ $this->getAttribute( 'rc_id' ), &$user, false, $auto ] )
499 $errors[] = [ 'hookaborted' ];
501 // Users without the 'autopatrol' right can't patrol their
503 if ( $user->getName() === $this->getAttribute( 'rc_user_text' )
504 && !$user->isAllowed( 'autopatrol' )
506 $errors[] = [ 'markedaspatrollederror-noautopatrol' ];
511 // If the change was patrolled already, do nothing
512 if ( $this->getAttribute( 'rc_patrolled' ) ) {
515 // Actually set the 'patrolled' flag in RC
516 $this->reallyMarkPatrolled();
517 // Log this patrol event
518 PatrolLog
::record( $this, $auto, $user, $tags );
521 'MarkPatrolledComplete',
522 [ $this->getAttribute( 'rc_id' ), &$user, false, $auto ]
529 * Mark this RecentChange patrolled, without error checking
530 * @return int Number of affected rows
532 public function reallyMarkPatrolled() {
533 $dbw = wfGetDB( DB_MASTER
);
540 'rc_id' => $this->getAttribute( 'rc_id' )
544 // Invalidate the page cache after the page has been patrolled
545 // to make sure that the Patrol link isn't visible any longer!
546 $this->getTitle()->invalidateCache();
548 return $dbw->affectedRows();
552 * Makes an entry in the database corresponding to an edit
554 * @param string $timestamp
555 * @param Title $title
558 * @param string $comment
560 * @param string $lastTimestamp
563 * @param int $oldSize
564 * @param int $newSize
568 * @return RecentChange
570 public static function notifyEdit(
571 $timestamp, &$title, $minor, &$user, $comment, $oldId, $lastTimestamp,
572 $bot, $ip = '', $oldSize = 0, $newSize = 0, $newId = 0, $patrol = 0,
575 $rc = new RecentChange
;
576 $rc->mTitle
= $title;
577 $rc->mPerformer
= $user;
579 'rc_timestamp' => $timestamp,
580 'rc_namespace' => $title->getNamespace(),
581 'rc_title' => $title->getDBkey(),
582 'rc_type' => RC_EDIT
,
583 'rc_source' => self
::SRC_EDIT
,
584 'rc_minor' => $minor ?
1 : 0,
585 'rc_cur_id' => $title->getArticleID(),
586 'rc_user' => $user->getId(),
587 'rc_user_text' => $user->getName(),
588 'rc_comment' => $comment,
589 'rc_this_oldid' => $newId,
590 'rc_last_oldid' => $oldId,
591 'rc_bot' => $bot ?
1 : 0,
592 'rc_ip' => self
::checkIPAddress( $ip ),
593 'rc_patrolled' => intval( $patrol ),
594 'rc_new' => 0, # obsolete
595 'rc_old_len' => $oldSize,
596 'rc_new_len' => $newSize,
599 'rc_log_type' => null,
600 'rc_log_action' => '',
605 'prefixedDBkey' => $title->getPrefixedDBkey(),
606 'lastTimestamp' => $lastTimestamp,
607 'oldSize' => $oldSize,
608 'newSize' => $newSize,
609 'pageStatus' => 'changed'
612 DeferredUpdates
::addCallableUpdate(
613 function () use ( $rc, $tags ) {
614 $rc->addTags( $tags );
616 if ( $rc->mAttribs
['rc_patrolled'] ) {
617 PatrolLog
::record( $rc, true, $rc->getPerformer() );
620 DeferredUpdates
::POSTSEND
,
628 * Makes an entry in the database corresponding to page creation
629 * Note: the title object must be loaded with the new id using resetArticleID()
631 * @param string $timestamp
632 * @param Title $title
635 * @param string $comment
642 * @return RecentChange
644 public static function notifyNew(
645 $timestamp, &$title, $minor, &$user, $comment, $bot,
646 $ip = '', $size = 0, $newId = 0, $patrol = 0, $tags = []
648 $rc = new RecentChange
;
649 $rc->mTitle
= $title;
650 $rc->mPerformer
= $user;
652 'rc_timestamp' => $timestamp,
653 'rc_namespace' => $title->getNamespace(),
654 'rc_title' => $title->getDBkey(),
656 'rc_source' => self
::SRC_NEW
,
657 'rc_minor' => $minor ?
1 : 0,
658 'rc_cur_id' => $title->getArticleID(),
659 'rc_user' => $user->getId(),
660 'rc_user_text' => $user->getName(),
661 'rc_comment' => $comment,
662 'rc_this_oldid' => $newId,
663 'rc_last_oldid' => 0,
664 'rc_bot' => $bot ?
1 : 0,
665 'rc_ip' => self
::checkIPAddress( $ip ),
666 'rc_patrolled' => intval( $patrol ),
667 'rc_new' => 1, # obsolete
669 'rc_new_len' => $size,
672 'rc_log_type' => null,
673 'rc_log_action' => '',
678 'prefixedDBkey' => $title->getPrefixedDBkey(),
679 'lastTimestamp' => 0,
682 'pageStatus' => 'created'
685 DeferredUpdates
::addCallableUpdate(
686 function () use ( $rc, $tags ) {
687 $rc->addTags( $tags );
689 if ( $rc->mAttribs
['rc_patrolled'] ) {
690 PatrolLog
::record( $rc, true, $rc->getPerformer() );
693 DeferredUpdates
::POSTSEND
,
701 * @param string $timestamp
702 * @param Title $title
704 * @param string $actionComment
706 * @param string $type
707 * @param string $action
708 * @param Title $target
709 * @param string $logComment
710 * @param string $params
712 * @param string $actionCommentIRC
715 public static function notifyLog( $timestamp, &$title, &$user, $actionComment, $ip, $type,
716 $action, $target, $logComment, $params, $newId = 0, $actionCommentIRC = ''
718 global $wgLogRestrictions;
720 # Don't add private logs to RC!
721 if ( isset( $wgLogRestrictions[$type] ) && $wgLogRestrictions[$type] != '*' ) {
724 $rc = self
::newLogEntry( $timestamp, $title, $user, $actionComment, $ip, $type, $action,
725 $target, $logComment, $params, $newId, $actionCommentIRC );
732 * @param string $timestamp
733 * @param Title $title
735 * @param string $actionComment
737 * @param string $type
738 * @param string $action
739 * @param Title $target
740 * @param string $logComment
741 * @param string $params
743 * @param string $actionCommentIRC
744 * @param int $revId Id of associated revision, if any
745 * @param bool $isPatrollable Whether this log entry is patrollable
746 * @return RecentChange
748 public static function newLogEntry( $timestamp, &$title, &$user, $actionComment, $ip,
749 $type, $action, $target, $logComment, $params, $newId = 0, $actionCommentIRC = '',
750 $revId = 0, $isPatrollable = false ) {
753 # # Get pageStatus for email notification
754 switch ( $type . '-' . $action ) {
755 case 'delete-delete':
756 case 'delete-delete_redir':
757 $pageStatus = 'deleted';
760 case 'move-move_redir':
761 $pageStatus = 'moved';
763 case 'delete-restore':
764 $pageStatus = 'restored';
766 case 'upload-upload':
767 $pageStatus = 'created';
769 case 'upload-overwrite':
771 $pageStatus = 'changed';
775 // Allow unpatrolled status for patrollable log entries
776 $markPatrolled = $isPatrollable ?
$user->isAllowed( 'autopatrol' ) : true;
778 $rc = new RecentChange
;
779 $rc->mTitle
= $target;
780 $rc->mPerformer
= $user;
782 'rc_timestamp' => $timestamp,
783 'rc_namespace' => $target->getNamespace(),
784 'rc_title' => $target->getDBkey(),
786 'rc_source' => self
::SRC_LOG
,
788 'rc_cur_id' => $target->getArticleID(),
789 'rc_user' => $user->getId(),
790 'rc_user_text' => $user->getName(),
791 'rc_comment' => $logComment,
792 'rc_this_oldid' => $revId,
793 'rc_last_oldid' => 0,
794 'rc_bot' => $user->isAllowed( 'bot' ) ?
(int)$wgRequest->getBool( 'bot', true ) : 0,
795 'rc_ip' => self
::checkIPAddress( $ip ),
796 'rc_patrolled' => $markPatrolled ?
1 : 0,
797 'rc_new' => 0, # obsolete
798 'rc_old_len' => null,
799 'rc_new_len' => null,
801 'rc_logid' => $newId,
802 'rc_log_type' => $type,
803 'rc_log_action' => $action,
804 'rc_params' => $params
808 'prefixedDBkey' => $title->getPrefixedDBkey(),
809 'lastTimestamp' => 0,
810 'actionComment' => $actionComment, // the comment appended to the action, passed from LogPage
811 'pageStatus' => $pageStatus,
812 'actionCommentIRC' => $actionCommentIRC
819 * Constructs a RecentChange object for the given categorization
820 * This does not call save() on the object and thus does not write to the db
824 * @param string $timestamp Timestamp of the recent change to occur
825 * @param Title $categoryTitle Title of the category a page is being added to or removed from
826 * @param User $user User object of the user that made the change
827 * @param string $comment Change summary
828 * @param Title $pageTitle Title of the page that is being added or removed
829 * @param int $oldRevId Parent revision ID of this change
830 * @param int $newRevId Revision ID of this change
831 * @param string $lastTimestamp Parent revision timestamp of this change
832 * @param bool $bot true, if the change was made by a bot
833 * @param string $ip IP address of the user, if the change was made anonymously
834 * @param int $deleted Indicates whether the change has been deleted
836 * @return RecentChange
838 public static function newForCategorization(
840 Title
$categoryTitle,
851 $rc = new RecentChange
;
852 $rc->mTitle
= $categoryTitle;
853 $rc->mPerformer
= $user;
855 'rc_timestamp' => $timestamp,
856 'rc_namespace' => $categoryTitle->getNamespace(),
857 'rc_title' => $categoryTitle->getDBkey(),
858 'rc_type' => RC_CATEGORIZE
,
859 'rc_source' => self
::SRC_CATEGORIZE
,
861 'rc_cur_id' => $pageTitle->getArticleID(),
862 'rc_user' => $user ?
$user->getId() : 0,
863 'rc_user_text' => $user ?
$user->getName() : '',
864 'rc_comment' => $comment,
865 'rc_this_oldid' => $newRevId,
866 'rc_last_oldid' => $oldRevId,
867 'rc_bot' => $bot ?
1 : 0,
868 'rc_ip' => self
::checkIPAddress( $ip ),
869 'rc_patrolled' => 1, // Always patrolled, just like log entries
870 'rc_new' => 0, # obsolete
871 'rc_old_len' => null,
872 'rc_new_len' => null,
873 'rc_deleted' => $deleted,
875 'rc_log_type' => null,
876 'rc_log_action' => '',
877 'rc_params' => serialize( [
878 'hidden-cat' => WikiCategoryPage
::factory( $categoryTitle )->isHidden()
883 'prefixedDBkey' => $categoryTitle->getPrefixedDBkey(),
884 'lastTimestamp' => $lastTimestamp,
887 'pageStatus' => 'changed'
894 * Get a parameter value
898 * @param string $name parameter name
901 public function getParam( $name ) {
902 $params = $this->parseParams();
903 return isset( $params[$name] ) ?
$params[$name] : null;
907 * Initialises the members of this object from a mysql row object
911 public function loadFromRow( $row ) {
912 $this->mAttribs
= get_object_vars( $row );
913 $this->mAttribs
['rc_timestamp'] = wfTimestamp( TS_MW
, $this->mAttribs
['rc_timestamp'] );
914 $this->mAttribs
['rc_deleted'] = $row->rc_deleted
; // MUST be set
918 * Get an attribute value
920 * @param string $name Attribute name
923 public function getAttribute( $name ) {
924 return isset( $this->mAttribs
[$name] ) ?
$this->mAttribs
[$name] : null;
930 public function getAttributes() {
931 return $this->mAttribs
;
935 * Gets the end part of the diff URL associated with this object
936 * Blank if no diff link should be displayed
937 * @param bool $forceCur
940 public function diffLinkTrail( $forceCur ) {
941 if ( $this->mAttribs
['rc_type'] == RC_EDIT
) {
942 $trail = "curid=" . (int)( $this->mAttribs
['rc_cur_id'] ) .
943 "&oldid=" . (int)( $this->mAttribs
['rc_last_oldid'] );
947 $trail .= '&diff=' . (int)( $this->mAttribs
['rc_this_oldid'] );
957 * Returns the change size (HTML).
958 * The lengths can be given optionally.
963 public function getCharacterDifference( $old = 0, $new = 0 ) {
965 $old = $this->mAttribs
['rc_old_len'];
968 $new = $this->mAttribs
['rc_new_len'];
970 if ( $old === null ||
$new === null ) {
974 return ChangesList
::showCharacterDifference( $old, $new );
977 private static function checkIPAddress( $ip ) {
980 if ( !IP
::isIPAddress( $ip ) ) {
981 throw new MWException( "Attempt to write \"" . $ip .
982 "\" as an IP address into recent changes" );
985 $ip = $wgRequest->getIP();
995 * Check whether the given timestamp is new enough to have a RC row with a given tolerance
996 * as the recentchanges table might not be cleared out regularly (so older entries might exist)
997 * or rows which will be deleted soon shouldn't be included.
999 * @param mixed $timestamp MWTimestamp compatible timestamp
1000 * @param int $tolerance Tolerance in seconds
1003 public static function isInRCLifespan( $timestamp, $tolerance = 0 ) {
1006 return wfTimestamp( TS_UNIX
, $timestamp ) > time() - $tolerance - $wgRCMaxAge;
1010 * Parses and returns the rc_params attribute
1014 * @return mixed|bool false on failed unserialization
1016 public function parseParams() {
1017 $rcParams = $this->getAttribute( 'rc_params' );
1019 MediaWiki\
suppressWarnings();
1020 $unserializedParams = unserialize( $rcParams );
1021 MediaWiki\restoreWarnings
();
1023 return $unserializedParams;
1027 * Tags to append to the recent change,
1028 * and associated revision/log
1032 * @param string|array $tags
1034 public function addTags( $tags ) {
1035 if ( is_string( $tags ) ) {
1036 $this->tags
[] = $tags;
1038 $this->tags
= array_merge( $tags, $this->tags
);