From 81fb02e93915a41a74b6582c69a9f579cb5a026f Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Fri, 13 Jul 2012 21:50:25 +0200 Subject: [PATCH] Store the Title and User objects passed RecentChange::notify*() * Set RecentChange::$mTitle when calling RecentChange::notify*(); avoid having to create new Title objects when making the IRC text and email notification * Added RecentChange::$mPerformer to store the User doing the change and avoid having to mess with $wgUser to get back the object when doing email notification Change-Id: I505c3818b9baea0e7b5ddf8f5645a79743dd305a --- includes/RecentChange.php | 42 ++++++++++++++++++++++++++++----------- 1 file changed, 30 insertions(+), 12 deletions(-) diff --git a/includes/RecentChange.php b/includes/RecentChange.php index fb8e0224e2..62c539bc1e 100644 --- a/includes/RecentChange.php +++ b/includes/RecentChange.php @@ -70,6 +70,11 @@ class RecentChange { */ var $mTitle = false; + /** + * @var User + */ + private $mPerformer = false; + /** * @var Title */ @@ -168,12 +173,28 @@ class RecentChange { return $this->mMovedToTitle; } + /** + * 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(); # @todo FIXME: This would be better as an extension hook $enotif = new EmailNotification(); @@ -391,6 +403,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, @@ -449,6 +463,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, @@ -536,6 +552,8 @@ class RecentChange { global $wgRequest; $rc = new RecentChange; + $rc->mTitle = $target; + $rc->mPerformer = $user; $rc->mAttribs = array( 'rc_timestamp' => $timestamp, 'rc_cur_time' => $timestamp, -- 2.20.1