From: Eric Evans Date: Wed, 16 Dec 2015 22:15:20 +0000 (-0600) Subject: Pass created revision to TitleMoveComplete hook X-Git-Tag: 1.31.0-rc.0~8650^2 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/exercices/?a=commitdiff_plain;h=9cc2f62bf5ae5654c09104b66bb57bfac0093321;p=lhc%2Fweb%2Fwiklou.git Pass created revision to TitleMoveComplete hook The EventBus extension needs to forward the created (null) revision ID as part of the page move event. Looking this value up when the hook fires is problematic, because without a connection to the master DB the query might very well return nothing (if it races in before the entry is replicated to the slave). This changeset passes the newly created Revision on to the hook so that it doesn't need to be queried separately. Bug: T116786 Change-Id: I1b48e2904fc8d99f2cde604f274f79a2b47d7fc2 --- diff --git a/docs/hooks.txt b/docs/hooks.txt index 0cb4756b94..6afeab8a4f 100644 --- a/docs/hooks.txt +++ b/docs/hooks.txt @@ -3040,6 +3040,7 @@ $user: user who does the move $pageid: database ID of the page that's been moved $redirid: database ID of the created redirect $reason: reason for the move +$revision: the revision created by the move 'TitleMoveCompleting': After moving an article (title), pre-commit. $old: old title diff --git a/includes/MovePage.php b/includes/MovePage.php index b91895508a..936b94a1eb 100644 --- a/includes/MovePage.php +++ b/includes/MovePage.php @@ -252,7 +252,7 @@ class MovePage { $protected = $this->oldTitle->isProtected(); // Do the actual move - $this->moveToInternal( $user, $this->newTitle, $reason, $createRedirect ); + $nullRevision = $this->moveToInternal( $user, $this->newTitle, $reason, $createRedirect ); // Refresh the sortkey for this row. Be careful to avoid resetting // cl_timestamp, which may disturb time-based lists on some sites. @@ -376,7 +376,15 @@ class MovePage { $dbw->endAtomic( __METHOD__ ); - $params = array( &$this->oldTitle, &$this->newTitle, &$user, $pageid, $redirid, $reason ); + $params = array( + &$this->oldTitle, + &$this->newTitle, + &$user, + $pageid, + $redirid, + $reason, + $nullRevision + ); $dbw->onTransactionIdle( function () use ( $params, $dbw ) { // Keep each single hook handler atomic $dbw->setFlag( DBO_TRX ); // flag is automatically reset by DB layer @@ -396,6 +404,7 @@ class MovePage { * @param string $reason The reason for the move * @param bool $createRedirect Whether to leave a redirect at the old title. Does not check * if the user has the suppressredirect right + * @return Revision the revision created by the move * @throws MWException */ private function moveToInternal( User $user, &$nt, $reason = '', $createRedirect = true ) { @@ -552,5 +561,7 @@ class MovePage { # Log the move $logid = $logEntry->insert(); $logEntry->publish( $logid ); + + return $nullRevision; } }