diff options
author | Siebrand <siebrand@wikimedia.org> | 2012-07-29 20:43:36 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@wikimedia.org> | 2012-07-29 20:43:36 +0000 |
commit | f021d3a8eb43aac1ebb391b28c1bf6c4e5f40f6f (patch) | |
tree | 2c792434e599d9e708fc0d68c7970039658673e5 /includes/RecentChange.php | |
parent | 2ba1b409fef2f6574bae12014b566a9c2c10ff1b (diff) | |
parent | 81fb02e93915a41a74b6582c69a9f579cb5a026f (diff) | |
download | mediawikicore-f021d3a8eb43aac1ebb391b28c1bf6c4e5f40f6f.tar.gz mediawikicore-f021d3a8eb43aac1ebb391b28c1bf6c4e5f40f6f.zip |
Merge "Store the Title and User objects passed RecentChange::notify*()"
Diffstat (limited to 'includes/RecentChange.php')
-rw-r--r-- | includes/RecentChange.php | 42 |
1 files changed, 30 insertions, 12 deletions
diff --git a/includes/RecentChange.php b/includes/RecentChange.php index 20e7909a2a23..4a7bafd9006b 100644 --- a/includes/RecentChange.php +++ b/includes/RecentChange.php @@ -71,6 +71,11 @@ class RecentChange { var $mTitle = false; /** + * @var User + */ + private $mPerformer = false; + + /** * @var Title */ var $mMovedToTitle = false; @@ -169,11 +174,27 @@ class RecentChange { } /** + * Get the User object of the person who performed this change. + * + * @return User + */ + public function getPerformer() { + if ( $this->mPerformer === false ) { + if ( $this->mAttribs['rc_user'] ) { + $this->mPerformer = User::newFromID( $this->mAttribs['rc_user'] ); + } else { + $this->mPerformer = User::newFromName( $this->mAttribs['rc_user_text'], false ); + } + } + return $this->mPerformer; + } + + /** * Writes the data in this object to the database * @param $noudp bool */ public function save( $noudp = false ) { - global $wgLocalInterwiki, $wgPutIPinRC, $wgContLang; + global $wgLocalInterwiki, $wgPutIPinRC, $wgUseEnotif, $wgShowUpdatedMarker, $wgContLang; $dbw = wfGetDB( DB_MASTER ); if( !is_array($this->mExtra) ) { @@ -218,18 +239,9 @@ class RecentChange { } # E-mail notifications - global $wgUseEnotif, $wgShowUpdatedMarker, $wgUser; if( $wgUseEnotif || $wgShowUpdatedMarker ) { - // Users - if( $this->mAttribs['rc_user'] ) { - $editor = ($wgUser->getId() == $this->mAttribs['rc_user']) ? - $wgUser : User::newFromID( $this->mAttribs['rc_user'] ); - // Anons - } else { - $editor = ($wgUser->getName() == $this->mAttribs['rc_user_text']) ? - $wgUser : User::newFromName( $this->mAttribs['rc_user_text'], false ); - } - $title = Title::makeTitle( $this->mAttribs['rc_namespace'], $this->mAttribs['rc_title'] ); + $editor = $this->getPerformer(); + $title = $this->getTitle(); if ( wfRunHooks( 'AbortEmailNotification', array($editor, $title) ) ) { # @todo FIXME: This would be better as an extension hook @@ -393,6 +405,8 @@ class RecentChange { public static function notifyEdit( $timestamp, &$title, $minor, &$user, $comment, $oldId, $lastTimestamp, $bot, $ip='', $oldSize=0, $newSize=0, $newId=0, $patrol=0 ) { $rc = new RecentChange; + $rc->mTitle = $title; + $rc->mPerformer = $user; $rc->mAttribs = array( 'rc_timestamp' => $timestamp, 'rc_cur_time' => $timestamp, @@ -451,6 +465,8 @@ class RecentChange { public static function notifyNew( $timestamp, &$title, $minor, &$user, $comment, $bot, $ip='', $size=0, $newId=0, $patrol=0 ) { $rc = new RecentChange; + $rc->mTitle = $title; + $rc->mPerformer = $user; $rc->mAttribs = array( 'rc_timestamp' => $timestamp, 'rc_cur_time' => $timestamp, @@ -538,6 +554,8 @@ class RecentChange { global $wgRequest; $rc = new RecentChange; + $rc->mTitle = $target; + $rc->mPerformer = $user; $rc->mAttribs = array( 'rc_timestamp' => $timestamp, 'rc_cur_time' => $timestamp, |