2017-08-27 15:29:18 +00:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* Service for looking up page revisions.
|
|
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
|
*
|
|
|
|
|
* Attribution notice: when this file was created, much of its content was taken
|
|
|
|
|
* from the Revision.php file as present in release 1.30. Refer to the history
|
|
|
|
|
* of that file for original authorship.
|
|
|
|
|
*
|
|
|
|
|
* @file
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace MediaWiki\Storage;
|
|
|
|
|
|
2017-09-12 17:12:29 +00:00
|
|
|
use ActorMigration;
|
2017-08-27 15:29:18 +00:00
|
|
|
use CommentStore;
|
|
|
|
|
use CommentStoreComment;
|
|
|
|
|
use Content;
|
|
|
|
|
use ContentHandler;
|
|
|
|
|
use DBAccessObjectUtils;
|
|
|
|
|
use Hooks;
|
2017-12-28 15:30:05 +00:00
|
|
|
use IDBAccessObject;
|
2017-08-27 15:29:18 +00:00
|
|
|
use InvalidArgumentException;
|
|
|
|
|
use IP;
|
|
|
|
|
use LogicException;
|
|
|
|
|
use MediaWiki\Linker\LinkTarget;
|
|
|
|
|
use MediaWiki\User\UserIdentity;
|
|
|
|
|
use MediaWiki\User\UserIdentityValue;
|
|
|
|
|
use Message;
|
|
|
|
|
use MWException;
|
|
|
|
|
use MWUnknownContentModelException;
|
2018-01-10 16:05:46 +00:00
|
|
|
use Psr\Log\LoggerAwareInterface;
|
|
|
|
|
use Psr\Log\LoggerInterface;
|
|
|
|
|
use Psr\Log\NullLogger;
|
2017-08-27 15:29:18 +00:00
|
|
|
use RecentChange;
|
2018-06-13 18:18:47 +00:00
|
|
|
use Revision;
|
2017-08-27 15:29:18 +00:00
|
|
|
use stdClass;
|
|
|
|
|
use Title;
|
|
|
|
|
use User;
|
|
|
|
|
use WANObjectCache;
|
|
|
|
|
use Wikimedia\Assert\Assert;
|
|
|
|
|
use Wikimedia\Rdbms\Database;
|
|
|
|
|
use Wikimedia\Rdbms\DBConnRef;
|
|
|
|
|
use Wikimedia\Rdbms\IDatabase;
|
2018-06-27 12:16:35 +00:00
|
|
|
use Wikimedia\Rdbms\ILoadBalancer;
|
2017-08-27 15:29:18 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Service for looking up page revisions.
|
|
|
|
|
*
|
|
|
|
|
* @since 1.31
|
|
|
|
|
*
|
|
|
|
|
* @note This was written to act as a drop-in replacement for the corresponding
|
|
|
|
|
* static methods in Revision.
|
|
|
|
|
*/
|
2018-01-10 16:05:46 +00:00
|
|
|
class RevisionStore
|
|
|
|
|
implements IDBAccessObject, RevisionFactory, RevisionLookup, LoggerAwareInterface {
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2018-01-29 15:54:02 +00:00
|
|
|
const ROW_CACHE_KEY = 'revision-row-1.29';
|
|
|
|
|
|
2017-08-27 15:29:18 +00:00
|
|
|
/**
|
|
|
|
|
* @var SqlBlobStore
|
|
|
|
|
*/
|
|
|
|
|
private $blobStore;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @var bool|string
|
|
|
|
|
*/
|
|
|
|
|
private $wikiId;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @var boolean
|
2018-06-29 09:42:25 +00:00
|
|
|
* @see $wgContentHandlerUseDB
|
2017-08-27 15:29:18 +00:00
|
|
|
*/
|
|
|
|
|
private $contentHandlerUseDB = true;
|
|
|
|
|
|
|
|
|
|
/**
|
2018-06-27 12:16:35 +00:00
|
|
|
* @var ILoadBalancer
|
2017-08-27 15:29:18 +00:00
|
|
|
*/
|
|
|
|
|
private $loadBalancer;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @var WANObjectCache
|
|
|
|
|
*/
|
|
|
|
|
private $cache;
|
|
|
|
|
|
2018-01-29 14:25:49 +00:00
|
|
|
/**
|
|
|
|
|
* @var CommentStore
|
|
|
|
|
*/
|
|
|
|
|
private $commentStore;
|
|
|
|
|
|
2017-09-12 17:12:29 +00:00
|
|
|
/**
|
|
|
|
|
* @var ActorMigration
|
|
|
|
|
*/
|
|
|
|
|
private $actorMigration;
|
|
|
|
|
|
2018-01-10 16:05:46 +00:00
|
|
|
/**
|
|
|
|
|
* @var LoggerInterface
|
|
|
|
|
*/
|
|
|
|
|
private $logger;
|
|
|
|
|
|
2018-01-29 15:54:02 +00:00
|
|
|
/**
|
|
|
|
|
* @var NameTableStore
|
|
|
|
|
*/
|
|
|
|
|
private $contentModelStore;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @var NameTableStore
|
|
|
|
|
*/
|
|
|
|
|
private $slotRoleStore;
|
|
|
|
|
|
2018-06-26 17:26:33 +00:00
|
|
|
/** @var int An appropriate combination of SCHEMA_COMPAT_XXX flags. */
|
2018-01-29 15:54:02 +00:00
|
|
|
private $mcrMigrationStage;
|
|
|
|
|
|
2017-08-27 15:29:18 +00:00
|
|
|
/**
|
|
|
|
|
* @todo $blobStore should be allowed to be any BlobStore!
|
|
|
|
|
*
|
2018-06-27 12:16:35 +00:00
|
|
|
* @param ILoadBalancer $loadBalancer
|
2017-08-27 15:29:18 +00:00
|
|
|
* @param SqlBlobStore $blobStore
|
2018-08-02 15:49:27 +00:00
|
|
|
* @param WANObjectCache $cache A cache for caching revision rows. This can be the local
|
|
|
|
|
* wiki's default instance even if $wikiId refers to a different wiki, since
|
|
|
|
|
* makeGlobalKey() is used to constructed a key that allows cached revision rows from
|
|
|
|
|
* the same database to be re-used between wikis. For example, enwiki and frwiki will
|
|
|
|
|
* use the same cache keys for revision rows from the wikidatawiki database, regardless
|
|
|
|
|
* of the cache's default key space.
|
2018-01-29 14:25:49 +00:00
|
|
|
* @param CommentStore $commentStore
|
2018-01-29 15:54:02 +00:00
|
|
|
* @param NameTableStore $contentModelStore
|
|
|
|
|
* @param NameTableStore $slotRoleStore
|
2018-06-26 17:26:33 +00:00
|
|
|
* @param int $mcrMigrationStage An appropriate combination of SCHEMA_COMPAT_XXX flags
|
2017-09-12 17:12:29 +00:00
|
|
|
* @param ActorMigration $actorMigration
|
2017-08-27 15:29:18 +00:00
|
|
|
* @param bool|string $wikiId
|
2018-06-26 17:26:33 +00:00
|
|
|
*
|
|
|
|
|
* @throws MWException if $mcrMigrationStage or $wikiId is invalid.
|
2017-08-27 15:29:18 +00:00
|
|
|
*/
|
|
|
|
|
public function __construct(
|
2018-06-27 12:16:35 +00:00
|
|
|
ILoadBalancer $loadBalancer,
|
2017-08-27 15:29:18 +00:00
|
|
|
SqlBlobStore $blobStore,
|
|
|
|
|
WANObjectCache $cache,
|
2018-01-29 14:25:49 +00:00
|
|
|
CommentStore $commentStore,
|
2018-01-29 15:54:02 +00:00
|
|
|
NameTableStore $contentModelStore,
|
|
|
|
|
NameTableStore $slotRoleStore,
|
2018-06-26 17:26:33 +00:00
|
|
|
$mcrMigrationStage,
|
2017-09-12 17:12:29 +00:00
|
|
|
ActorMigration $actorMigration,
|
2017-08-27 15:29:18 +00:00
|
|
|
$wikiId = false
|
|
|
|
|
) {
|
|
|
|
|
Assert::parameterType( 'string|boolean', $wikiId, '$wikiId' );
|
2018-06-26 17:26:33 +00:00
|
|
|
Assert::parameterType( 'integer', $mcrMigrationStage, '$mcrMigrationStage' );
|
|
|
|
|
Assert::parameter(
|
|
|
|
|
( $mcrMigrationStage & SCHEMA_COMPAT_READ_BOTH ) !== SCHEMA_COMPAT_READ_BOTH,
|
|
|
|
|
'$mcrMigrationStage',
|
|
|
|
|
'Reading from the old and the new schema at the same time is not supported.'
|
|
|
|
|
);
|
|
|
|
|
Assert::parameter(
|
|
|
|
|
( $mcrMigrationStage & SCHEMA_COMPAT_READ_BOTH ) !== 0,
|
|
|
|
|
'$mcrMigrationStage',
|
|
|
|
|
'Reading needs to be enabled for the old or the new schema.'
|
|
|
|
|
);
|
|
|
|
|
Assert::parameter(
|
|
|
|
|
( $mcrMigrationStage & SCHEMA_COMPAT_WRITE_BOTH ) !== 0,
|
|
|
|
|
'$mcrMigrationStage',
|
|
|
|
|
'Writing needs to be enabled for the old or the new schema.'
|
|
|
|
|
);
|
|
|
|
|
Assert::parameter(
|
|
|
|
|
( $mcrMigrationStage & SCHEMA_COMPAT_READ_OLD ) === 0
|
|
|
|
|
|| ( $mcrMigrationStage & SCHEMA_COMPAT_WRITE_OLD ) !== 0,
|
|
|
|
|
'$mcrMigrationStage',
|
|
|
|
|
'Cannot read the old schema when not also writing it.'
|
|
|
|
|
);
|
|
|
|
|
Assert::parameter(
|
|
|
|
|
( $mcrMigrationStage & SCHEMA_COMPAT_READ_NEW ) === 0
|
|
|
|
|
|| ( $mcrMigrationStage & SCHEMA_COMPAT_WRITE_NEW ) !== 0,
|
|
|
|
|
'$mcrMigrationStage',
|
|
|
|
|
'Cannot read the new schema when not also writing it.'
|
|
|
|
|
);
|
2018-01-29 15:54:02 +00:00
|
|
|
|
2017-08-27 15:29:18 +00:00
|
|
|
$this->loadBalancer = $loadBalancer;
|
|
|
|
|
$this->blobStore = $blobStore;
|
|
|
|
|
$this->cache = $cache;
|
2018-01-29 14:25:49 +00:00
|
|
|
$this->commentStore = $commentStore;
|
2018-01-29 15:54:02 +00:00
|
|
|
$this->contentModelStore = $contentModelStore;
|
|
|
|
|
$this->slotRoleStore = $slotRoleStore;
|
2018-06-26 17:26:33 +00:00
|
|
|
$this->mcrMigrationStage = $mcrMigrationStage;
|
2017-09-12 17:12:29 +00:00
|
|
|
$this->actorMigration = $actorMigration;
|
2017-08-27 15:29:18 +00:00
|
|
|
$this->wikiId = $wikiId;
|
2018-01-10 16:05:46 +00:00
|
|
|
$this->logger = new NullLogger();
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-26 17:26:33 +00:00
|
|
|
/**
|
|
|
|
|
* @param int $flags A combination of SCHEMA_COMPAT_XXX flags.
|
|
|
|
|
* @return bool True if all the given flags were set in the $mcrMigrationStage
|
|
|
|
|
* parameter passed to the constructor.
|
|
|
|
|
*/
|
|
|
|
|
private function hasMcrSchemaFlags( $flags ) {
|
|
|
|
|
return ( $this->mcrMigrationStage & $flags ) === $flags;
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-06 12:31:04 +00:00
|
|
|
/**
|
|
|
|
|
* Throws a RevisionAccessException if this RevisionStore is configured for cross-wiki loading
|
|
|
|
|
* and still reading from the old DB schema.
|
|
|
|
|
*
|
|
|
|
|
* @throws RevisionAccessException
|
|
|
|
|
*/
|
|
|
|
|
private function assertCrossWikiContentLoadingIsSafe() {
|
|
|
|
|
if ( $this->wikiId !== false && $this->hasMcrSchemaFlags( SCHEMA_COMPAT_READ_OLD ) ) {
|
|
|
|
|
throw new RevisionAccessException(
|
|
|
|
|
"Cross-wiki content loading is not supported by the pre-MCR schema"
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-10 16:05:46 +00:00
|
|
|
public function setLogger( LoggerInterface $logger ) {
|
|
|
|
|
$this->logger = $logger;
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
2018-02-22 08:48:42 +00:00
|
|
|
/**
|
|
|
|
|
* @return bool Whether the store is read-only
|
|
|
|
|
*/
|
|
|
|
|
public function isReadOnly() {
|
|
|
|
|
return $this->blobStore->isReadOnly();
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-27 15:29:18 +00:00
|
|
|
/**
|
|
|
|
|
* @return bool
|
|
|
|
|
*/
|
|
|
|
|
public function getContentHandlerUseDB() {
|
|
|
|
|
return $this->contentHandlerUseDB;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2018-06-29 09:42:25 +00:00
|
|
|
* @see $wgContentHandlerUseDB
|
2017-08-27 15:29:18 +00:00
|
|
|
* @param bool $contentHandlerUseDB
|
2018-01-29 15:54:02 +00:00
|
|
|
* @throws MWException
|
2017-08-27 15:29:18 +00:00
|
|
|
*/
|
|
|
|
|
public function setContentHandlerUseDB( $contentHandlerUseDB ) {
|
2018-06-26 17:26:33 +00:00
|
|
|
if ( $this->hasMcrSchemaFlags( SCHEMA_COMPAT_WRITE_NEW )
|
|
|
|
|
|| $this->hasMcrSchemaFlags( SCHEMA_COMPAT_READ_NEW )
|
|
|
|
|
) {
|
|
|
|
|
if ( !$contentHandlerUseDB ) {
|
|
|
|
|
throw new MWException(
|
|
|
|
|
'Content model must be stored in the database for multi content revision migration.'
|
|
|
|
|
);
|
|
|
|
|
}
|
2018-01-29 15:54:02 +00:00
|
|
|
}
|
2017-08-27 15:29:18 +00:00
|
|
|
$this->contentHandlerUseDB = $contentHandlerUseDB;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2018-06-27 12:16:35 +00:00
|
|
|
* @return ILoadBalancer
|
2017-08-27 15:29:18 +00:00
|
|
|
*/
|
|
|
|
|
private function getDBLoadBalancer() {
|
|
|
|
|
return $this->loadBalancer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param int $mode DB_MASTER or DB_REPLICA
|
|
|
|
|
*
|
|
|
|
|
* @return IDatabase
|
|
|
|
|
*/
|
|
|
|
|
private function getDBConnection( $mode ) {
|
|
|
|
|
$lb = $this->getDBLoadBalancer();
|
|
|
|
|
return $lb->getConnection( $mode, [], $this->wikiId );
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-10 18:54:33 +00:00
|
|
|
/**
|
|
|
|
|
* @param int $queryFlags a bit field composed of READ_XXX flags
|
|
|
|
|
*
|
|
|
|
|
* @return DBConnRef
|
|
|
|
|
*/
|
|
|
|
|
private function getDBConnectionRefForQueryFlags( $queryFlags ) {
|
|
|
|
|
list( $mode, ) = DBAccessObjectUtils::getDBOptions( $queryFlags );
|
|
|
|
|
return $this->getDBConnectionRef( $mode );
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-27 15:29:18 +00:00
|
|
|
/**
|
|
|
|
|
* @param IDatabase $connection
|
|
|
|
|
*/
|
|
|
|
|
private function releaseDBConnection( IDatabase $connection ) {
|
|
|
|
|
$lb = $this->getDBLoadBalancer();
|
|
|
|
|
$lb->reuseConnection( $connection );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param int $mode DB_MASTER or DB_REPLICA
|
|
|
|
|
*
|
|
|
|
|
* @return DBConnRef
|
|
|
|
|
*/
|
|
|
|
|
private function getDBConnectionRef( $mode ) {
|
|
|
|
|
$lb = $this->getDBLoadBalancer();
|
|
|
|
|
return $lb->getConnectionRef( $mode, [], $this->wikiId );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Determines the page Title based on the available information.
|
|
|
|
|
*
|
|
|
|
|
* MCR migration note: this corresponds to Revision::getTitle
|
|
|
|
|
*
|
2018-01-11 15:43:18 +00:00
|
|
|
* @note this method should be private, external use should be avoided!
|
|
|
|
|
*
|
2017-08-27 15:29:18 +00:00
|
|
|
* @param int|null $pageId
|
|
|
|
|
* @param int|null $revId
|
|
|
|
|
* @param int $queryFlags
|
|
|
|
|
*
|
|
|
|
|
* @return Title
|
|
|
|
|
* @throws RevisionAccessException
|
|
|
|
|
*/
|
2018-01-10 16:05:46 +00:00
|
|
|
public function getTitle( $pageId, $revId, $queryFlags = self::READ_NORMAL ) {
|
2017-08-27 15:29:18 +00:00
|
|
|
if ( !$pageId && !$revId ) {
|
|
|
|
|
throw new InvalidArgumentException( '$pageId and $revId cannot both be 0 or null' );
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-10 16:05:46 +00:00
|
|
|
// This method recalls itself with READ_LATEST if READ_NORMAL doesn't get us a Title
|
|
|
|
|
// So ignore READ_LATEST_IMMUTABLE flags and handle the fallback logic in this method
|
|
|
|
|
if ( DBAccessObjectUtils::hasFlags( $queryFlags, self::READ_LATEST_IMMUTABLE ) ) {
|
|
|
|
|
$queryFlags = self::READ_NORMAL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$canUseTitleNewFromId = ( $pageId !== null && $pageId > 0 && $this->wikiId === false );
|
|
|
|
|
list( $dbMode, $dbOptions ) = DBAccessObjectUtils::getDBOptions( $queryFlags );
|
|
|
|
|
$titleFlags = ( $dbMode == DB_MASTER ? Title::GAID_FOR_UPDATE : 0 );
|
2017-08-27 15:29:18 +00:00
|
|
|
|
|
|
|
|
// Loading by ID is best, but Title::newFromID does not support that for foreign IDs.
|
2018-01-10 16:05:46 +00:00
|
|
|
if ( $canUseTitleNewFromId ) {
|
2017-08-27 15:29:18 +00:00
|
|
|
// TODO: better foreign title handling (introduce TitleFactory)
|
2018-01-10 16:17:40 +00:00
|
|
|
$title = Title::newFromID( $pageId, $titleFlags );
|
2018-01-10 16:05:46 +00:00
|
|
|
if ( $title ) {
|
|
|
|
|
return $title;
|
|
|
|
|
}
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// rev_id is defined as NOT NULL, but this revision may not yet have been inserted.
|
2018-01-10 16:05:46 +00:00
|
|
|
$canUseRevId = ( $revId !== null && $revId > 0 );
|
|
|
|
|
|
|
|
|
|
if ( $canUseRevId ) {
|
2018-01-20 00:44:30 +00:00
|
|
|
$dbr = $this->getDBConnectionRef( $dbMode );
|
2017-08-27 15:29:18 +00:00
|
|
|
// @todo: Title::getSelectFields(), or Title::getQueryInfo(), or something like that
|
|
|
|
|
$row = $dbr->selectRow(
|
|
|
|
|
[ 'revision', 'page' ],
|
|
|
|
|
[
|
|
|
|
|
'page_namespace',
|
|
|
|
|
'page_title',
|
|
|
|
|
'page_id',
|
|
|
|
|
'page_latest',
|
|
|
|
|
'page_is_redirect',
|
|
|
|
|
'page_len',
|
|
|
|
|
],
|
|
|
|
|
[ 'rev_id' => $revId ],
|
|
|
|
|
__METHOD__,
|
|
|
|
|
$dbOptions,
|
|
|
|
|
[ 'page' => [ 'JOIN', 'page_id=rev_page' ] ]
|
|
|
|
|
);
|
|
|
|
|
if ( $row ) {
|
|
|
|
|
// TODO: better foreign title handling (introduce TitleFactory)
|
2018-01-10 16:05:46 +00:00
|
|
|
return Title::newFromRow( $row );
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-10 16:05:46 +00:00
|
|
|
// If we still don't have a title, fallback to master if that wasn't already happening.
|
|
|
|
|
if ( $dbMode !== DB_MASTER ) {
|
|
|
|
|
$title = $this->getTitle( $pageId, $revId, self::READ_LATEST );
|
|
|
|
|
if ( $title ) {
|
|
|
|
|
$this->logger->info(
|
|
|
|
|
__METHOD__ . ' fell back to READ_LATEST and got a Title.',
|
2018-02-15 14:15:45 +00:00
|
|
|
[ 'trace' => wfBacktrace() ]
|
2018-01-10 16:05:46 +00:00
|
|
|
);
|
|
|
|
|
return $title;
|
|
|
|
|
}
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
2018-01-10 16:05:46 +00:00
|
|
|
throw new RevisionAccessException(
|
|
|
|
|
"Could not determine title for page ID $pageId and revision ID $revId"
|
|
|
|
|
);
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param mixed $value
|
|
|
|
|
* @param string $name
|
|
|
|
|
*
|
2018-04-27 19:53:19 +00:00
|
|
|
* @throws IncompleteRevisionException if $value is null
|
2017-08-27 15:29:18 +00:00
|
|
|
* @return mixed $value, if $value is not null
|
|
|
|
|
*/
|
|
|
|
|
private function failOnNull( $value, $name ) {
|
|
|
|
|
if ( $value === null ) {
|
|
|
|
|
throw new IncompleteRevisionException(
|
|
|
|
|
"$name must not be " . var_export( $value, true ) . "!"
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param mixed $value
|
|
|
|
|
* @param string $name
|
|
|
|
|
*
|
2018-04-27 19:53:19 +00:00
|
|
|
* @throws IncompleteRevisionException if $value is empty
|
2017-08-27 15:29:18 +00:00
|
|
|
* @return mixed $value, if $value is not null
|
|
|
|
|
*/
|
|
|
|
|
private function failOnEmpty( $value, $name ) {
|
|
|
|
|
if ( $value === null || $value === 0 || $value === '' ) {
|
|
|
|
|
throw new IncompleteRevisionException(
|
|
|
|
|
"$name must not be " . var_export( $value, true ) . "!"
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2018-01-29 14:34:05 +00:00
|
|
|
* Insert a new revision into the database, returning the new revision record
|
|
|
|
|
* on success and dies horribly on failure.
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
|
|
|
|
* MCR migration note: this replaces Revision::insertOn
|
|
|
|
|
*
|
|
|
|
|
* @param RevisionRecord $rev
|
|
|
|
|
* @param IDatabase $dbw (master connection)
|
|
|
|
|
*
|
|
|
|
|
* @throws InvalidArgumentException
|
|
|
|
|
* @return RevisionRecord the new revision record.
|
|
|
|
|
*/
|
|
|
|
|
public function insertRevisionOn( RevisionRecord $rev, IDatabase $dbw ) {
|
|
|
|
|
// TODO: pass in a DBTransactionContext instead of a database connection.
|
|
|
|
|
$this->checkDatabaseWikiId( $dbw );
|
|
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
$slotRoles = $rev->getSlotRoles();
|
|
|
|
|
|
|
|
|
|
// Make sure the main slot is always provided throughout migration
|
|
|
|
|
if ( !in_array( 'main', $slotRoles ) ) {
|
|
|
|
|
throw new InvalidArgumentException(
|
|
|
|
|
'main slot must be provided'
|
|
|
|
|
);
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
2018-06-28 18:32:03 +00:00
|
|
|
// If we are not writing into the new schema, we can't support extra slots.
|
|
|
|
|
if ( !$this->hasMcrSchemaFlags( SCHEMA_COMPAT_WRITE_NEW ) && $slotRoles !== [ 'main' ] ) {
|
2018-04-17 07:49:20 +00:00
|
|
|
throw new InvalidArgumentException(
|
2018-06-28 18:32:03 +00:00
|
|
|
'Only the main slot is supported when not writing to the MCR enabled schema!'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// As long as we are not reading from the new schema, we don't want to write extra slots.
|
|
|
|
|
if ( !$this->hasMcrSchemaFlags( SCHEMA_COMPAT_READ_NEW ) && $slotRoles !== [ 'main' ] ) {
|
|
|
|
|
throw new InvalidArgumentException(
|
|
|
|
|
'Only the main slot is supported when not reading from the MCR enabled schema!'
|
2018-04-17 07:49:20 +00:00
|
|
|
);
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
// Checks
|
|
|
|
|
$this->failOnNull( $rev->getSize(), 'size field' );
|
|
|
|
|
$this->failOnEmpty( $rev->getSha1(), 'sha1 field' );
|
|
|
|
|
$this->failOnEmpty( $rev->getTimestamp(), 'timestamp field' );
|
|
|
|
|
$comment = $this->failOnNull( $rev->getComment( RevisionRecord::RAW ), 'comment' );
|
|
|
|
|
$user = $this->failOnNull( $rev->getUser( RevisionRecord::RAW ), 'user' );
|
|
|
|
|
$this->failOnNull( $user->getId(), 'user field' );
|
|
|
|
|
$this->failOnEmpty( $user->getName(), 'user_text field' );
|
|
|
|
|
|
2017-08-27 15:29:18 +00:00
|
|
|
// TODO: we shouldn't need an actual Title here.
|
|
|
|
|
$title = Title::newFromLinkTarget( $rev->getPageAsLinkTarget() );
|
|
|
|
|
$pageId = $this->failOnEmpty( $rev->getPageId(), 'rev_page field' ); // check this early
|
|
|
|
|
|
|
|
|
|
$parentId = $rev->getParentId() === null
|
|
|
|
|
? $this->getPreviousRevisionId( $dbw, $rev )
|
|
|
|
|
: $rev->getParentId();
|
|
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
/** @var RevisionRecord $rev */
|
|
|
|
|
$rev = $dbw->doAtomicSection(
|
|
|
|
|
__METHOD__,
|
|
|
|
|
function ( IDatabase $dbw, $fname ) use (
|
|
|
|
|
$rev,
|
|
|
|
|
$user,
|
|
|
|
|
$comment,
|
|
|
|
|
$title,
|
|
|
|
|
$pageId,
|
|
|
|
|
$parentId
|
|
|
|
|
) {
|
|
|
|
|
return $this->insertRevisionInternal(
|
|
|
|
|
$rev,
|
|
|
|
|
$dbw,
|
|
|
|
|
$user,
|
|
|
|
|
$comment,
|
|
|
|
|
$title,
|
|
|
|
|
$pageId,
|
|
|
|
|
$parentId
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
);
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
// sanity checks
|
|
|
|
|
Assert::postcondition( $rev->getId() > 0, 'revision must have an ID' );
|
|
|
|
|
Assert::postcondition( $rev->getPageId() > 0, 'revision must have a page ID' );
|
|
|
|
|
Assert::postcondition(
|
|
|
|
|
$rev->getComment( RevisionRecord::RAW ) !== null,
|
|
|
|
|
'revision must have a comment'
|
|
|
|
|
);
|
|
|
|
|
Assert::postcondition(
|
|
|
|
|
$rev->getUser( RevisionRecord::RAW ) !== null,
|
|
|
|
|
'revision must have a user'
|
|
|
|
|
);
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
// Trigger exception if the main slot is missing.
|
2018-06-26 17:26:33 +00:00
|
|
|
// Technically, this could go away after MCR migration: while
|
2018-04-17 07:49:20 +00:00
|
|
|
// calling code may require a main slot to exist, RevisionStore
|
|
|
|
|
// really should not know or care about that requirement.
|
|
|
|
|
$rev->getSlot( 'main', RevisionRecord::RAW );
|
|
|
|
|
|
|
|
|
|
foreach ( $slotRoles as $role ) {
|
|
|
|
|
$slot = $rev->getSlot( $role, RevisionRecord::RAW );
|
|
|
|
|
Assert::postcondition(
|
|
|
|
|
$slot->getContent() !== null,
|
|
|
|
|
$role . ' slot must have content'
|
|
|
|
|
);
|
|
|
|
|
Assert::postcondition(
|
|
|
|
|
$slot->hasRevision(),
|
|
|
|
|
$role . ' slot must have a revision associated'
|
|
|
|
|
);
|
|
|
|
|
}
|
2018-01-29 15:54:02 +00:00
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
Hooks::run( 'RevisionRecordInserted', [ $rev ] );
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
// TODO: deprecate in 1.32!
|
|
|
|
|
$legacyRevision = new Revision( $rev );
|
|
|
|
|
Hooks::run( 'RevisionInsertComplete', [ &$legacyRevision, null, null ] );
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
return $rev;
|
|
|
|
|
}
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
private function insertRevisionInternal(
|
|
|
|
|
RevisionRecord $rev,
|
|
|
|
|
IDatabase $dbw,
|
|
|
|
|
User $user,
|
|
|
|
|
CommentStoreComment $comment,
|
|
|
|
|
Title $title,
|
|
|
|
|
$pageId,
|
|
|
|
|
$parentId
|
|
|
|
|
) {
|
|
|
|
|
$slotRoles = $rev->getSlotRoles();
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
$revisionRow = $this->insertRevisionRowOn(
|
|
|
|
|
$dbw,
|
|
|
|
|
$rev,
|
|
|
|
|
$title,
|
|
|
|
|
$parentId
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$revisionId = $revisionRow['rev_id'];
|
|
|
|
|
|
|
|
|
|
$blobHints = [
|
|
|
|
|
BlobStore::PAGE_HINT => $pageId,
|
|
|
|
|
BlobStore::REVISION_HINT => $revisionId,
|
|
|
|
|
BlobStore::PARENT_HINT => $parentId,
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$newSlots = [];
|
|
|
|
|
foreach ( $slotRoles as $role ) {
|
|
|
|
|
$slot = $rev->getSlot( $role, RevisionRecord::RAW );
|
|
|
|
|
|
|
|
|
|
if ( $slot->hasRevision() ) {
|
|
|
|
|
// If the SlotRecord already has a revision ID set, this means it already exists
|
|
|
|
|
// in the database, and should already belong to the current revision.
|
|
|
|
|
// TODO: properly abort transaction if the assertion fails!
|
|
|
|
|
Assert::parameter(
|
|
|
|
|
$slot->getRevision() === $revisionId,
|
|
|
|
|
'slot role ' . $slot->getRole(),
|
|
|
|
|
'Existing slot should belong to revision '
|
|
|
|
|
. $revisionId . ', but belongs to revision ' . $slot->getRevision() . '!'
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// Slot exists, nothing to do, move along.
|
|
|
|
|
// This happens when restoring archived revisions.
|
|
|
|
|
|
|
|
|
|
$newSlots[$role] = $slot;
|
|
|
|
|
|
|
|
|
|
// Write the main slot's text ID to the revision table for backwards compatibility
|
2018-06-26 17:26:33 +00:00
|
|
|
if ( $slot->getRole() === 'main'
|
|
|
|
|
&& $this->hasMcrSchemaFlags( SCHEMA_COMPAT_WRITE_OLD )
|
|
|
|
|
) {
|
2018-04-17 07:49:20 +00:00
|
|
|
$blobAddress = $slot->getAddress();
|
|
|
|
|
$this->updateRevisionTextId( $dbw, $revisionId, $blobAddress );
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$newSlots[$role] = $this->insertSlotOn( $dbw, $revisionId, $slot, $title, $blobHints );
|
|
|
|
|
}
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
$this->insertIpChangesRow( $dbw, $user, $rev, $revisionId );
|
|
|
|
|
|
|
|
|
|
$rev = new RevisionStoreRecord(
|
|
|
|
|
$title,
|
|
|
|
|
$user,
|
|
|
|
|
$comment,
|
|
|
|
|
(object)$revisionRow,
|
|
|
|
|
new RevisionSlots( $newSlots ),
|
|
|
|
|
$this->wikiId
|
|
|
|
|
);
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
return $rev;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param IDatabase $dbw
|
|
|
|
|
* @param int $revisionId
|
|
|
|
|
* @param string &$blobAddress (may change!)
|
|
|
|
|
*/
|
|
|
|
|
private function updateRevisionTextId( IDatabase $dbw, $revisionId, &$blobAddress ) {
|
|
|
|
|
$textId = $this->blobStore->getTextIdFromAddress( $blobAddress );
|
2017-08-27 15:29:18 +00:00
|
|
|
if ( !$textId ) {
|
|
|
|
|
throw new LogicException(
|
|
|
|
|
'Blob address not supported in 1.29 database schema: ' . $blobAddress
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// getTextIdFromAddress() is free to insert something into the text table, so $textId
|
|
|
|
|
// may be a new value, not anything already contained in $blobAddress.
|
2018-04-11 17:07:03 +00:00
|
|
|
$blobAddress = SqlBlobStore::makeAddressFromTextId( $textId );
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
$dbw->update(
|
|
|
|
|
'revision',
|
|
|
|
|
[ 'rev_text_id' => $textId ],
|
|
|
|
|
[ 'rev_id' => $revisionId ],
|
|
|
|
|
__METHOD__
|
|
|
|
|
);
|
|
|
|
|
}
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
/**
|
|
|
|
|
* @param IDatabase $dbw
|
|
|
|
|
* @param int $revisionId
|
|
|
|
|
* @param SlotRecord $protoSlot
|
|
|
|
|
* @param Title $title
|
|
|
|
|
* @param array $blobHints See the BlobStore::XXX_HINT constants
|
|
|
|
|
* @return SlotRecord
|
|
|
|
|
*/
|
|
|
|
|
private function insertSlotOn(
|
|
|
|
|
IDatabase $dbw,
|
|
|
|
|
$revisionId,
|
|
|
|
|
SlotRecord $protoSlot,
|
|
|
|
|
Title $title,
|
|
|
|
|
array $blobHints = []
|
|
|
|
|
) {
|
|
|
|
|
if ( $protoSlot->hasAddress() ) {
|
|
|
|
|
$blobAddress = $protoSlot->getAddress();
|
2018-01-29 15:54:02 +00:00
|
|
|
} else {
|
2018-04-17 07:49:20 +00:00
|
|
|
$blobAddress = $this->storeContentBlob( $protoSlot, $title, $blobHints );
|
2018-01-29 15:54:02 +00:00
|
|
|
}
|
|
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
// Write the main slot's text ID to the revision table for backwards compatibility
|
2018-06-26 17:26:33 +00:00
|
|
|
if ( $protoSlot->getRole() === 'main'
|
|
|
|
|
&& $this->hasMcrSchemaFlags( SCHEMA_COMPAT_WRITE_OLD )
|
|
|
|
|
) {
|
2018-04-17 07:49:20 +00:00
|
|
|
$this->updateRevisionTextId( $dbw, $revisionId, $blobAddress );
|
|
|
|
|
}
|
2018-01-29 15:54:02 +00:00
|
|
|
|
2018-06-26 17:26:33 +00:00
|
|
|
if ( $this->hasMcrSchemaFlags( SCHEMA_COMPAT_WRITE_NEW ) ) {
|
2018-04-17 07:49:20 +00:00
|
|
|
if ( $protoSlot->hasContentId() ) {
|
|
|
|
|
$contentId = $protoSlot->getContentId();
|
2018-01-29 15:54:02 +00:00
|
|
|
} else {
|
2018-04-17 07:49:20 +00:00
|
|
|
$contentId = $this->insertContentRowOn( $protoSlot, $dbw, $blobAddress );
|
2018-01-29 15:54:02 +00:00
|
|
|
}
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
$this->insertSlotRowOn( $protoSlot, $dbw, $revisionId, $contentId );
|
|
|
|
|
} else {
|
|
|
|
|
$contentId = null;
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
$savedSlot = SlotRecord::newSaved(
|
|
|
|
|
$revisionId,
|
|
|
|
|
$contentId,
|
|
|
|
|
$blobAddress,
|
|
|
|
|
$protoSlot
|
|
|
|
|
);
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
return $savedSlot;
|
|
|
|
|
}
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
/**
|
|
|
|
|
* Insert IP revision into ip_changes for use when querying for a range.
|
|
|
|
|
* @param IDatabase $dbw
|
|
|
|
|
* @param User $user
|
|
|
|
|
* @param RevisionRecord $rev
|
|
|
|
|
* @param int $revisionId
|
|
|
|
|
*/
|
|
|
|
|
private function insertIpChangesRow(
|
|
|
|
|
IDatabase $dbw,
|
|
|
|
|
User $user,
|
|
|
|
|
RevisionRecord $rev,
|
|
|
|
|
$revisionId
|
|
|
|
|
) {
|
2017-09-12 17:12:29 +00:00
|
|
|
if ( $user->getId() === 0 && IP::isValid( $user->getName() ) ) {
|
2017-08-27 15:29:18 +00:00
|
|
|
$ipcRow = [
|
2018-01-29 15:54:02 +00:00
|
|
|
'ipc_rev_id' => $revisionId,
|
2018-04-17 07:49:20 +00:00
|
|
|
'ipc_rev_timestamp' => $dbw->timestamp( $rev->getTimestamp() ),
|
2017-09-12 17:12:29 +00:00
|
|
|
'ipc_hex' => IP::toHex( $user->getName() ),
|
2017-08-27 15:29:18 +00:00
|
|
|
];
|
|
|
|
|
$dbw->insert( 'ip_changes', $ipcRow, __METHOD__ );
|
|
|
|
|
}
|
2018-04-17 07:49:20 +00:00
|
|
|
}
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
/**
|
|
|
|
|
* @param IDatabase $dbw
|
|
|
|
|
* @param RevisionRecord $rev
|
|
|
|
|
* @param Title $title
|
|
|
|
|
* @param int $parentId
|
|
|
|
|
*
|
|
|
|
|
* @return array a revision table row
|
|
|
|
|
*
|
|
|
|
|
* @throws MWException
|
|
|
|
|
* @throws MWUnknownContentModelException
|
|
|
|
|
*/
|
|
|
|
|
private function insertRevisionRowOn(
|
|
|
|
|
IDatabase $dbw,
|
|
|
|
|
RevisionRecord $rev,
|
|
|
|
|
Title $title,
|
|
|
|
|
$parentId
|
|
|
|
|
) {
|
|
|
|
|
$revisionRow = $this->getBaseRevisionRow( $dbw, $rev, $title, $parentId );
|
2018-01-29 15:54:02 +00:00
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
list( $commentFields, $commentCallback ) =
|
|
|
|
|
$this->commentStore->insertWithTempTable(
|
|
|
|
|
$dbw,
|
|
|
|
|
'rev_comment',
|
|
|
|
|
$rev->getComment( RevisionRecord::RAW )
|
|
|
|
|
);
|
|
|
|
|
$revisionRow += $commentFields;
|
2018-01-29 15:54:02 +00:00
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
list( $actorFields, $actorCallback ) =
|
|
|
|
|
$this->actorMigration->getInsertValuesWithTempTable(
|
|
|
|
|
$dbw,
|
|
|
|
|
'rev_user',
|
|
|
|
|
$rev->getUser( RevisionRecord::RAW )
|
|
|
|
|
);
|
|
|
|
|
$revisionRow += $actorFields;
|
2018-01-29 15:54:02 +00:00
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
$dbw->insert( 'revision', $revisionRow, __METHOD__ );
|
|
|
|
|
|
|
|
|
|
if ( !isset( $revisionRow['rev_id'] ) ) {
|
|
|
|
|
// only if auto-increment was used
|
|
|
|
|
$revisionRow['rev_id'] = intval( $dbw->insertId() );
|
2018-08-22 15:59:56 +00:00
|
|
|
|
|
|
|
|
if ( $dbw->getType() === 'mysql' ) {
|
|
|
|
|
// (T202032) MySQL until 8.0 and MariaDB until some version after 10.1.34 don't save the
|
|
|
|
|
// auto-increment value to disk, so on server restart it might reuse IDs from deleted
|
|
|
|
|
// revisions. We can fix that with an insert with an explicit rev_id value, if necessary.
|
|
|
|
|
|
|
|
|
|
$maxRevId = intval( $dbw->selectField( 'archive', 'MAX(ar_rev_id)', '', __METHOD__ ) );
|
|
|
|
|
$table = 'archive';
|
|
|
|
|
if ( $this->hasMcrSchemaFlags( SCHEMA_COMPAT_WRITE_NEW ) ) {
|
|
|
|
|
$maxRevId2 = intval( $dbw->selectField( 'slots', 'MAX(slot_revision_id)', '', __METHOD__ ) );
|
|
|
|
|
if ( $maxRevId2 >= $maxRevId ) {
|
|
|
|
|
$maxRevId = $maxRevId2;
|
|
|
|
|
$table = 'slots';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( $maxRevId >= $revisionRow['rev_id'] ) {
|
|
|
|
|
$this->logger->debug(
|
|
|
|
|
'__METHOD__: Inserted revision {revid} but {table} has revisions up to {maxrevid}.'
|
|
|
|
|
. ' Trying to fix it.',
|
|
|
|
|
[
|
|
|
|
|
'revid' => $revisionRow['rev_id'],
|
|
|
|
|
'table' => $table,
|
|
|
|
|
'maxrevid' => $maxRevId,
|
|
|
|
|
]
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
if ( !$dbw->lock( 'fix-for-T202032', __METHOD__ ) ) {
|
|
|
|
|
throw new MWException( 'Failed to get database lock for T202032' );
|
|
|
|
|
}
|
|
|
|
|
$fname = __METHOD__;
|
|
|
|
|
$dbw->onTransactionResolution( function ( $trigger, $dbw ) use ( $fname ) {
|
|
|
|
|
$dbw->unlock( 'fix-for-T202032', $fname );
|
|
|
|
|
} );
|
|
|
|
|
|
|
|
|
|
$dbw->delete( 'revision', [ 'rev_id' => $revisionRow['rev_id'] ], __METHOD__ );
|
|
|
|
|
|
|
|
|
|
// The locking here is mostly to make MySQL bypass the REPEATABLE-READ transaction
|
|
|
|
|
// isolation (weird MySQL "feature"). It does seem to block concurrent auto-incrementing
|
|
|
|
|
// inserts too, though, at least on MariaDB 10.1.29.
|
|
|
|
|
//
|
|
|
|
|
// Don't try to lock `revision` in this way, it'll deadlock if there are concurrent
|
|
|
|
|
// transactions in this code path thanks to the row lock from the original ->insert() above.
|
|
|
|
|
//
|
|
|
|
|
// And we have to use raw SQL to bypass the "aggregation used with a locking SELECT" warning
|
|
|
|
|
// that's for non-MySQL DBs.
|
|
|
|
|
$row1 = $dbw->query(
|
|
|
|
|
$dbw->selectSqlText( 'archive', [ 'v' => "MAX(ar_rev_id)" ], '', __METHOD__ ) . ' FOR UPDATE'
|
|
|
|
|
)->fetchObject();
|
|
|
|
|
if ( $this->hasMcrSchemaFlags( SCHEMA_COMPAT_WRITE_NEW ) ) {
|
|
|
|
|
$row2 = $dbw->query(
|
|
|
|
|
$dbw->selectSqlText( 'slots', [ 'v' => "MAX(slot_revision_id)" ], '', __METHOD__ )
|
|
|
|
|
. ' FOR UPDATE'
|
|
|
|
|
)->fetchObject();
|
|
|
|
|
} else {
|
|
|
|
|
$row2 = null;
|
|
|
|
|
}
|
|
|
|
|
$maxRevId = max(
|
|
|
|
|
$maxRevId,
|
|
|
|
|
$row1 ? intval( $row1->v ) : 0,
|
|
|
|
|
$row2 ? intval( $row2->v ) : 0
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// If we don't have SCHEMA_COMPAT_WRITE_NEW, all except the first of any concurrent
|
|
|
|
|
// transactions will throw a duplicate key error here. It doesn't seem worth trying
|
|
|
|
|
// to avoid that.
|
|
|
|
|
$revisionRow['rev_id'] = $maxRevId + 1;
|
|
|
|
|
$dbw->insert( 'revision', $revisionRow, __METHOD__ );
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-01-29 15:54:02 +00:00
|
|
|
}
|
|
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
$commentCallback( $revisionRow['rev_id'] );
|
|
|
|
|
$actorCallback( $revisionRow['rev_id'], $revisionRow );
|
2018-01-29 15:54:02 +00:00
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
return $revisionRow;
|
|
|
|
|
}
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
/**
|
|
|
|
|
* @param IDatabase $dbw
|
|
|
|
|
* @param RevisionRecord $rev
|
|
|
|
|
* @param Title $title
|
|
|
|
|
* @param int $parentId
|
|
|
|
|
*
|
|
|
|
|
* @return array [ 0 => array $revisionRow, 1 => callable ]
|
|
|
|
|
* @throws MWException
|
|
|
|
|
* @throws MWUnknownContentModelException
|
|
|
|
|
*/
|
|
|
|
|
private function getBaseRevisionRow(
|
|
|
|
|
IDatabase $dbw,
|
|
|
|
|
RevisionRecord $rev,
|
|
|
|
|
Title $title,
|
|
|
|
|
$parentId
|
|
|
|
|
) {
|
|
|
|
|
// Record the edit in revisions
|
|
|
|
|
$revisionRow = [
|
|
|
|
|
'rev_page' => $rev->getPageId(),
|
|
|
|
|
'rev_parent_id' => $parentId,
|
|
|
|
|
'rev_minor_edit' => $rev->isMinor() ? 1 : 0,
|
|
|
|
|
'rev_timestamp' => $dbw->timestamp( $rev->getTimestamp() ),
|
|
|
|
|
'rev_deleted' => $rev->getVisibility(),
|
|
|
|
|
'rev_len' => $rev->getSize(),
|
|
|
|
|
'rev_sha1' => $rev->getSha1(),
|
|
|
|
|
];
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
if ( $rev->getId() !== null ) {
|
|
|
|
|
// Needed to restore revisions with their original ID
|
|
|
|
|
$revisionRow['rev_id'] = $rev->getId();
|
|
|
|
|
}
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2018-06-26 17:26:33 +00:00
|
|
|
if ( $this->hasMcrSchemaFlags( SCHEMA_COMPAT_WRITE_OLD ) ) {
|
|
|
|
|
// In non MCR mode this IF section will relate to the main slot
|
2018-04-17 07:49:20 +00:00
|
|
|
$mainSlot = $rev->getSlot( 'main' );
|
|
|
|
|
$model = $mainSlot->getModel();
|
|
|
|
|
$format = $mainSlot->getFormat();
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
// MCR migration note: rev_content_model and rev_content_format will go away
|
|
|
|
|
if ( $this->contentHandlerUseDB ) {
|
2018-08-06 12:31:04 +00:00
|
|
|
$this->assertCrossWikiContentLoadingIsSafe();
|
|
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
$defaultModel = ContentHandler::getDefaultModelFor( $title );
|
|
|
|
|
$defaultFormat = ContentHandler::getForModelID( $defaultModel )->getDefaultFormat();
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
$revisionRow['rev_content_model'] = ( $model === $defaultModel ) ? null : $model;
|
|
|
|
|
$revisionRow['rev_content_format'] = ( $format === $defaultFormat ) ? null : $format;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
return $revisionRow;
|
|
|
|
|
}
|
2018-06-13 18:18:47 +00:00
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
/**
|
|
|
|
|
* @param SlotRecord $slot
|
|
|
|
|
* @param Title $title
|
|
|
|
|
* @param array $blobHints See the BlobStore::XXX_HINT constants
|
|
|
|
|
*
|
|
|
|
|
* @throws MWException
|
|
|
|
|
* @return string the blob address
|
|
|
|
|
*/
|
|
|
|
|
private function storeContentBlob(
|
|
|
|
|
SlotRecord $slot,
|
|
|
|
|
Title $title,
|
|
|
|
|
array $blobHints = []
|
|
|
|
|
) {
|
|
|
|
|
$content = $slot->getContent();
|
|
|
|
|
$format = $content->getDefaultFormat();
|
|
|
|
|
$model = $content->getModel();
|
|
|
|
|
|
|
|
|
|
$this->checkContent( $content, $title );
|
|
|
|
|
|
|
|
|
|
return $this->blobStore->storeBlob(
|
|
|
|
|
$content->serialize( $format ),
|
|
|
|
|
// These hints "leak" some information from the higher abstraction layer to
|
|
|
|
|
// low level storage to allow for optimization.
|
|
|
|
|
array_merge(
|
|
|
|
|
$blobHints,
|
|
|
|
|
[
|
|
|
|
|
BlobStore::DESIGNATION_HINT => 'page-content',
|
|
|
|
|
BlobStore::ROLE_HINT => $slot->getRole(),
|
|
|
|
|
BlobStore::SHA1_HINT => $slot->getSha1(),
|
|
|
|
|
BlobStore::MODEL_HINT => $model,
|
|
|
|
|
BlobStore::FORMAT_HINT => $format,
|
|
|
|
|
]
|
|
|
|
|
)
|
|
|
|
|
);
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
2018-01-29 15:54:02 +00:00
|
|
|
/**
|
|
|
|
|
* @param SlotRecord $slot
|
|
|
|
|
* @param IDatabase $dbw
|
|
|
|
|
* @param int $revisionId
|
|
|
|
|
* @param int $contentId
|
|
|
|
|
*/
|
|
|
|
|
private function insertSlotRowOn( SlotRecord $slot, IDatabase $dbw, $revisionId, $contentId ) {
|
|
|
|
|
$slotRow = [
|
|
|
|
|
'slot_revision_id' => $revisionId,
|
|
|
|
|
'slot_role_id' => $this->slotRoleStore->acquireId( $slot->getRole() ),
|
|
|
|
|
'slot_content_id' => $contentId,
|
|
|
|
|
// If the slot has a specific origin use that ID, otherwise use the ID of the revision
|
|
|
|
|
// that we just inserted.
|
|
|
|
|
'slot_origin' => $slot->hasOrigin() ? $slot->getOrigin() : $revisionId,
|
|
|
|
|
];
|
|
|
|
|
$dbw->insert( 'slots', $slotRow, __METHOD__ );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param SlotRecord $slot
|
|
|
|
|
* @param IDatabase $dbw
|
|
|
|
|
* @param string $blobAddress
|
|
|
|
|
* @return int content row ID
|
|
|
|
|
*/
|
|
|
|
|
private function insertContentRowOn( SlotRecord $slot, IDatabase $dbw, $blobAddress ) {
|
|
|
|
|
$contentRow = [
|
|
|
|
|
'content_size' => $slot->getSize(),
|
|
|
|
|
'content_sha1' => $slot->getSha1(),
|
|
|
|
|
'content_model' => $this->contentModelStore->acquireId( $slot->getModel() ),
|
|
|
|
|
'content_address' => $blobAddress,
|
|
|
|
|
];
|
|
|
|
|
$dbw->insert( 'content', $contentRow, __METHOD__ );
|
|
|
|
|
return intval( $dbw->insertId() );
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-27 15:29:18 +00:00
|
|
|
/**
|
|
|
|
|
* MCR migration note: this corresponds to Revision::checkContentModel
|
|
|
|
|
*
|
|
|
|
|
* @param Content $content
|
|
|
|
|
* @param Title $title
|
|
|
|
|
*
|
|
|
|
|
* @throws MWException
|
|
|
|
|
* @throws MWUnknownContentModelException
|
|
|
|
|
*/
|
2018-04-17 07:49:20 +00:00
|
|
|
private function checkContent( Content $content, Title $title ) {
|
2017-08-27 15:29:18 +00:00
|
|
|
// Note: may return null for revisions that have not yet been inserted
|
|
|
|
|
|
|
|
|
|
$model = $content->getModel();
|
|
|
|
|
$format = $content->getDefaultFormat();
|
|
|
|
|
$handler = $content->getContentHandler();
|
|
|
|
|
|
|
|
|
|
$name = "$title";
|
|
|
|
|
|
|
|
|
|
if ( !$handler->isSupportedFormat( $format ) ) {
|
|
|
|
|
throw new MWException( "Can't use format $format with content model $model on $name" );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( !$this->contentHandlerUseDB ) {
|
|
|
|
|
// if $wgContentHandlerUseDB is not set,
|
|
|
|
|
// all revisions must use the default content model and format.
|
|
|
|
|
|
2018-08-06 12:31:04 +00:00
|
|
|
$this->assertCrossWikiContentLoadingIsSafe();
|
|
|
|
|
|
2017-08-27 15:29:18 +00:00
|
|
|
$defaultModel = ContentHandler::getDefaultModelFor( $title );
|
|
|
|
|
$defaultHandler = ContentHandler::getForModelID( $defaultModel );
|
|
|
|
|
$defaultFormat = $defaultHandler->getDefaultFormat();
|
|
|
|
|
|
|
|
|
|
if ( $model != $defaultModel ) {
|
|
|
|
|
throw new MWException( "Can't save non-default content model with "
|
|
|
|
|
. "\$wgContentHandlerUseDB disabled: model is $model, "
|
|
|
|
|
. "default for $name is $defaultModel"
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( $format != $defaultFormat ) {
|
|
|
|
|
throw new MWException( "Can't use non-default content format with "
|
|
|
|
|
. "\$wgContentHandlerUseDB disabled: format is $format, "
|
|
|
|
|
. "default for $name is $defaultFormat"
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( !$content->isValid() ) {
|
|
|
|
|
throw new MWException(
|
|
|
|
|
"New content for $name is not valid! Content model is $model"
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Create a new null-revision for insertion into a page's
|
|
|
|
|
* history. This will not re-save the text, but simply refer
|
|
|
|
|
* to the text from the previous version.
|
|
|
|
|
*
|
|
|
|
|
* Such revisions can for instance identify page rename
|
|
|
|
|
* operations and other such meta-modifications.
|
|
|
|
|
*
|
2018-07-26 16:31:49 +00:00
|
|
|
* @note This method grabs a FOR UPDATE lock on the relevant row of the page table,
|
2018-05-09 10:06:51 +00:00
|
|
|
* to prevent a new revision from being inserted before the null revision has been written
|
|
|
|
|
* to the database.
|
|
|
|
|
*
|
2017-08-27 15:29:18 +00:00
|
|
|
* MCR migration note: this replaces Revision::newNullRevision
|
|
|
|
|
*
|
|
|
|
|
* @todo Introduce newFromParentRevision(). newNullRevision can then be based on that
|
|
|
|
|
* (or go away).
|
|
|
|
|
*
|
2018-05-09 10:06:51 +00:00
|
|
|
* @param IDatabase $dbw used for obtaining the lock on the page table row
|
2017-08-27 15:29:18 +00:00
|
|
|
* @param Title $title Title of the page to read from
|
|
|
|
|
* @param CommentStoreComment $comment RevisionRecord's summary
|
|
|
|
|
* @param bool $minor Whether the revision should be considered as minor
|
|
|
|
|
* @param User $user The user to attribute the revision to
|
2018-05-09 10:06:51 +00:00
|
|
|
*
|
2017-08-27 15:29:18 +00:00
|
|
|
* @return RevisionRecord|null RevisionRecord or null on error
|
|
|
|
|
*/
|
|
|
|
|
public function newNullRevision(
|
|
|
|
|
IDatabase $dbw,
|
|
|
|
|
Title $title,
|
|
|
|
|
CommentStoreComment $comment,
|
|
|
|
|
$minor,
|
|
|
|
|
User $user
|
|
|
|
|
) {
|
|
|
|
|
$this->checkDatabaseWikiId( $dbw );
|
|
|
|
|
|
2018-05-09 10:06:51 +00:00
|
|
|
// T51581: Lock the page table row to ensure no other process
|
|
|
|
|
// is adding a revision to the page at the same time.
|
|
|
|
|
// Avoid locking extra tables, compare T191892.
|
|
|
|
|
$pageLatest = $dbw->selectField(
|
|
|
|
|
'page',
|
|
|
|
|
'page_latest',
|
|
|
|
|
[ 'page_id' => $title->getArticleID() ],
|
2017-08-27 15:29:18 +00:00
|
|
|
__METHOD__,
|
2018-05-09 10:06:51 +00:00
|
|
|
[ 'FOR UPDATE' ]
|
2017-08-27 15:29:18 +00:00
|
|
|
);
|
|
|
|
|
|
2018-05-09 10:06:51 +00:00
|
|
|
if ( !$pageLatest ) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2018-07-10 17:54:11 +00:00
|
|
|
// Fetch the actual revision row from master, without locking all extra tables.
|
|
|
|
|
$oldRevision = $this->loadRevisionFromConds(
|
|
|
|
|
$dbw,
|
|
|
|
|
[ 'rev_id' => intval( $pageLatest ) ],
|
|
|
|
|
self::READ_LATEST,
|
|
|
|
|
$title
|
|
|
|
|
);
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2018-05-09 10:06:51 +00:00
|
|
|
// Construct the new revision
|
|
|
|
|
$timestamp = wfTimestampNow(); // TODO: use a callback, so we can override it for testing.
|
|
|
|
|
$newRevision = MutableRevisionRecord::newFromParentRevision( $oldRevision );
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2018-05-09 10:06:51 +00:00
|
|
|
$newRevision->setComment( $comment );
|
|
|
|
|
$newRevision->setUser( $user );
|
|
|
|
|
$newRevision->setTimestamp( $timestamp );
|
|
|
|
|
$newRevision->setMinorEdit( $minor );
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2018-05-09 10:06:51 +00:00
|
|
|
return $newRevision;
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* MCR migration note: this replaces Revision::isUnpatrolled
|
|
|
|
|
*
|
2017-12-27 15:46:03 +00:00
|
|
|
* @todo This is overly specific, so move or kill this method.
|
|
|
|
|
*
|
2018-01-07 10:38:43 +00:00
|
|
|
* @param RevisionRecord $rev
|
2017-12-27 15:46:03 +00:00
|
|
|
*
|
2017-08-27 15:29:18 +00:00
|
|
|
* @return int Rcid of the unpatrolled row, zero if there isn't one
|
|
|
|
|
*/
|
2017-12-27 15:46:03 +00:00
|
|
|
public function getRcIdIfUnpatrolled( RevisionRecord $rev ) {
|
2017-08-27 15:29:18 +00:00
|
|
|
$rc = $this->getRecentChange( $rev );
|
2018-04-13 21:36:34 +00:00
|
|
|
if ( $rc && $rc->getAttribute( 'rc_patrolled' ) == RecentChange::PRC_UNPATROLLED ) {
|
2017-08-27 15:29:18 +00:00
|
|
|
return $rc->getAttribute( 'rc_id' );
|
|
|
|
|
} else {
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the RC object belonging to the current revision, if there's one
|
|
|
|
|
*
|
|
|
|
|
* MCR migration note: this replaces Revision::getRecentChange
|
|
|
|
|
*
|
|
|
|
|
* @todo move this somewhere else?
|
|
|
|
|
*
|
|
|
|
|
* @param RevisionRecord $rev
|
|
|
|
|
* @param int $flags (optional) $flags include:
|
|
|
|
|
* IDBAccessObject::READ_LATEST: Select the data from the master
|
|
|
|
|
*
|
|
|
|
|
* @return null|RecentChange
|
|
|
|
|
*/
|
|
|
|
|
public function getRecentChange( RevisionRecord $rev, $flags = 0 ) {
|
|
|
|
|
list( $dbType, ) = DBAccessObjectUtils::getDBOptions( $flags );
|
2018-07-10 18:54:33 +00:00
|
|
|
$db = $this->getDBConnection( $dbType );
|
2017-08-27 15:29:18 +00:00
|
|
|
|
|
|
|
|
$userIdentity = $rev->getUser( RevisionRecord::RAW );
|
|
|
|
|
|
|
|
|
|
if ( !$userIdentity ) {
|
|
|
|
|
// If the revision has no user identity, chances are it never went
|
|
|
|
|
// into the database, and doesn't have an RC entry.
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// TODO: Select by rc_this_oldid alone - but as of Nov 2017, there is no index on that!
|
2018-07-10 18:54:33 +00:00
|
|
|
$actorWhere = $this->actorMigration->getWhere( $db, 'rc_user', $rev->getUser(), false );
|
2017-08-27 15:29:18 +00:00
|
|
|
$rc = RecentChange::newFromConds(
|
|
|
|
|
[
|
2017-09-12 17:12:29 +00:00
|
|
|
$actorWhere['conds'],
|
2018-07-10 18:54:33 +00:00
|
|
|
'rc_timestamp' => $db->timestamp( $rev->getTimestamp() ),
|
2017-08-27 15:29:18 +00:00
|
|
|
'rc_this_oldid' => $rev->getId()
|
|
|
|
|
],
|
|
|
|
|
__METHOD__,
|
|
|
|
|
$dbType
|
|
|
|
|
);
|
|
|
|
|
|
2018-07-10 18:54:33 +00:00
|
|
|
$this->releaseDBConnection( $db );
|
2017-08-27 15:29:18 +00:00
|
|
|
|
|
|
|
|
// XXX: cache this locally? Glue it to the RevisionRecord?
|
|
|
|
|
return $rc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Maps fields of the archive row to corresponding revision rows.
|
|
|
|
|
*
|
|
|
|
|
* @param object $archiveRow
|
|
|
|
|
*
|
|
|
|
|
* @return object a revision row object, corresponding to $archiveRow.
|
|
|
|
|
*/
|
|
|
|
|
private static function mapArchiveFields( $archiveRow ) {
|
|
|
|
|
$fieldMap = [
|
|
|
|
|
// keep with ar prefix:
|
|
|
|
|
'ar_id' => 'ar_id',
|
|
|
|
|
|
|
|
|
|
// not the same suffix:
|
|
|
|
|
'ar_page_id' => 'rev_page',
|
|
|
|
|
'ar_rev_id' => 'rev_id',
|
|
|
|
|
|
|
|
|
|
// same suffix:
|
|
|
|
|
'ar_text_id' => 'rev_text_id',
|
|
|
|
|
'ar_timestamp' => 'rev_timestamp',
|
|
|
|
|
'ar_user_text' => 'rev_user_text',
|
|
|
|
|
'ar_user' => 'rev_user',
|
2017-09-12 17:12:29 +00:00
|
|
|
'ar_actor' => 'rev_actor',
|
2017-08-27 15:29:18 +00:00
|
|
|
'ar_minor_edit' => 'rev_minor_edit',
|
|
|
|
|
'ar_deleted' => 'rev_deleted',
|
|
|
|
|
'ar_len' => 'rev_len',
|
|
|
|
|
'ar_parent_id' => 'rev_parent_id',
|
|
|
|
|
'ar_sha1' => 'rev_sha1',
|
|
|
|
|
'ar_comment' => 'rev_comment',
|
|
|
|
|
'ar_comment_cid' => 'rev_comment_cid',
|
|
|
|
|
'ar_comment_id' => 'rev_comment_id',
|
|
|
|
|
'ar_comment_text' => 'rev_comment_text',
|
|
|
|
|
'ar_comment_data' => 'rev_comment_data',
|
|
|
|
|
'ar_comment_old' => 'rev_comment_old',
|
|
|
|
|
'ar_content_format' => 'rev_content_format',
|
|
|
|
|
'ar_content_model' => 'rev_content_model',
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$revRow = new stdClass();
|
|
|
|
|
foreach ( $fieldMap as $arKey => $revKey ) {
|
|
|
|
|
if ( property_exists( $archiveRow, $arKey ) ) {
|
|
|
|
|
$revRow->$revKey = $archiveRow->$arKey;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $revRow;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Constructs a RevisionRecord for the revisions main slot, based on the MW1.29 schema.
|
|
|
|
|
*
|
|
|
|
|
* @param object|array $row Either a database row or an array
|
|
|
|
|
* @param int $queryFlags for callbacks
|
|
|
|
|
* @param Title $title
|
|
|
|
|
*
|
|
|
|
|
* @return SlotRecord The main slot, extracted from the MW 1.29 style row.
|
|
|
|
|
* @throws MWException
|
|
|
|
|
*/
|
|
|
|
|
private function emulateMainSlot_1_29( $row, $queryFlags, Title $title ) {
|
|
|
|
|
$mainSlotRow = new stdClass();
|
|
|
|
|
$mainSlotRow->role_name = 'main';
|
2018-03-06 18:46:13 +00:00
|
|
|
$mainSlotRow->model_name = null;
|
|
|
|
|
$mainSlotRow->slot_revision_id = null;
|
|
|
|
|
$mainSlotRow->content_address = null;
|
2017-08-27 15:29:18 +00:00
|
|
|
|
|
|
|
|
$content = null;
|
|
|
|
|
$blobData = null;
|
2018-01-12 11:52:31 +00:00
|
|
|
$blobFlags = null;
|
2017-08-27 15:29:18 +00:00
|
|
|
|
|
|
|
|
if ( is_object( $row ) ) {
|
2018-06-26 17:26:33 +00:00
|
|
|
if ( $this->hasMcrSchemaFlags( SCHEMA_COMPAT_READ_NEW ) ) {
|
2018-04-17 07:49:20 +00:00
|
|
|
// Don't emulate from a row when using the new schema.
|
|
|
|
|
// Emulating from an array is still OK.
|
|
|
|
|
throw new LogicException( 'Can\'t emulate the main slot when using MCR schema.' );
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-27 15:29:18 +00:00
|
|
|
// archive row
|
2017-09-12 17:12:29 +00:00
|
|
|
if ( !isset( $row->rev_id ) && ( isset( $row->ar_user ) || isset( $row->ar_actor ) ) ) {
|
2017-08-27 15:29:18 +00:00
|
|
|
$row = $this->mapArchiveFields( $row );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( isset( $row->rev_text_id ) && $row->rev_text_id > 0 ) {
|
2018-04-11 17:07:03 +00:00
|
|
|
$mainSlotRow->content_address = SqlBlobStore::makeAddressFromTextId(
|
|
|
|
|
$row->rev_text_id
|
|
|
|
|
);
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
2018-03-06 14:42:43 +00:00
|
|
|
// This is used by null-revisions
|
|
|
|
|
$mainSlotRow->slot_origin = isset( $row->slot_origin )
|
|
|
|
|
? intval( $row->slot_origin )
|
|
|
|
|
: null;
|
|
|
|
|
|
2017-08-27 15:29:18 +00:00
|
|
|
if ( isset( $row->old_text ) ) {
|
|
|
|
|
// this happens when the text-table gets joined directly, in the pre-1.30 schema
|
|
|
|
|
$blobData = isset( $row->old_text ) ? strval( $row->old_text ) : null;
|
2018-01-12 11:52:31 +00:00
|
|
|
// Check against selects that might have not included old_flags
|
|
|
|
|
if ( !property_exists( $row, 'old_flags' ) ) {
|
|
|
|
|
throw new InvalidArgumentException( 'old_flags was not set in $row' );
|
|
|
|
|
}
|
2018-06-20 05:26:57 +00:00
|
|
|
$blobFlags = $row->old_flags ?? '';
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
2018-03-06 18:46:13 +00:00
|
|
|
$mainSlotRow->slot_revision_id = intval( $row->rev_id );
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2018-03-06 18:46:13 +00:00
|
|
|
$mainSlotRow->content_size = isset( $row->rev_len ) ? intval( $row->rev_len ) : null;
|
|
|
|
|
$mainSlotRow->content_sha1 = isset( $row->rev_sha1 ) ? strval( $row->rev_sha1 ) : null;
|
2017-08-27 15:29:18 +00:00
|
|
|
$mainSlotRow->model_name = isset( $row->rev_content_model )
|
|
|
|
|
? strval( $row->rev_content_model )
|
|
|
|
|
: null;
|
|
|
|
|
// XXX: in the future, we'll probably always use the default format, and drop content_format
|
|
|
|
|
$mainSlotRow->format_name = isset( $row->rev_content_format )
|
|
|
|
|
? strval( $row->rev_content_format )
|
|
|
|
|
: null;
|
|
|
|
|
} elseif ( is_array( $row ) ) {
|
2018-03-06 18:46:13 +00:00
|
|
|
$mainSlotRow->slot_revision_id = isset( $row['id'] ) ? intval( $row['id'] ) : null;
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2018-03-06 14:42:43 +00:00
|
|
|
$mainSlotRow->slot_origin = isset( $row['slot_origin'] )
|
|
|
|
|
? intval( $row['slot_origin'] )
|
|
|
|
|
: null;
|
2018-03-06 18:46:13 +00:00
|
|
|
$mainSlotRow->content_address = isset( $row['text_id'] )
|
2018-04-11 17:07:03 +00:00
|
|
|
? SqlBlobStore::makeAddressFromTextId( intval( $row['text_id'] ) )
|
2017-08-27 15:29:18 +00:00
|
|
|
: null;
|
2018-03-06 18:46:13 +00:00
|
|
|
$mainSlotRow->content_size = isset( $row['len'] ) ? intval( $row['len'] ) : null;
|
|
|
|
|
$mainSlotRow->content_sha1 = isset( $row['sha1'] ) ? strval( $row['sha1'] ) : null;
|
2017-08-27 15:29:18 +00:00
|
|
|
|
|
|
|
|
$mainSlotRow->model_name = isset( $row['content_model'] )
|
|
|
|
|
? strval( $row['content_model'] ) : null; // XXX: must be a string!
|
|
|
|
|
// XXX: in the future, we'll probably always use the default format, and drop content_format
|
|
|
|
|
$mainSlotRow->format_name = isset( $row['content_format'] )
|
|
|
|
|
? strval( $row['content_format'] ) : null;
|
|
|
|
|
$blobData = isset( $row['text'] ) ? rtrim( strval( $row['text'] ) ) : null;
|
2018-01-12 11:52:31 +00:00
|
|
|
// XXX: If the flags field is not set then $blobFlags should be null so that no
|
|
|
|
|
// decoding will happen. An empty string will result in default decodings.
|
|
|
|
|
$blobFlags = isset( $row['flags'] ) ? trim( strval( $row['flags'] ) ) : null;
|
2017-08-27 15:29:18 +00:00
|
|
|
|
|
|
|
|
// if we have a Content object, override mText and mContentModel
|
|
|
|
|
if ( !empty( $row['content'] ) ) {
|
|
|
|
|
if ( !( $row['content'] instanceof Content ) ) {
|
|
|
|
|
throw new MWException( 'content field must contain a Content object.' );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** @var Content $content */
|
|
|
|
|
$content = $row['content'];
|
|
|
|
|
$handler = $content->getContentHandler();
|
|
|
|
|
|
|
|
|
|
$mainSlotRow->model_name = $content->getModel();
|
|
|
|
|
|
|
|
|
|
// XXX: in the future, we'll probably always use the default format.
|
|
|
|
|
if ( $mainSlotRow->format_name === null ) {
|
|
|
|
|
$mainSlotRow->format_name = $handler->getDefaultFormat();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
throw new MWException( 'Revision constructor passed invalid row format.' );
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-06 14:42:43 +00:00
|
|
|
// With the old schema, the content changes with every revision,
|
|
|
|
|
// except for null-revisions.
|
|
|
|
|
if ( !isset( $mainSlotRow->slot_origin ) ) {
|
|
|
|
|
$mainSlotRow->slot_origin = $mainSlotRow->slot_revision_id;
|
|
|
|
|
}
|
2017-08-27 15:29:18 +00:00
|
|
|
|
|
|
|
|
if ( $mainSlotRow->model_name === null ) {
|
|
|
|
|
$mainSlotRow->model_name = function ( SlotRecord $slot ) use ( $title ) {
|
2018-08-06 12:31:04 +00:00
|
|
|
$this->assertCrossWikiContentLoadingIsSafe();
|
|
|
|
|
|
2017-08-27 15:29:18 +00:00
|
|
|
// TODO: MCR: consider slot role in getDefaultModelFor()! Use LinkTarget!
|
|
|
|
|
// TODO: MCR: deprecate $title->getModel().
|
|
|
|
|
return ContentHandler::getDefaultModelFor( $title );
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( !$content ) {
|
2018-04-17 07:49:20 +00:00
|
|
|
// XXX: We should perhaps fail if $blobData is null and $mainSlotRow->content_address
|
|
|
|
|
// is missing, but "empty revisions" with no content are used in some edge cases.
|
|
|
|
|
|
2017-08-27 15:29:18 +00:00
|
|
|
$content = function ( SlotRecord $slot )
|
|
|
|
|
use ( $blobData, $blobFlags, $queryFlags, $mainSlotRow )
|
|
|
|
|
{
|
|
|
|
|
return $this->loadSlotContent(
|
|
|
|
|
$slot,
|
|
|
|
|
$blobData,
|
|
|
|
|
$blobFlags,
|
|
|
|
|
$mainSlotRow->format_name,
|
|
|
|
|
$queryFlags
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-29 15:54:02 +00:00
|
|
|
// NOTE: this callback will be looped through RevisionSlot::newInherited(), allowing
|
|
|
|
|
// the inherited slot to have the same content_id as the original slot. In that case,
|
|
|
|
|
// $slot will be the inherited slot, while $mainSlotRow still refers to the original slot.
|
|
|
|
|
$mainSlotRow->slot_content_id =
|
|
|
|
|
function ( SlotRecord $slot ) use ( $queryFlags, $mainSlotRow ) {
|
2018-07-10 18:54:33 +00:00
|
|
|
$db = $this->getDBConnectionRefForQueryFlags( $queryFlags );
|
2018-01-29 15:54:02 +00:00
|
|
|
return $this->findSlotContentId( $db, $mainSlotRow->slot_revision_id, 'main' );
|
|
|
|
|
};
|
|
|
|
|
|
2017-08-27 15:29:18 +00:00
|
|
|
return new SlotRecord( $mainSlotRow, $content );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Loads a Content object based on a slot row.
|
|
|
|
|
*
|
|
|
|
|
* This method does not call $slot->getContent(), and may be used as a callback
|
|
|
|
|
* called by $slot->getContent().
|
|
|
|
|
*
|
|
|
|
|
* MCR migration note: this roughly corresponds to Revision::getContentInternal
|
|
|
|
|
*
|
|
|
|
|
* @param SlotRecord $slot The SlotRecord to load content for
|
|
|
|
|
* @param string|null $blobData The content blob, in the form indicated by $blobFlags
|
2018-01-12 11:52:31 +00:00
|
|
|
* @param string|null $blobFlags Flags indicating how $blobData needs to be processed.
|
2018-01-12 13:51:56 +00:00
|
|
|
* Use null if no processing should happen. That is in constrast to the empty string,
|
|
|
|
|
* which causes the blob to be decoded according to the configured legacy encoding.
|
2017-08-27 15:29:18 +00:00
|
|
|
* @param string|null $blobFormat MIME type indicating how $dataBlob is encoded
|
|
|
|
|
* @param int $queryFlags
|
|
|
|
|
*
|
2018-04-27 19:53:19 +00:00
|
|
|
* @throws RevisionAccessException
|
2017-08-27 15:29:18 +00:00
|
|
|
* @return Content
|
|
|
|
|
*/
|
|
|
|
|
private function loadSlotContent(
|
|
|
|
|
SlotRecord $slot,
|
|
|
|
|
$blobData = null,
|
2018-01-12 11:52:31 +00:00
|
|
|
$blobFlags = null,
|
2017-08-27 15:29:18 +00:00
|
|
|
$blobFormat = null,
|
|
|
|
|
$queryFlags = 0
|
|
|
|
|
) {
|
|
|
|
|
if ( $blobData !== null ) {
|
|
|
|
|
Assert::parameterType( 'string', $blobData, '$blobData' );
|
2018-01-12 11:52:31 +00:00
|
|
|
Assert::parameterType( 'string|null', $blobFlags, '$blobFlags' );
|
2017-08-27 15:29:18 +00:00
|
|
|
|
|
|
|
|
$cacheKey = $slot->hasAddress() ? $slot->getAddress() : null;
|
|
|
|
|
|
2018-01-12 11:52:31 +00:00
|
|
|
if ( $blobFlags === null ) {
|
2018-01-12 13:51:56 +00:00
|
|
|
// No blob flags, so use the blob verbatim.
|
2018-01-12 11:52:31 +00:00
|
|
|
$data = $blobData;
|
|
|
|
|
} else {
|
|
|
|
|
$data = $this->blobStore->expandBlob( $blobData, $blobFlags, $cacheKey );
|
|
|
|
|
if ( $data === false ) {
|
|
|
|
|
throw new RevisionAccessException(
|
|
|
|
|
"Failed to expand blob data using flags $blobFlags (key: $cacheKey)"
|
|
|
|
|
);
|
|
|
|
|
}
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
2018-01-12 11:52:31 +00:00
|
|
|
|
2017-08-27 15:29:18 +00:00
|
|
|
} else {
|
|
|
|
|
$address = $slot->getAddress();
|
|
|
|
|
try {
|
|
|
|
|
$data = $this->blobStore->getBlob( $address, $queryFlags );
|
|
|
|
|
} catch ( BlobAccessException $e ) {
|
|
|
|
|
throw new RevisionAccessException(
|
|
|
|
|
"Failed to load data blob from $address: " . $e->getMessage(), 0, $e
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Unserialize content
|
|
|
|
|
$handler = ContentHandler::getForModelID( $slot->getModel() );
|
|
|
|
|
|
|
|
|
|
$content = $handler->unserializeContent( $data, $blobFormat );
|
|
|
|
|
return $content;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Load a page revision from a given revision ID number.
|
|
|
|
|
* Returns null if no such revision can be found.
|
|
|
|
|
*
|
|
|
|
|
* MCR migration note: this replaces Revision::newFromId
|
|
|
|
|
*
|
|
|
|
|
* $flags include:
|
|
|
|
|
* IDBAccessObject::READ_LATEST: Select the data from the master
|
|
|
|
|
* IDBAccessObject::READ_LOCKING : Select & lock the data from the master
|
|
|
|
|
*
|
|
|
|
|
* @param int $id
|
|
|
|
|
* @param int $flags (optional)
|
|
|
|
|
* @return RevisionRecord|null
|
|
|
|
|
*/
|
2017-12-28 18:34:17 +00:00
|
|
|
public function getRevisionById( $id, $flags = 0 ) {
|
|
|
|
|
return $this->newRevisionFromConds( [ 'rev_id' => intval( $id ) ], $flags );
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Load either the current, or a specified, revision
|
|
|
|
|
* that's attached to a given link target. If not attached
|
|
|
|
|
* to that link target, will return null.
|
|
|
|
|
*
|
|
|
|
|
* MCR migration note: this replaces Revision::newFromTitle
|
|
|
|
|
*
|
|
|
|
|
* $flags include:
|
|
|
|
|
* IDBAccessObject::READ_LATEST: Select the data from the master
|
|
|
|
|
* IDBAccessObject::READ_LOCKING : Select & lock the data from the master
|
|
|
|
|
*
|
|
|
|
|
* @param LinkTarget $linkTarget
|
|
|
|
|
* @param int $revId (optional)
|
|
|
|
|
* @param int $flags Bitfield (optional)
|
|
|
|
|
* @return RevisionRecord|null
|
|
|
|
|
*/
|
|
|
|
|
public function getRevisionByTitle( LinkTarget $linkTarget, $revId = 0, $flags = 0 ) {
|
|
|
|
|
$conds = [
|
|
|
|
|
'page_namespace' => $linkTarget->getNamespace(),
|
|
|
|
|
'page_title' => $linkTarget->getDBkey()
|
|
|
|
|
];
|
|
|
|
|
if ( $revId ) {
|
|
|
|
|
// Use the specified revision ID.
|
|
|
|
|
// Note that we use newRevisionFromConds here because we want to retry
|
|
|
|
|
// and fall back to master if the page is not found on a replica.
|
|
|
|
|
// Since the caller supplied a revision ID, we are pretty sure the revision is
|
|
|
|
|
// supposed to exist, so we should try hard to find it.
|
|
|
|
|
$conds['rev_id'] = $revId;
|
|
|
|
|
return $this->newRevisionFromConds( $conds, $flags );
|
|
|
|
|
} else {
|
|
|
|
|
// Use a join to get the latest revision.
|
|
|
|
|
// Note that we don't use newRevisionFromConds here because we don't want to retry
|
|
|
|
|
// and fall back to master. The assumption is that we only want to force the fallback
|
|
|
|
|
// if we are quite sure the revision exists because the caller supplied a revision ID.
|
|
|
|
|
// If the page isn't found at all on a replica, it probably simply does not exist.
|
2018-07-10 18:54:33 +00:00
|
|
|
$db = $this->getDBConnectionRefForQueryFlags( $flags );
|
2017-08-27 15:29:18 +00:00
|
|
|
|
|
|
|
|
$conds[] = 'rev_id=page_latest';
|
|
|
|
|
$rev = $this->loadRevisionFromConds( $db, $conds, $flags );
|
|
|
|
|
|
|
|
|
|
return $rev;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Load either the current, or a specified, revision
|
|
|
|
|
* that's attached to a given page ID.
|
|
|
|
|
* Returns null if no such revision can be found.
|
|
|
|
|
*
|
|
|
|
|
* MCR migration note: this replaces Revision::newFromPageId
|
|
|
|
|
*
|
|
|
|
|
* $flags include:
|
|
|
|
|
* IDBAccessObject::READ_LATEST: Select the data from the master (since 1.20)
|
|
|
|
|
* IDBAccessObject::READ_LOCKING : Select & lock the data from the master
|
|
|
|
|
*
|
|
|
|
|
* @param int $pageId
|
|
|
|
|
* @param int $revId (optional)
|
|
|
|
|
* @param int $flags Bitfield (optional)
|
|
|
|
|
* @return RevisionRecord|null
|
|
|
|
|
*/
|
|
|
|
|
public function getRevisionByPageId( $pageId, $revId = 0, $flags = 0 ) {
|
|
|
|
|
$conds = [ 'page_id' => $pageId ];
|
|
|
|
|
if ( $revId ) {
|
|
|
|
|
// Use the specified revision ID.
|
|
|
|
|
// Note that we use newRevisionFromConds here because we want to retry
|
|
|
|
|
// and fall back to master if the page is not found on a replica.
|
|
|
|
|
// Since the caller supplied a revision ID, we are pretty sure the revision is
|
|
|
|
|
// supposed to exist, so we should try hard to find it.
|
|
|
|
|
$conds['rev_id'] = $revId;
|
|
|
|
|
return $this->newRevisionFromConds( $conds, $flags );
|
|
|
|
|
} else {
|
|
|
|
|
// Use a join to get the latest revision.
|
|
|
|
|
// Note that we don't use newRevisionFromConds here because we don't want to retry
|
|
|
|
|
// and fall back to master. The assumption is that we only want to force the fallback
|
|
|
|
|
// if we are quite sure the revision exists because the caller supplied a revision ID.
|
|
|
|
|
// If the page isn't found at all on a replica, it probably simply does not exist.
|
2018-07-10 18:54:33 +00:00
|
|
|
$db = $this->getDBConnectionRefForQueryFlags( $flags );
|
2017-08-27 15:29:18 +00:00
|
|
|
|
|
|
|
|
$conds[] = 'rev_id=page_latest';
|
|
|
|
|
$rev = $this->loadRevisionFromConds( $db, $conds, $flags );
|
|
|
|
|
|
|
|
|
|
return $rev;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Load the revision for the given title with the given timestamp.
|
|
|
|
|
* WARNING: Timestamps may in some circumstances not be unique,
|
|
|
|
|
* so this isn't the best key to use.
|
|
|
|
|
*
|
|
|
|
|
* MCR migration note: this replaces Revision::loadFromTimestamp
|
|
|
|
|
*
|
|
|
|
|
* @param Title $title
|
|
|
|
|
* @param string $timestamp
|
|
|
|
|
* @return RevisionRecord|null
|
|
|
|
|
*/
|
2017-12-27 15:46:03 +00:00
|
|
|
public function getRevisionByTimestamp( $title, $timestamp ) {
|
2018-03-18 01:41:45 +00:00
|
|
|
$db = $this->getDBConnection( DB_REPLICA );
|
2017-08-27 15:29:18 +00:00
|
|
|
return $this->newRevisionFromConds(
|
|
|
|
|
[
|
2018-03-18 01:41:45 +00:00
|
|
|
'rev_timestamp' => $db->timestamp( $timestamp ),
|
2017-08-27 15:29:18 +00:00
|
|
|
'page_namespace' => $title->getNamespace(),
|
|
|
|
|
'page_title' => $title->getDBkey()
|
|
|
|
|
],
|
|
|
|
|
0,
|
|
|
|
|
$title
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
/**
|
|
|
|
|
* @param int $revId The revision to load slots for.
|
|
|
|
|
* @param int $queryFlags
|
|
|
|
|
*
|
|
|
|
|
* @return SlotRecord[]
|
|
|
|
|
*/
|
|
|
|
|
private function loadSlotRecords( $revId, $queryFlags ) {
|
|
|
|
|
$revQuery = self::getSlotsQueryInfo( [ 'content' ] );
|
|
|
|
|
|
|
|
|
|
list( $dbMode, $dbOptions ) = DBAccessObjectUtils::getDBOptions( $queryFlags );
|
|
|
|
|
$db = $this->getDBConnectionRef( $dbMode );
|
|
|
|
|
|
|
|
|
|
$res = $db->select(
|
|
|
|
|
$revQuery['tables'],
|
|
|
|
|
$revQuery['fields'],
|
|
|
|
|
[
|
|
|
|
|
'slot_revision_id' => $revId,
|
|
|
|
|
],
|
|
|
|
|
__METHOD__,
|
|
|
|
|
$dbOptions,
|
|
|
|
|
$revQuery['joins']
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$slots = [];
|
|
|
|
|
|
|
|
|
|
foreach ( $res as $row ) {
|
|
|
|
|
$contentCallback = function ( SlotRecord $slot ) use ( $queryFlags, $row ) {
|
|
|
|
|
return $this->loadSlotContent( $slot, null, null, null, $queryFlags );
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
$slots[$row->role_name] = new SlotRecord( $row, $contentCallback );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( !isset( $slots['main'] ) ) {
|
|
|
|
|
throw new RevisionAccessException(
|
|
|
|
|
'Main slot of revision ' . $revId . ' not found in database!'
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return $slots;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Factory method for RevisionSlots.
|
|
|
|
|
*
|
|
|
|
|
* @note If other code has a need to construct RevisionSlots objects, this should be made
|
|
|
|
|
* public, since RevisionSlots instances should not be constructed directly.
|
|
|
|
|
*
|
|
|
|
|
* @param int $revId
|
|
|
|
|
* @param object $revisionRow
|
|
|
|
|
* @param int $queryFlags
|
|
|
|
|
* @param Title $title
|
|
|
|
|
*
|
|
|
|
|
* @return RevisionSlots
|
|
|
|
|
* @throws MWException
|
|
|
|
|
*/
|
|
|
|
|
private function newRevisionSlots(
|
|
|
|
|
$revId,
|
|
|
|
|
$revisionRow,
|
|
|
|
|
$queryFlags,
|
|
|
|
|
Title $title
|
|
|
|
|
) {
|
2018-06-26 17:26:33 +00:00
|
|
|
if ( !$this->hasMcrSchemaFlags( SCHEMA_COMPAT_READ_NEW ) ) {
|
2018-04-17 07:49:20 +00:00
|
|
|
$mainSlot = $this->emulateMainSlot_1_29( $revisionRow, $queryFlags, $title );
|
|
|
|
|
$slots = new RevisionSlots( [ 'main' => $mainSlot ] );
|
|
|
|
|
} else {
|
|
|
|
|
// XXX: do we need the same kind of caching here
|
|
|
|
|
// that getKnownCurrentRevision uses (if $revId == page_latest?)
|
|
|
|
|
|
|
|
|
|
$slots = new RevisionSlots( function () use( $revId, $queryFlags ) {
|
|
|
|
|
return $this->loadSlotRecords( $revId, $queryFlags );
|
|
|
|
|
} );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $slots;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-27 15:29:18 +00:00
|
|
|
/**
|
|
|
|
|
* Make a fake revision object from an archive table row. This is queried
|
|
|
|
|
* for permissions or even inserted (as in Special:Undelete)
|
|
|
|
|
*
|
|
|
|
|
* MCR migration note: this replaces Revision::newFromArchiveRow
|
|
|
|
|
*
|
|
|
|
|
* @param object $row
|
|
|
|
|
* @param int $queryFlags
|
|
|
|
|
* @param Title|null $title
|
|
|
|
|
* @param array $overrides associative array with fields of $row to override. This may be
|
|
|
|
|
* used e.g. to force the parent revision ID or page ID. Keys in the array are fields
|
|
|
|
|
* names from the archive table without the 'ar_' prefix, i.e. use 'parent_id' to
|
|
|
|
|
* override ar_parent_id.
|
|
|
|
|
*
|
|
|
|
|
* @return RevisionRecord
|
|
|
|
|
* @throws MWException
|
|
|
|
|
*/
|
|
|
|
|
public function newRevisionFromArchiveRow(
|
|
|
|
|
$row,
|
|
|
|
|
$queryFlags = 0,
|
|
|
|
|
Title $title = null,
|
|
|
|
|
array $overrides = []
|
|
|
|
|
) {
|
|
|
|
|
Assert::parameterType( 'object', $row, '$row' );
|
|
|
|
|
|
|
|
|
|
// check second argument, since Revision::newFromArchiveRow had $overrides in that spot.
|
|
|
|
|
Assert::parameterType( 'integer', $queryFlags, '$queryFlags' );
|
|
|
|
|
|
|
|
|
|
if ( !$title && isset( $overrides['title'] ) ) {
|
|
|
|
|
if ( !( $overrides['title'] instanceof Title ) ) {
|
|
|
|
|
throw new MWException( 'title field override must contain a Title object.' );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$title = $overrides['title'];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( !isset( $title ) ) {
|
|
|
|
|
if ( isset( $row->ar_namespace ) && isset( $row->ar_title ) ) {
|
|
|
|
|
$title = Title::makeTitle( $row->ar_namespace, $row->ar_title );
|
|
|
|
|
} else {
|
|
|
|
|
throw new InvalidArgumentException(
|
|
|
|
|
'A Title or ar_namespace and ar_title must be given'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach ( $overrides as $key => $value ) {
|
|
|
|
|
$field = "ar_$key";
|
|
|
|
|
$row->$field = $value;
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-12 17:12:29 +00:00
|
|
|
try {
|
|
|
|
|
$user = User::newFromAnyId(
|
2017-10-06 22:17:58 +00:00
|
|
|
$row->ar_user ?? null,
|
|
|
|
|
$row->ar_user_text ?? null,
|
|
|
|
|
$row->ar_actor ?? null
|
2017-09-12 17:12:29 +00:00
|
|
|
);
|
|
|
|
|
} catch ( InvalidArgumentException $ex ) {
|
|
|
|
|
wfWarn( __METHOD__ . ': ' . $ex->getMessage() );
|
|
|
|
|
$user = new UserIdentityValue( 0, '', 0 );
|
|
|
|
|
}
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2018-07-10 18:54:33 +00:00
|
|
|
$db = $this->getDBConnectionRefForQueryFlags( $queryFlags );
|
|
|
|
|
// Legacy because $row may have come from self::selectFields()
|
|
|
|
|
$comment = $this->commentStore->getCommentLegacy( $db, 'ar_comment', $row, true );
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
$slots = $this->newRevisionSlots( $row->ar_rev_id, $row, $queryFlags, $title );
|
2017-08-27 15:29:18 +00:00
|
|
|
|
|
|
|
|
return new RevisionArchiveRecord( $title, $user, $comment, $row, $slots, $this->wikiId );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2018-04-17 07:49:20 +00:00
|
|
|
* @see RevisionFactory::newRevisionFromRow
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
|
|
|
|
* MCR migration note: this replaces Revision::newFromRow
|
|
|
|
|
*
|
|
|
|
|
* @param object $row
|
|
|
|
|
* @param int $queryFlags
|
|
|
|
|
* @param Title|null $title
|
|
|
|
|
*
|
|
|
|
|
* @return RevisionRecord
|
|
|
|
|
*/
|
2018-04-17 07:49:20 +00:00
|
|
|
public function newRevisionFromRow( $row, $queryFlags = 0, Title $title = null ) {
|
2017-08-27 15:29:18 +00:00
|
|
|
Assert::parameterType( 'object', $row, '$row' );
|
|
|
|
|
|
|
|
|
|
if ( !$title ) {
|
2017-10-06 22:17:58 +00:00
|
|
|
$pageId = $row->rev_page ?? 0; // XXX: also check page_id?
|
|
|
|
|
$revId = $row->rev_id ?? 0;
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2017-12-28 13:14:39 +00:00
|
|
|
$title = $this->getTitle( $pageId, $revId, $queryFlags );
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( !isset( $row->page_latest ) ) {
|
|
|
|
|
$row->page_latest = $title->getLatestRevID();
|
|
|
|
|
if ( $row->page_latest === 0 && $title->exists() ) {
|
|
|
|
|
wfWarn( 'Encountered title object in limbo: ID ' . $title->getArticleID() );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-12 17:12:29 +00:00
|
|
|
try {
|
|
|
|
|
$user = User::newFromAnyId(
|
2017-10-06 22:17:58 +00:00
|
|
|
$row->rev_user ?? null,
|
|
|
|
|
$row->rev_user_text ?? null,
|
|
|
|
|
$row->rev_actor ?? null
|
2017-09-12 17:12:29 +00:00
|
|
|
);
|
|
|
|
|
} catch ( InvalidArgumentException $ex ) {
|
|
|
|
|
wfWarn( __METHOD__ . ': ' . $ex->getMessage() );
|
|
|
|
|
$user = new UserIdentityValue( 0, '', 0 );
|
|
|
|
|
}
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2018-07-10 18:54:33 +00:00
|
|
|
$db = $this->getDBConnectionRefForQueryFlags( $queryFlags );
|
|
|
|
|
// Legacy because $row may have come from self::selectFields()
|
|
|
|
|
$comment = $this->commentStore->getCommentLegacy( $db, 'rev_comment', $row, true );
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
$slots = $this->newRevisionSlots( $row->rev_id, $row, $queryFlags, $title );
|
2017-08-27 15:29:18 +00:00
|
|
|
|
|
|
|
|
return new RevisionStoreRecord( $title, $user, $comment, $row, $slots, $this->wikiId );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Constructs a new MutableRevisionRecord based on the given associative array following
|
|
|
|
|
* the MW1.29 convention for the Revision constructor.
|
|
|
|
|
*
|
|
|
|
|
* MCR migration note: this replaces Revision::newFromRow
|
|
|
|
|
*
|
|
|
|
|
* @param array $fields
|
|
|
|
|
* @param int $queryFlags
|
|
|
|
|
* @param Title|null $title
|
|
|
|
|
*
|
|
|
|
|
* @return MutableRevisionRecord
|
|
|
|
|
* @throws MWException
|
|
|
|
|
* @throws RevisionAccessException
|
|
|
|
|
*/
|
|
|
|
|
public function newMutableRevisionFromArray(
|
|
|
|
|
array $fields,
|
|
|
|
|
$queryFlags = 0,
|
|
|
|
|
Title $title = null
|
|
|
|
|
) {
|
|
|
|
|
if ( !$title && isset( $fields['title'] ) ) {
|
|
|
|
|
if ( !( $fields['title'] instanceof Title ) ) {
|
|
|
|
|
throw new MWException( 'title field must contain a Title object.' );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$title = $fields['title'];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( !$title ) {
|
2017-10-06 22:17:58 +00:00
|
|
|
$pageId = $fields['page'] ?? 0;
|
|
|
|
|
$revId = $fields['id'] ?? 0;
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2017-12-28 13:14:39 +00:00
|
|
|
$title = $this->getTitle( $pageId, $revId, $queryFlags );
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( !isset( $fields['page'] ) ) {
|
|
|
|
|
$fields['page'] = $title->getArticleID( $queryFlags );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// if we have a content object, use it to set the model and type
|
|
|
|
|
if ( !empty( $fields['content'] ) ) {
|
2018-04-17 07:49:20 +00:00
|
|
|
if ( !( $fields['content'] instanceof Content ) && !is_array( $fields['content'] ) ) {
|
|
|
|
|
throw new MWException(
|
|
|
|
|
'content field must contain a Content object or an array of Content objects.'
|
|
|
|
|
);
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
2018-04-17 07:49:20 +00:00
|
|
|
}
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
if ( !empty( $fields['text_id'] ) ) {
|
2018-06-26 17:26:33 +00:00
|
|
|
if ( !$this->hasMcrSchemaFlags( SCHEMA_COMPAT_READ_OLD ) ) {
|
|
|
|
|
throw new MWException( "The text_id field is only available in the pre-MCR schema" );
|
2018-04-17 07:49:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( !empty( $fields['content'] ) ) {
|
2017-08-27 15:29:18 +00:00
|
|
|
throw new MWException(
|
|
|
|
|
"Text already stored in external store (id {$fields['text_id']}), " .
|
2018-04-17 07:49:20 +00:00
|
|
|
"can't specify content object"
|
2017-08-27 15:29:18 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (
|
|
|
|
|
isset( $fields['comment'] )
|
|
|
|
|
&& !( $fields['comment'] instanceof CommentStoreComment )
|
|
|
|
|
) {
|
2017-10-06 22:17:58 +00:00
|
|
|
$commentData = $fields['comment_data'] ?? null;
|
2017-08-27 15:29:18 +00:00
|
|
|
|
|
|
|
|
if ( $fields['comment'] instanceof Message ) {
|
|
|
|
|
$fields['comment'] = CommentStoreComment::newUnsavedComment(
|
|
|
|
|
$fields['comment'],
|
|
|
|
|
$commentData
|
|
|
|
|
);
|
|
|
|
|
} else {
|
|
|
|
|
$commentText = trim( strval( $fields['comment'] ) );
|
|
|
|
|
$fields['comment'] = CommentStoreComment::newUnsavedComment(
|
|
|
|
|
$commentText,
|
|
|
|
|
$commentData
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$revision = new MutableRevisionRecord( $title, $this->wikiId );
|
|
|
|
|
$this->initializeMutableRevisionFromArray( $revision, $fields );
|
2018-04-17 07:49:20 +00:00
|
|
|
|
|
|
|
|
if ( isset( $fields['content'] ) && is_array( $fields['content'] ) ) {
|
|
|
|
|
foreach ( $fields['content'] as $role => $content ) {
|
|
|
|
|
$revision->setContent( $role, $content );
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$mainSlot = $this->emulateMainSlot_1_29( $fields, $queryFlags, $title );
|
|
|
|
|
$revision->setSlot( $mainSlot );
|
|
|
|
|
}
|
2017-08-27 15:29:18 +00:00
|
|
|
|
|
|
|
|
return $revision;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param MutableRevisionRecord $record
|
|
|
|
|
* @param array $fields
|
|
|
|
|
*/
|
|
|
|
|
private function initializeMutableRevisionFromArray(
|
|
|
|
|
MutableRevisionRecord $record,
|
|
|
|
|
array $fields
|
|
|
|
|
) {
|
|
|
|
|
/** @var UserIdentity $user */
|
|
|
|
|
$user = null;
|
|
|
|
|
|
|
|
|
|
if ( isset( $fields['user'] ) && ( $fields['user'] instanceof UserIdentity ) ) {
|
|
|
|
|
$user = $fields['user'];
|
2017-09-12 17:12:29 +00:00
|
|
|
} else {
|
|
|
|
|
try {
|
|
|
|
|
$user = User::newFromAnyId(
|
2017-10-06 22:17:58 +00:00
|
|
|
$fields['user'] ?? null,
|
|
|
|
|
$fields['user_text'] ?? null,
|
|
|
|
|
$fields['actor'] ?? null
|
2017-09-12 17:12:29 +00:00
|
|
|
);
|
|
|
|
|
} catch ( InvalidArgumentException $ex ) {
|
|
|
|
|
$user = null;
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( $user ) {
|
|
|
|
|
$record->setUser( $user );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$timestamp = isset( $fields['timestamp'] )
|
|
|
|
|
? strval( $fields['timestamp'] )
|
|
|
|
|
: wfTimestampNow(); // TODO: use a callback, so we can override it for testing.
|
|
|
|
|
|
|
|
|
|
$record->setTimestamp( $timestamp );
|
|
|
|
|
|
|
|
|
|
if ( isset( $fields['page'] ) ) {
|
|
|
|
|
$record->setPageId( intval( $fields['page'] ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( isset( $fields['id'] ) ) {
|
|
|
|
|
$record->setId( intval( $fields['id'] ) );
|
|
|
|
|
}
|
|
|
|
|
if ( isset( $fields['parent_id'] ) ) {
|
|
|
|
|
$record->setParentId( intval( $fields['parent_id'] ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( isset( $fields['sha1'] ) ) {
|
|
|
|
|
$record->setSha1( $fields['sha1'] );
|
|
|
|
|
}
|
|
|
|
|
if ( isset( $fields['size'] ) ) {
|
|
|
|
|
$record->setSize( intval( $fields['size'] ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( isset( $fields['minor_edit'] ) ) {
|
|
|
|
|
$record->setMinorEdit( intval( $fields['minor_edit'] ) !== 0 );
|
|
|
|
|
}
|
|
|
|
|
if ( isset( $fields['deleted'] ) ) {
|
|
|
|
|
$record->setVisibility( intval( $fields['deleted'] ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( isset( $fields['comment'] ) ) {
|
|
|
|
|
Assert::parameterType(
|
|
|
|
|
CommentStoreComment::class,
|
|
|
|
|
$fields['comment'],
|
|
|
|
|
'$row[\'comment\']'
|
|
|
|
|
);
|
|
|
|
|
$record->setComment( $fields['comment'] );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Load a page revision from a given revision ID number.
|
|
|
|
|
* Returns null if no such revision can be found.
|
|
|
|
|
*
|
|
|
|
|
* MCR migration note: this corresponds to Revision::loadFromId
|
|
|
|
|
*
|
|
|
|
|
* @note direct use is deprecated!
|
|
|
|
|
* @todo remove when unused! there seem to be no callers of Revision::loadFromId
|
|
|
|
|
*
|
|
|
|
|
* @param IDatabase $db
|
|
|
|
|
* @param int $id
|
|
|
|
|
*
|
|
|
|
|
* @return RevisionRecord|null
|
|
|
|
|
*/
|
|
|
|
|
public function loadRevisionFromId( IDatabase $db, $id ) {
|
|
|
|
|
return $this->loadRevisionFromConds( $db, [ 'rev_id' => intval( $id ) ] );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Load either the current, or a specified, revision
|
|
|
|
|
* that's attached to a given page. If not attached
|
|
|
|
|
* to that page, will return null.
|
|
|
|
|
*
|
|
|
|
|
* MCR migration note: this replaces Revision::loadFromPageId
|
|
|
|
|
*
|
|
|
|
|
* @note direct use is deprecated!
|
|
|
|
|
* @todo remove when unused!
|
|
|
|
|
*
|
|
|
|
|
* @param IDatabase $db
|
|
|
|
|
* @param int $pageid
|
|
|
|
|
* @param int $id
|
|
|
|
|
* @return RevisionRecord|null
|
|
|
|
|
*/
|
|
|
|
|
public function loadRevisionFromPageId( IDatabase $db, $pageid, $id = 0 ) {
|
|
|
|
|
$conds = [ 'rev_page' => intval( $pageid ), 'page_id' => intval( $pageid ) ];
|
|
|
|
|
if ( $id ) {
|
|
|
|
|
$conds['rev_id'] = intval( $id );
|
|
|
|
|
} else {
|
|
|
|
|
$conds[] = 'rev_id=page_latest';
|
|
|
|
|
}
|
|
|
|
|
return $this->loadRevisionFromConds( $db, $conds );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Load either the current, or a specified, revision
|
|
|
|
|
* that's attached to a given page. If not attached
|
|
|
|
|
* to that page, will return null.
|
|
|
|
|
*
|
|
|
|
|
* MCR migration note: this replaces Revision::loadFromTitle
|
|
|
|
|
*
|
|
|
|
|
* @note direct use is deprecated!
|
|
|
|
|
* @todo remove when unused!
|
|
|
|
|
*
|
|
|
|
|
* @param IDatabase $db
|
|
|
|
|
* @param Title $title
|
|
|
|
|
* @param int $id
|
|
|
|
|
*
|
|
|
|
|
* @return RevisionRecord|null
|
|
|
|
|
*/
|
|
|
|
|
public function loadRevisionFromTitle( IDatabase $db, $title, $id = 0 ) {
|
|
|
|
|
if ( $id ) {
|
|
|
|
|
$matchId = intval( $id );
|
|
|
|
|
} else {
|
|
|
|
|
$matchId = 'page_latest';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $this->loadRevisionFromConds(
|
|
|
|
|
$db,
|
|
|
|
|
[
|
|
|
|
|
"rev_id=$matchId",
|
|
|
|
|
'page_namespace' => $title->getNamespace(),
|
|
|
|
|
'page_title' => $title->getDBkey()
|
|
|
|
|
],
|
|
|
|
|
0,
|
|
|
|
|
$title
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Load the revision for the given title with the given timestamp.
|
|
|
|
|
* WARNING: Timestamps may in some circumstances not be unique,
|
|
|
|
|
* so this isn't the best key to use.
|
|
|
|
|
*
|
|
|
|
|
* MCR migration note: this replaces Revision::loadFromTimestamp
|
|
|
|
|
*
|
|
|
|
|
* @note direct use is deprecated! Use getRevisionFromTimestamp instead!
|
|
|
|
|
* @todo remove when unused!
|
|
|
|
|
*
|
|
|
|
|
* @param IDatabase $db
|
|
|
|
|
* @param Title $title
|
|
|
|
|
* @param string $timestamp
|
|
|
|
|
* @return RevisionRecord|null
|
|
|
|
|
*/
|
|
|
|
|
public function loadRevisionFromTimestamp( IDatabase $db, $title, $timestamp ) {
|
|
|
|
|
return $this->loadRevisionFromConds( $db,
|
|
|
|
|
[
|
|
|
|
|
'rev_timestamp' => $db->timestamp( $timestamp ),
|
|
|
|
|
'page_namespace' => $title->getNamespace(),
|
|
|
|
|
'page_title' => $title->getDBkey()
|
|
|
|
|
],
|
|
|
|
|
0,
|
|
|
|
|
$title
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Given a set of conditions, fetch a revision
|
|
|
|
|
*
|
|
|
|
|
* This method should be used if we are pretty sure the revision exists.
|
|
|
|
|
* Unless $flags has READ_LATEST set, this method will first try to find the revision
|
|
|
|
|
* on a replica before hitting the master database.
|
|
|
|
|
*
|
|
|
|
|
* MCR migration note: this corresponds to Revision::newFromConds
|
|
|
|
|
*
|
|
|
|
|
* @param array $conditions
|
|
|
|
|
* @param int $flags (optional)
|
2018-06-26 21:14:43 +00:00
|
|
|
* @param Title|null $title
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
|
|
|
|
* @return RevisionRecord|null
|
|
|
|
|
*/
|
|
|
|
|
private function newRevisionFromConds( $conditions, $flags = 0, Title $title = null ) {
|
2018-07-10 18:54:33 +00:00
|
|
|
$db = $this->getDBConnectionRefForQueryFlags( $flags );
|
2017-08-27 15:29:18 +00:00
|
|
|
$rev = $this->loadRevisionFromConds( $db, $conditions, $flags, $title );
|
|
|
|
|
|
|
|
|
|
$lb = $this->getDBLoadBalancer();
|
|
|
|
|
|
|
|
|
|
// Make sure new pending/committed revision are visibile later on
|
|
|
|
|
// within web requests to certain avoid bugs like T93866 and T94407.
|
|
|
|
|
if ( !$rev
|
|
|
|
|
&& !( $flags & self::READ_LATEST )
|
|
|
|
|
&& $lb->getServerCount() > 1
|
|
|
|
|
&& $lb->hasOrMadeRecentMasterChanges()
|
|
|
|
|
) {
|
|
|
|
|
$flags = self::READ_LATEST;
|
2018-07-10 18:54:33 +00:00
|
|
|
$dbw = $this->getDBConnection( DB_MASTER );
|
|
|
|
|
$rev = $this->loadRevisionFromConds( $dbw, $conditions, $flags, $title );
|
|
|
|
|
$this->releaseDBConnection( $dbw );
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $rev;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Given a set of conditions, fetch a revision from
|
|
|
|
|
* the given database connection.
|
|
|
|
|
*
|
|
|
|
|
* MCR migration note: this corresponds to Revision::loadFromConds
|
|
|
|
|
*
|
|
|
|
|
* @param IDatabase $db
|
|
|
|
|
* @param array $conditions
|
|
|
|
|
* @param int $flags (optional)
|
2018-06-26 21:14:43 +00:00
|
|
|
* @param Title|null $title
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
|
|
|
|
* @return RevisionRecord|null
|
|
|
|
|
*/
|
|
|
|
|
private function loadRevisionFromConds(
|
|
|
|
|
IDatabase $db,
|
|
|
|
|
$conditions,
|
|
|
|
|
$flags = 0,
|
|
|
|
|
Title $title = null
|
|
|
|
|
) {
|
|
|
|
|
$row = $this->fetchRevisionRowFromConds( $db, $conditions, $flags );
|
|
|
|
|
if ( $row ) {
|
|
|
|
|
$rev = $this->newRevisionFromRow( $row, $flags, $title );
|
|
|
|
|
|
|
|
|
|
return $rev;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Throws an exception if the given database connection does not belong to the wiki this
|
|
|
|
|
* RevisionStore is bound to.
|
|
|
|
|
*
|
|
|
|
|
* @param IDatabase $db
|
|
|
|
|
* @throws MWException
|
|
|
|
|
*/
|
|
|
|
|
private function checkDatabaseWikiId( IDatabase $db ) {
|
|
|
|
|
$storeWiki = $this->wikiId;
|
|
|
|
|
$dbWiki = $db->getDomainID();
|
|
|
|
|
|
|
|
|
|
if ( $dbWiki === $storeWiki ) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// XXX: we really want the default database ID...
|
|
|
|
|
$storeWiki = $storeWiki ?: wfWikiID();
|
|
|
|
|
$dbWiki = $dbWiki ?: wfWikiID();
|
|
|
|
|
|
2018-01-03 14:42:13 +00:00
|
|
|
if ( $dbWiki === $storeWiki ) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// HACK: counteract encoding imposed by DatabaseDomain
|
|
|
|
|
$storeWiki = str_replace( '?h', '-', $storeWiki );
|
|
|
|
|
$dbWiki = str_replace( '?h', '-', $dbWiki );
|
|
|
|
|
|
|
|
|
|
if ( $dbWiki === $storeWiki ) {
|
|
|
|
|
return;
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
2018-01-03 14:42:13 +00:00
|
|
|
|
|
|
|
|
throw new MWException( "RevisionStore for $storeWiki "
|
|
|
|
|
. "cannot be used with a DB connection for $dbWiki" );
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Given a set of conditions, return a row with the
|
|
|
|
|
* fields necessary to build RevisionRecord objects.
|
|
|
|
|
*
|
|
|
|
|
* MCR migration note: this corresponds to Revision::fetchFromConds
|
|
|
|
|
*
|
|
|
|
|
* @param IDatabase $db
|
|
|
|
|
* @param array $conditions
|
|
|
|
|
* @param int $flags (optional)
|
|
|
|
|
*
|
|
|
|
|
* @return object|false data row as a raw object
|
|
|
|
|
*/
|
|
|
|
|
private function fetchRevisionRowFromConds( IDatabase $db, $conditions, $flags = 0 ) {
|
|
|
|
|
$this->checkDatabaseWikiId( $db );
|
|
|
|
|
|
2018-01-29 15:54:02 +00:00
|
|
|
$revQuery = $this->getQueryInfo( [ 'page', 'user' ] );
|
2017-08-27 15:29:18 +00:00
|
|
|
$options = [];
|
|
|
|
|
if ( ( $flags & self::READ_LOCKING ) == self::READ_LOCKING ) {
|
|
|
|
|
$options[] = 'FOR UPDATE';
|
|
|
|
|
}
|
|
|
|
|
return $db->selectRow(
|
|
|
|
|
$revQuery['tables'],
|
|
|
|
|
$revQuery['fields'],
|
|
|
|
|
$conditions,
|
|
|
|
|
__METHOD__,
|
|
|
|
|
$options,
|
|
|
|
|
$revQuery['joins']
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-29 15:54:02 +00:00
|
|
|
/**
|
|
|
|
|
* Finds the ID of a content row for a given revision and slot role.
|
|
|
|
|
* This can be used to re-use content rows even while the content ID
|
2018-06-26 17:26:33 +00:00
|
|
|
* is still missing from SlotRecords, when writing to both the old and
|
|
|
|
|
* the new schema during MCR schema migration.
|
2018-01-29 15:54:02 +00:00
|
|
|
*
|
|
|
|
|
* @todo remove after MCR schema migration is complete.
|
|
|
|
|
*
|
|
|
|
|
* @param IDatabase $db
|
|
|
|
|
* @param int $revId
|
|
|
|
|
* @param string $role
|
|
|
|
|
*
|
|
|
|
|
* @return int|null
|
|
|
|
|
*/
|
|
|
|
|
private function findSlotContentId( IDatabase $db, $revId, $role ) {
|
2018-06-26 17:26:33 +00:00
|
|
|
if ( !$this->hasMcrSchemaFlags( SCHEMA_COMPAT_WRITE_NEW ) ) {
|
2018-01-29 15:54:02 +00:00
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
$roleId = $this->slotRoleStore->getId( $role );
|
|
|
|
|
$conditions = [
|
|
|
|
|
'slot_revision_id' => $revId,
|
|
|
|
|
'slot_role_id' => $roleId,
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$contentId = $db->selectField( 'slots', 'slot_content_id', $conditions, __METHOD__ );
|
|
|
|
|
|
|
|
|
|
return $contentId ?: null;
|
|
|
|
|
} catch ( NameTableAccessException $ex ) {
|
|
|
|
|
// If the role is missing from the slot_roles table,
|
|
|
|
|
// the corresponding row in slots cannot exist.
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-27 15:29:18 +00:00
|
|
|
/**
|
|
|
|
|
* Return the tables, fields, and join conditions to be selected to create
|
2018-04-17 07:49:20 +00:00
|
|
|
* a new RevisionStoreRecord object.
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
|
|
|
|
* MCR migration note: this replaces Revision::getQueryInfo
|
|
|
|
|
*
|
2018-01-29 15:54:02 +00:00
|
|
|
* If the format of fields returned changes in any way then the cache key provided by
|
|
|
|
|
* self::getRevisionRowCacheKey should be updated.
|
|
|
|
|
*
|
2017-08-27 15:29:18 +00:00
|
|
|
* @since 1.31
|
|
|
|
|
*
|
|
|
|
|
* @param array $options Any combination of the following strings
|
|
|
|
|
* - 'page': Join with the page table, and select fields to identify the page
|
|
|
|
|
* - 'user': Join with the user table, and select the user name
|
2018-04-17 07:49:20 +00:00
|
|
|
* - 'text': Join with the text table, and select fields to load page text. This
|
2018-06-26 17:26:33 +00:00
|
|
|
* option is deprecated in MW 1.32 when the MCR migration flag SCHEMA_COMPAT_WRITE_NEW
|
|
|
|
|
* is set, and disallowed when SCHEMA_COMPAT_READ_OLD is not set.
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
|
|
|
|
* @return 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()`
|
|
|
|
|
*/
|
|
|
|
|
public function getQueryInfo( $options = [] ) {
|
|
|
|
|
$ret = [
|
|
|
|
|
'tables' => [],
|
|
|
|
|
'fields' => [],
|
|
|
|
|
'joins' => [],
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$ret['tables'][] = 'revision';
|
|
|
|
|
$ret['fields'] = array_merge( $ret['fields'], [
|
|
|
|
|
'rev_id',
|
|
|
|
|
'rev_page',
|
|
|
|
|
'rev_timestamp',
|
|
|
|
|
'rev_minor_edit',
|
|
|
|
|
'rev_deleted',
|
|
|
|
|
'rev_len',
|
|
|
|
|
'rev_parent_id',
|
|
|
|
|
'rev_sha1',
|
|
|
|
|
] );
|
|
|
|
|
|
2018-01-29 14:25:49 +00:00
|
|
|
$commentQuery = $this->commentStore->getJoin( 'rev_comment' );
|
2017-08-27 15:29:18 +00:00
|
|
|
$ret['tables'] = array_merge( $ret['tables'], $commentQuery['tables'] );
|
|
|
|
|
$ret['fields'] = array_merge( $ret['fields'], $commentQuery['fields'] );
|
|
|
|
|
$ret['joins'] = array_merge( $ret['joins'], $commentQuery['joins'] );
|
|
|
|
|
|
2017-09-12 17:12:29 +00:00
|
|
|
$actorQuery = $this->actorMigration->getJoin( 'rev_user' );
|
|
|
|
|
$ret['tables'] = array_merge( $ret['tables'], $actorQuery['tables'] );
|
|
|
|
|
$ret['fields'] = array_merge( $ret['fields'], $actorQuery['fields'] );
|
|
|
|
|
$ret['joins'] = array_merge( $ret['joins'], $actorQuery['joins'] );
|
|
|
|
|
|
2018-06-26 17:26:33 +00:00
|
|
|
if ( $this->hasMcrSchemaFlags( SCHEMA_COMPAT_READ_OLD ) ) {
|
2018-01-29 15:54:02 +00:00
|
|
|
$ret['fields'][] = 'rev_text_id';
|
|
|
|
|
|
|
|
|
|
if ( $this->contentHandlerUseDB ) {
|
|
|
|
|
$ret['fields'][] = 'rev_content_format';
|
|
|
|
|
$ret['fields'][] = 'rev_content_model';
|
|
|
|
|
}
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( in_array( 'page', $options, true ) ) {
|
|
|
|
|
$ret['tables'][] = 'page';
|
|
|
|
|
$ret['fields'] = array_merge( $ret['fields'], [
|
|
|
|
|
'page_namespace',
|
|
|
|
|
'page_title',
|
|
|
|
|
'page_id',
|
|
|
|
|
'page_latest',
|
|
|
|
|
'page_is_redirect',
|
|
|
|
|
'page_len',
|
|
|
|
|
] );
|
|
|
|
|
$ret['joins']['page'] = [ 'INNER JOIN', [ 'page_id = rev_page' ] ];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( in_array( 'user', $options, true ) ) {
|
|
|
|
|
$ret['tables'][] = 'user';
|
|
|
|
|
$ret['fields'] = array_merge( $ret['fields'], [
|
|
|
|
|
'user_name',
|
|
|
|
|
] );
|
2017-09-12 17:12:29 +00:00
|
|
|
$u = $actorQuery['fields']['rev_user'];
|
|
|
|
|
$ret['joins']['user'] = [ 'LEFT JOIN', [ "$u != 0", "user_id = $u" ] ];
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( in_array( 'text', $options, true ) ) {
|
2018-06-26 17:26:33 +00:00
|
|
|
if ( !$this->hasMcrSchemaFlags( SCHEMA_COMPAT_WRITE_OLD ) ) {
|
2018-01-29 15:54:02 +00:00
|
|
|
throw new InvalidArgumentException( 'text table can no longer be joined directly' );
|
2018-06-26 17:26:33 +00:00
|
|
|
} elseif ( !$this->hasMcrSchemaFlags( SCHEMA_COMPAT_READ_OLD ) ) {
|
|
|
|
|
// NOTE: even when this class is set to not read from the old schema, callers
|
|
|
|
|
// should still be able to join against the text table, as long as we are still
|
|
|
|
|
// writing the old schema for compatibility.
|
2018-08-03 11:21:41 +00:00
|
|
|
// TODO: This should trigger a deprecation warning eventually (T200918), but not
|
|
|
|
|
// before all known usages are removed (see T198341 and T201164).
|
|
|
|
|
// wfDeprecated( __METHOD__ . ' with `text` option', '1.32' );
|
2018-01-29 15:54:02 +00:00
|
|
|
}
|
|
|
|
|
|
2017-08-27 15:29:18 +00:00
|
|
|
$ret['tables'][] = 'text';
|
|
|
|
|
$ret['fields'] = array_merge( $ret['fields'], [
|
|
|
|
|
'old_text',
|
|
|
|
|
'old_flags'
|
|
|
|
|
] );
|
|
|
|
|
$ret['joins']['text'] = [ 'INNER JOIN', [ 'rev_text_id=old_id' ] ];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Return the tables, fields, and join conditions to be selected to create
|
2018-04-17 07:49:20 +00:00
|
|
|
* a new SlotRecord.
|
|
|
|
|
*
|
|
|
|
|
* @since 1.32
|
|
|
|
|
*
|
|
|
|
|
* @param array $options Any combination of the following strings
|
|
|
|
|
* - 'content': Join with the content table, and select content meta-data fields
|
|
|
|
|
*
|
|
|
|
|
* @return 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()`
|
|
|
|
|
*/
|
|
|
|
|
public function getSlotsQueryInfo( $options = [] ) {
|
|
|
|
|
$ret = [
|
|
|
|
|
'tables' => [],
|
|
|
|
|
'fields' => [],
|
|
|
|
|
'joins' => [],
|
|
|
|
|
];
|
|
|
|
|
|
2018-06-26 17:26:33 +00:00
|
|
|
if ( $this->hasMcrSchemaFlags( SCHEMA_COMPAT_READ_OLD ) ) {
|
2018-04-17 07:49:20 +00:00
|
|
|
$db = $this->getDBConnectionRef( DB_REPLICA );
|
|
|
|
|
$ret['tables']['slots'] = 'revision';
|
|
|
|
|
|
|
|
|
|
$ret['fields']['slot_revision_id'] = 'slots.rev_id';
|
|
|
|
|
$ret['fields']['slot_content_id'] = 'NULL';
|
|
|
|
|
$ret['fields']['slot_origin'] = 'slots.rev_id';
|
|
|
|
|
$ret['fields']['role_name'] = $db->addQuotes( 'main' );
|
|
|
|
|
|
|
|
|
|
if ( in_array( 'content', $options, true ) ) {
|
|
|
|
|
$ret['fields']['content_size'] = 'slots.rev_len';
|
|
|
|
|
$ret['fields']['content_sha1'] = 'slots.rev_sha1';
|
|
|
|
|
$ret['fields']['content_address']
|
|
|
|
|
= $db->buildConcat( [ $db->addQuotes( 'tt:' ), 'slots.rev_text_id' ] );
|
|
|
|
|
|
|
|
|
|
if ( $this->contentHandlerUseDB ) {
|
|
|
|
|
$ret['fields']['model_name'] = 'slots.rev_content_model';
|
|
|
|
|
} else {
|
|
|
|
|
$ret['fields']['model_name'] = 'NULL';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
$ret['tables'][] = 'slots';
|
|
|
|
|
$ret['tables'][] = 'slot_roles';
|
|
|
|
|
$ret['fields'] = array_merge( $ret['fields'], [
|
|
|
|
|
'slot_revision_id',
|
|
|
|
|
'slot_content_id',
|
|
|
|
|
'slot_origin',
|
|
|
|
|
'role_name'
|
|
|
|
|
] );
|
|
|
|
|
$ret['joins']['slot_roles'] = [ 'INNER JOIN', [ 'slot_role_id = role_id' ] ];
|
|
|
|
|
|
|
|
|
|
if ( in_array( 'content', $options, true ) ) {
|
|
|
|
|
$ret['tables'][] = 'content';
|
|
|
|
|
$ret['tables'][] = 'content_models';
|
|
|
|
|
$ret['fields'] = array_merge( $ret['fields'], [
|
|
|
|
|
'content_size',
|
|
|
|
|
'content_sha1',
|
|
|
|
|
'content_address',
|
|
|
|
|
'model_name'
|
|
|
|
|
] );
|
|
|
|
|
$ret['joins']['content'] = [ 'INNER JOIN', [ 'slot_content_id = content_id' ] ];
|
|
|
|
|
$ret['joins']['content_models'] = [ 'INNER JOIN', [ 'content_model = model_id' ] ];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Return the tables, fields, and join conditions to be selected to create
|
|
|
|
|
* a new RevisionArchiveRecord object.
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
|
|
|
|
* MCR migration note: this replaces Revision::getArchiveQueryInfo
|
|
|
|
|
*
|
|
|
|
|
* @since 1.31
|
|
|
|
|
*
|
|
|
|
|
* @return 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()`
|
|
|
|
|
*/
|
|
|
|
|
public function getArchiveQueryInfo() {
|
2018-01-29 14:25:49 +00:00
|
|
|
$commentQuery = $this->commentStore->getJoin( 'ar_comment' );
|
2017-09-12 17:12:29 +00:00
|
|
|
$actorQuery = $this->actorMigration->getJoin( 'ar_user' );
|
2017-08-27 15:29:18 +00:00
|
|
|
$ret = [
|
2017-09-12 17:12:29 +00:00
|
|
|
'tables' => [ 'archive' ] + $commentQuery['tables'] + $actorQuery['tables'],
|
2017-08-27 15:29:18 +00:00
|
|
|
'fields' => [
|
|
|
|
|
'ar_id',
|
|
|
|
|
'ar_page_id',
|
|
|
|
|
'ar_namespace',
|
|
|
|
|
'ar_title',
|
|
|
|
|
'ar_rev_id',
|
|
|
|
|
'ar_timestamp',
|
|
|
|
|
'ar_minor_edit',
|
|
|
|
|
'ar_deleted',
|
|
|
|
|
'ar_len',
|
|
|
|
|
'ar_parent_id',
|
|
|
|
|
'ar_sha1',
|
2017-09-12 17:12:29 +00:00
|
|
|
] + $commentQuery['fields'] + $actorQuery['fields'],
|
|
|
|
|
'joins' => $commentQuery['joins'] + $actorQuery['joins'],
|
2017-08-27 15:29:18 +00:00
|
|
|
];
|
|
|
|
|
|
2018-06-26 17:26:33 +00:00
|
|
|
if ( $this->hasMcrSchemaFlags( SCHEMA_COMPAT_READ_OLD ) ) {
|
2018-01-29 15:54:02 +00:00
|
|
|
$ret['fields'][] = 'ar_text_id';
|
|
|
|
|
|
|
|
|
|
if ( $this->contentHandlerUseDB ) {
|
|
|
|
|
$ret['fields'][] = 'ar_content_format';
|
|
|
|
|
$ret['fields'][] = 'ar_content_model';
|
|
|
|
|
}
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Do a batched query for the sizes of a set of revisions.
|
|
|
|
|
*
|
|
|
|
|
* MCR migration note: this replaces Revision::getParentLengths
|
|
|
|
|
*
|
2017-12-27 15:46:03 +00:00
|
|
|
* @param int[] $revIds
|
|
|
|
|
* @return int[] associative array mapping revision IDs from $revIds to the nominal size
|
|
|
|
|
* of the corresponding revision.
|
|
|
|
|
*/
|
|
|
|
|
public function getRevisionSizes( array $revIds ) {
|
|
|
|
|
return $this->listRevisionSizes( $this->getDBConnection( DB_REPLICA ), $revIds );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Do a batched query for the sizes of a set of revisions.
|
|
|
|
|
*
|
|
|
|
|
* MCR migration note: this replaces Revision::getParentLengths
|
|
|
|
|
*
|
|
|
|
|
* @deprecated use RevisionStore::getRevisionSizes instead.
|
|
|
|
|
*
|
2017-08-27 15:29:18 +00:00
|
|
|
* @param IDatabase $db
|
|
|
|
|
* @param int[] $revIds
|
|
|
|
|
* @return int[] associative array mapping revision IDs from $revIds to the nominal size
|
|
|
|
|
* of the corresponding revision.
|
|
|
|
|
*/
|
|
|
|
|
public function listRevisionSizes( IDatabase $db, array $revIds ) {
|
|
|
|
|
$this->checkDatabaseWikiId( $db );
|
|
|
|
|
|
|
|
|
|
$revLens = [];
|
|
|
|
|
if ( !$revIds ) {
|
|
|
|
|
return $revLens; // empty
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$res = $db->select(
|
|
|
|
|
'revision',
|
|
|
|
|
[ 'rev_id', 'rev_len' ],
|
|
|
|
|
[ 'rev_id' => $revIds ],
|
|
|
|
|
__METHOD__
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
foreach ( $res as $row ) {
|
|
|
|
|
$revLens[$row->rev_id] = intval( $row->rev_len );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $revLens;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get previous revision for this title
|
|
|
|
|
*
|
|
|
|
|
* MCR migration note: this replaces Revision::getPrevious
|
|
|
|
|
*
|
|
|
|
|
* @param RevisionRecord $rev
|
2018-06-26 21:14:43 +00:00
|
|
|
* @param Title|null $title if known (optional)
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
|
|
|
|
* @return RevisionRecord|null
|
|
|
|
|
*/
|
2018-01-10 12:23:06 +00:00
|
|
|
public function getPreviousRevision( RevisionRecord $rev, Title $title = null ) {
|
|
|
|
|
if ( $title === null ) {
|
|
|
|
|
$title = $this->getTitle( $rev->getPageId(), $rev->getId() );
|
|
|
|
|
}
|
2017-08-27 15:29:18 +00:00
|
|
|
$prev = $title->getPreviousRevisionID( $rev->getId() );
|
|
|
|
|
if ( $prev ) {
|
|
|
|
|
return $this->getRevisionByTitle( $title, $prev );
|
|
|
|
|
}
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get next revision for this title
|
|
|
|
|
*
|
|
|
|
|
* MCR migration note: this replaces Revision::getNext
|
|
|
|
|
*
|
|
|
|
|
* @param RevisionRecord $rev
|
2018-06-26 21:14:43 +00:00
|
|
|
* @param Title|null $title if known (optional)
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
|
|
|
|
* @return RevisionRecord|null
|
|
|
|
|
*/
|
2018-01-10 12:23:06 +00:00
|
|
|
public function getNextRevision( RevisionRecord $rev, Title $title = null ) {
|
|
|
|
|
if ( $title === null ) {
|
|
|
|
|
$title = $this->getTitle( $rev->getPageId(), $rev->getId() );
|
|
|
|
|
}
|
2017-08-27 15:29:18 +00:00
|
|
|
$next = $title->getNextRevisionID( $rev->getId() );
|
|
|
|
|
if ( $next ) {
|
|
|
|
|
return $this->getRevisionByTitle( $title, $next );
|
|
|
|
|
}
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get previous revision Id for this page_id
|
|
|
|
|
* This is used to populate rev_parent_id on save
|
|
|
|
|
*
|
|
|
|
|
* MCR migration note: this corresponds to Revision::getPreviousRevisionId
|
|
|
|
|
*
|
|
|
|
|
* @param IDatabase $db
|
|
|
|
|
* @param RevisionRecord $rev
|
|
|
|
|
*
|
|
|
|
|
* @return int
|
|
|
|
|
*/
|
|
|
|
|
private function getPreviousRevisionId( IDatabase $db, RevisionRecord $rev ) {
|
|
|
|
|
$this->checkDatabaseWikiId( $db );
|
|
|
|
|
|
|
|
|
|
if ( $rev->getPageId() === null ) {
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
# Use page_latest if ID is not given
|
|
|
|
|
if ( !$rev->getId() ) {
|
|
|
|
|
$prevId = $db->selectField(
|
|
|
|
|
'page', 'page_latest',
|
|
|
|
|
[ 'page_id' => $rev->getPageId() ],
|
|
|
|
|
__METHOD__
|
|
|
|
|
);
|
|
|
|
|
} else {
|
|
|
|
|
$prevId = $db->selectField(
|
|
|
|
|
'revision', 'rev_id',
|
|
|
|
|
[ 'rev_page' => $rev->getPageId(), 'rev_id < ' . $rev->getId() ],
|
|
|
|
|
__METHOD__,
|
|
|
|
|
[ 'ORDER BY' => 'rev_id DESC' ]
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
return intval( $prevId );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get rev_timestamp from rev_id, without loading the rest of the row
|
|
|
|
|
*
|
|
|
|
|
* MCR migration note: this replaces Revision::getTimestampFromId
|
|
|
|
|
*
|
|
|
|
|
* @param Title $title
|
|
|
|
|
* @param int $id
|
|
|
|
|
* @param int $flags
|
|
|
|
|
* @return string|bool False if not found
|
|
|
|
|
*/
|
|
|
|
|
public function getTimestampFromId( $title, $id, $flags = 0 ) {
|
2018-07-10 18:54:33 +00:00
|
|
|
$db = $this->getDBConnectionRefForQueryFlags( $flags );
|
2017-08-27 15:29:18 +00:00
|
|
|
|
|
|
|
|
$conds = [ 'rev_id' => $id ];
|
|
|
|
|
$conds['rev_page'] = $title->getArticleID();
|
|
|
|
|
$timestamp = $db->selectField( 'revision', 'rev_timestamp', $conds, __METHOD__ );
|
|
|
|
|
|
|
|
|
|
return ( $timestamp !== false ) ? wfTimestamp( TS_MW, $timestamp ) : false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get count of revisions per page...not very efficient
|
|
|
|
|
*
|
|
|
|
|
* MCR migration note: this replaces Revision::countByPageId
|
|
|
|
|
*
|
|
|
|
|
* @param IDatabase $db
|
|
|
|
|
* @param int $id Page id
|
|
|
|
|
* @return int
|
|
|
|
|
*/
|
|
|
|
|
public function countRevisionsByPageId( IDatabase $db, $id ) {
|
|
|
|
|
$this->checkDatabaseWikiId( $db );
|
|
|
|
|
|
|
|
|
|
$row = $db->selectRow( 'revision',
|
|
|
|
|
[ 'revCount' => 'COUNT(*)' ],
|
|
|
|
|
[ 'rev_page' => $id ],
|
|
|
|
|
__METHOD__
|
|
|
|
|
);
|
|
|
|
|
if ( $row ) {
|
|
|
|
|
return intval( $row->revCount );
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get count of revisions per page...not very efficient
|
|
|
|
|
*
|
|
|
|
|
* MCR migration note: this replaces Revision::countByTitle
|
|
|
|
|
*
|
|
|
|
|
* @param IDatabase $db
|
|
|
|
|
* @param Title $title
|
|
|
|
|
* @return int
|
|
|
|
|
*/
|
|
|
|
|
public function countRevisionsByTitle( IDatabase $db, $title ) {
|
|
|
|
|
$id = $title->getArticleID();
|
|
|
|
|
if ( $id ) {
|
|
|
|
|
return $this->countRevisionsByPageId( $db, $id );
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Check if no edits were made by other users since
|
|
|
|
|
* the time a user started editing the page. Limit to
|
|
|
|
|
* 50 revisions for the sake of performance.
|
|
|
|
|
*
|
|
|
|
|
* MCR migration note: this replaces Revision::userWasLastToEdit
|
|
|
|
|
*
|
|
|
|
|
* @deprecated since 1.31; Can possibly be removed, since the self-conflict suppression
|
|
|
|
|
* logic in EditPage that uses this seems conceptually dubious. Revision::userWasLastToEdit
|
|
|
|
|
* has been deprecated since 1.24.
|
|
|
|
|
*
|
|
|
|
|
* @param IDatabase $db The Database to perform the check on.
|
|
|
|
|
* @param int $pageId The ID of the page in question
|
|
|
|
|
* @param int $userId The ID of the user in question
|
|
|
|
|
* @param string $since Look at edits since this time
|
|
|
|
|
*
|
|
|
|
|
* @return bool True if the given user was the only one to edit since the given timestamp
|
|
|
|
|
*/
|
|
|
|
|
public function userWasLastToEdit( IDatabase $db, $pageId, $userId, $since ) {
|
|
|
|
|
$this->checkDatabaseWikiId( $db );
|
|
|
|
|
|
|
|
|
|
if ( !$userId ) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-29 15:54:02 +00:00
|
|
|
$revQuery = $this->getQueryInfo();
|
2017-08-27 15:29:18 +00:00
|
|
|
$res = $db->select(
|
2017-09-12 17:12:29 +00:00
|
|
|
$revQuery['tables'],
|
|
|
|
|
[
|
|
|
|
|
'rev_user' => $revQuery['fields']['rev_user'],
|
|
|
|
|
],
|
2017-08-27 15:29:18 +00:00
|
|
|
[
|
|
|
|
|
'rev_page' => $pageId,
|
|
|
|
|
'rev_timestamp > ' . $db->addQuotes( $db->timestamp( $since ) )
|
|
|
|
|
],
|
|
|
|
|
__METHOD__,
|
2017-09-12 17:12:29 +00:00
|
|
|
[ 'ORDER BY' => 'rev_timestamp ASC', 'LIMIT' => 50 ],
|
|
|
|
|
$revQuery['joins']
|
2017-08-27 15:29:18 +00:00
|
|
|
);
|
|
|
|
|
foreach ( $res as $row ) {
|
|
|
|
|
if ( $row->rev_user != $userId ) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Load a revision based on a known page ID and current revision ID from the DB
|
|
|
|
|
*
|
|
|
|
|
* This method allows for the use of caching, though accessing anything that normally
|
|
|
|
|
* requires permission checks (aside from the text) will trigger a small DB lookup.
|
|
|
|
|
*
|
|
|
|
|
* MCR migration note: this replaces Revision::newKnownCurrent
|
|
|
|
|
*
|
|
|
|
|
* @param Title $title the associated page title
|
|
|
|
|
* @param int $revId current revision of this page. Defaults to $title->getLatestRevID().
|
|
|
|
|
*
|
|
|
|
|
* @return RevisionRecord|bool Returns false if missing
|
|
|
|
|
*/
|
|
|
|
|
public function getKnownCurrentRevision( Title $title, $revId ) {
|
|
|
|
|
$db = $this->getDBConnectionRef( DB_REPLICA );
|
|
|
|
|
|
|
|
|
|
$pageId = $title->getArticleID();
|
|
|
|
|
|
|
|
|
|
if ( !$pageId ) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( !$revId ) {
|
|
|
|
|
$revId = $title->getLatestRevID();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( !$revId ) {
|
|
|
|
|
wfWarn(
|
|
|
|
|
'No latest revision known for page ' . $title->getPrefixedDBkey()
|
|
|
|
|
. ' even though it exists with page ID ' . $pageId
|
|
|
|
|
);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$row = $this->cache->getWithSetCallback(
|
|
|
|
|
// Page/rev IDs passed in from DB to reflect history merges
|
2018-01-29 15:54:02 +00:00
|
|
|
$this->getRevisionRowCacheKey( $db, $pageId, $revId ),
|
2017-08-27 15:29:18 +00:00
|
|
|
WANObjectCache::TTL_WEEK,
|
|
|
|
|
function ( $curValue, &$ttl, array &$setOpts ) use ( $db, $pageId, $revId ) {
|
|
|
|
|
$setOpts += Database::getCacheSetOptions( $db );
|
|
|
|
|
|
|
|
|
|
$conds = [
|
|
|
|
|
'rev_page' => intval( $pageId ),
|
|
|
|
|
'page_id' => intval( $pageId ),
|
|
|
|
|
'rev_id' => intval( $revId ),
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$row = $this->fetchRevisionRowFromConds( $db, $conds );
|
|
|
|
|
return $row ?: false; // don't cache negatives
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// Reflect revision deletion and user renames
|
|
|
|
|
if ( $row ) {
|
|
|
|
|
return $this->newRevisionFromRow( $row, 0, $title );
|
|
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-29 15:54:02 +00:00
|
|
|
/**
|
|
|
|
|
* Get a cache key for use with a row as selected with getQueryInfo( [ 'page', 'user' ] )
|
|
|
|
|
* Caching rows without 'page' or 'user' could lead to issues.
|
|
|
|
|
* If the format of the rows returned by the query provided by getQueryInfo changes the
|
|
|
|
|
* cache key should be updated to avoid conflicts.
|
|
|
|
|
*
|
|
|
|
|
* @param IDatabase $db
|
|
|
|
|
* @param int $pageId
|
|
|
|
|
* @param int $revId
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
|
|
|
|
private function getRevisionRowCacheKey( IDatabase $db, $pageId, $revId ) {
|
|
|
|
|
return $this->cache->makeGlobalKey(
|
|
|
|
|
self::ROW_CACHE_KEY,
|
|
|
|
|
$db->getDomainID(),
|
|
|
|
|
$pageId,
|
|
|
|
|
$revId
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-27 15:29:18 +00:00
|
|
|
// TODO: move relevant methods from Title here, e.g. getFirstRevision, isBigDeletion, etc.
|
|
|
|
|
|
|
|
|
|
}
|