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
|
2021-05-02 23:55:07 +00:00
|
|
|
* of that file for original authorship (that file was removed entirely in 1.37,
|
|
|
|
|
* but its history can still be found in prior versions of MediaWiki).
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
|
|
|
|
* @file
|
|
|
|
|
*/
|
|
|
|
|
|
2018-09-20 17:29:04 +00:00
|
|
|
namespace MediaWiki\Revision;
|
2017-08-27 15:29:18 +00:00
|
|
|
|
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 DBAccessObjectUtils;
|
2020-07-19 19:50:37 +00:00
|
|
|
use FallbackContent;
|
2017-12-28 15:30:05 +00:00
|
|
|
use IDBAccessObject;
|
2017-08-27 15:29:18 +00:00
|
|
|
use InvalidArgumentException;
|
2021-03-07 04:41:19 +00:00
|
|
|
use LogicException;
|
2020-01-18 20:25:04 +00:00
|
|
|
use MediaWiki\Content\IContentHandlerFactory;
|
2021-02-04 17:44:39 +00:00
|
|
|
use MediaWiki\DAO\WikiAwareEntity;
|
Hooks::run() call site migration
Migrate all callers of Hooks::run() to use the new
HookContainer/HookRunner system.
General principles:
* Use DI if it is already used. We're not changing the way state is
managed in this patch.
* HookContainer is always injected, not HookRunner. HookContainer
is a service, it's a more generic interface, it is the only
thing that provides isRegistered() which is needed in some cases,
and a HookRunner can be efficiently constructed from it
(confirmed by benchmark). Because HookContainer is needed
for object construction, it is also needed by all factories.
* "Ask your friendly local base class". Big hierarchies like
SpecialPage and ApiBase have getHookContainer() and getHookRunner()
methods in the base class, and classes that extend that base class
are not expected to know or care where the base class gets its
HookContainer from.
* ProtectedHookAccessorTrait provides protected getHookContainer() and
getHookRunner() methods, getting them from the global service
container. The point of this is to ease migration to DI by ensuring
that call sites ask their local friendly base class rather than
getting a HookRunner from the service container directly.
* Private $this->hookRunner. In some smaller classes where accessor
methods did not seem warranted, there is a private HookRunner property
which is accessed directly. Very rarely (two cases), there is a
protected property, for consistency with code that conventionally
assumes protected=private, but in cases where the class might actually
be overridden, a protected accessor is preferred over a protected
property.
* The last resort: Hooks::runner(). Mostly for static, file-scope and
global code. In a few cases it was used for objects with broken
construction schemes, out of horror or laziness.
Constructors with new required arguments:
* AuthManager
* BadFileLookup
* BlockManager
* ClassicInterwikiLookup
* ContentHandlerFactory
* ContentSecurityPolicy
* DefaultOptionsManager
* DerivedPageDataUpdater
* FullSearchResultWidget
* HtmlCacheUpdater
* LanguageFactory
* LanguageNameUtils
* LinkRenderer
* LinkRendererFactory
* LocalisationCache
* MagicWordFactory
* MessageCache
* NamespaceInfo
* PageEditStash
* PageHandlerFactory
* PageUpdater
* ParserFactory
* PermissionManager
* RevisionStore
* RevisionStoreFactory
* SearchEngineConfig
* SearchEngineFactory
* SearchFormWidget
* SearchNearMatcher
* SessionBackend
* SpecialPageFactory
* UserNameUtils
* UserOptionsManager
* WatchedItemQueryService
* WatchedItemStore
Constructors with new optional arguments:
* DefaultPreferencesFactory
* Language
* LinkHolderArray
* MovePage
* Parser
* ParserCache
* PasswordReset
* Router
setHookContainer() now required after construction:
* AuthenticationProvider
* ResourceLoaderModule
* SearchEngine
Change-Id: Id442b0dbe43aba84bd5cf801d86dedc768b082c7
2020-03-19 02:42:09 +00:00
|
|
|
use MediaWiki\HookContainer\HookContainer;
|
|
|
|
|
use MediaWiki\HookContainer\HookRunner;
|
2017-08-27 15:29:18 +00:00
|
|
|
use MediaWiki\Linker\LinkTarget;
|
2021-01-20 21:03:12 +00:00
|
|
|
use MediaWiki\Page\LegacyArticleIdAccess;
|
|
|
|
|
use MediaWiki\Page\PageIdentity;
|
2021-03-15 18:09:19 +00:00
|
|
|
use MediaWiki\Page\PageIdentityValue;
|
2021-03-17 22:13:35 +00:00
|
|
|
use MediaWiki\Page\PageStore;
|
2021-01-11 22:51:30 +00:00
|
|
|
use MediaWiki\Permissions\Authority;
|
2018-09-20 17:29:04 +00:00
|
|
|
use MediaWiki\Storage\BlobAccessException;
|
|
|
|
|
use MediaWiki\Storage\BlobStore;
|
|
|
|
|
use MediaWiki\Storage\NameTableStore;
|
2021-03-07 04:41:19 +00:00
|
|
|
use MediaWiki\Storage\RevisionSlotsUpdate;
|
2018-09-20 17:29:04 +00:00
|
|
|
use MediaWiki\Storage\SqlBlobStore;
|
2021-02-04 02:43:09 +00:00
|
|
|
use MediaWiki\User\ActorStore;
|
2017-08-27 15:29:18 +00:00
|
|
|
use MediaWiki\User\UserIdentity;
|
|
|
|
|
use MWException;
|
2020-04-02 20:00:24 +00:00
|
|
|
use MWTimestamp;
|
2017-08-27 15:29:18 +00:00
|
|
|
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-10-04 10:49:50 +00:00
|
|
|
use RuntimeException;
|
2019-08-30 18:26:00 +00:00
|
|
|
use StatusValue;
|
2021-07-30 16:29:14 +00:00
|
|
|
use stdClass;
|
2017-08-27 15:29:18 +00:00
|
|
|
use Title;
|
2021-03-15 18:09:19 +00:00
|
|
|
use TitleFactory;
|
2019-08-30 18:26:00 +00:00
|
|
|
use Traversable;
|
2017-08-27 15:29:18 +00:00
|
|
|
use WANObjectCache;
|
|
|
|
|
use Wikimedia\Assert\Assert;
|
2019-06-25 18:53:15 +00:00
|
|
|
use Wikimedia\IPUtils;
|
2017-08-27 15:29:18 +00:00
|
|
|
use Wikimedia\Rdbms\Database;
|
|
|
|
|
use Wikimedia\Rdbms\DBConnRef;
|
|
|
|
|
use Wikimedia\Rdbms\IDatabase;
|
2018-06-27 12:16:35 +00:00
|
|
|
use Wikimedia\Rdbms\ILoadBalancer;
|
2019-07-04 19:56:31 +00:00
|
|
|
use Wikimedia\Rdbms\IResultWrapper;
|
2017-08-27 15:29:18 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Service for looking up page revisions.
|
|
|
|
|
*
|
|
|
|
|
* @since 1.31
|
2018-09-20 17:29:04 +00:00
|
|
|
* @since 1.32 Renamed from MediaWiki\Storage\RevisionStore
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
|
|
|
|
* @note This was written to act as a drop-in replacement for the corresponding
|
2021-05-02 23:55:07 +00:00
|
|
|
* static methods in the old Revision class (which was later removed in 1.37).
|
2017-08-27 15:29:18 +00:00
|
|
|
*/
|
2018-01-10 16:05:46 +00:00
|
|
|
class RevisionStore
|
|
|
|
|
implements IDBAccessObject, RevisionFactory, RevisionLookup, LoggerAwareInterface {
|
2021-02-08 16:33:25 +00:00
|
|
|
|
2021-01-20 21:03:12 +00:00
|
|
|
use LegacyArticleIdAccess;
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2020-05-12 21:42:08 +00:00
|
|
|
public const ROW_CACHE_KEY = 'revision-row-1.29';
|
2018-01-29 15:54:02 +00:00
|
|
|
|
2020-07-22 16:07:50 +00:00
|
|
|
public const ORDER_OLDEST_TO_NEWEST = 'ASC';
|
|
|
|
|
public const ORDER_NEWEST_TO_OLDEST = 'DESC';
|
|
|
|
|
|
2020-08-17 18:22:17 +00:00
|
|
|
// Constants for get(...)Between methods
|
|
|
|
|
public const INCLUDE_OLD = 'include_old';
|
|
|
|
|
public const INCLUDE_NEW = 'include_new';
|
|
|
|
|
public const INCLUDE_BOTH = 'include_both';
|
|
|
|
|
|
2017-08-27 15:29:18 +00:00
|
|
|
/**
|
|
|
|
|
* @var SqlBlobStore
|
|
|
|
|
*/
|
|
|
|
|
private $blobStore;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @var bool|string
|
|
|
|
|
*/
|
2021-02-04 17:44:39 +00:00
|
|
|
private $wikiId;
|
2017-08-27 15:29:18 +00:00
|
|
|
|
|
|
|
|
/**
|
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;
|
|
|
|
|
|
2021-02-04 02:43:09 +00:00
|
|
|
/** @var ActorStore */
|
|
|
|
|
private $actorStore;
|
|
|
|
|
|
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-11-19 11:39:56 +00:00
|
|
|
/** @var SlotRoleRegistry */
|
|
|
|
|
private $slotRoleRegistry;
|
|
|
|
|
|
2020-01-18 20:25:04 +00:00
|
|
|
/** @var IContentHandlerFactory */
|
|
|
|
|
private $contentHandlerFactory;
|
|
|
|
|
|
Hooks::run() call site migration
Migrate all callers of Hooks::run() to use the new
HookContainer/HookRunner system.
General principles:
* Use DI if it is already used. We're not changing the way state is
managed in this patch.
* HookContainer is always injected, not HookRunner. HookContainer
is a service, it's a more generic interface, it is the only
thing that provides isRegistered() which is needed in some cases,
and a HookRunner can be efficiently constructed from it
(confirmed by benchmark). Because HookContainer is needed
for object construction, it is also needed by all factories.
* "Ask your friendly local base class". Big hierarchies like
SpecialPage and ApiBase have getHookContainer() and getHookRunner()
methods in the base class, and classes that extend that base class
are not expected to know or care where the base class gets its
HookContainer from.
* ProtectedHookAccessorTrait provides protected getHookContainer() and
getHookRunner() methods, getting them from the global service
container. The point of this is to ease migration to DI by ensuring
that call sites ask their local friendly base class rather than
getting a HookRunner from the service container directly.
* Private $this->hookRunner. In some smaller classes where accessor
methods did not seem warranted, there is a private HookRunner property
which is accessed directly. Very rarely (two cases), there is a
protected property, for consistency with code that conventionally
assumes protected=private, but in cases where the class might actually
be overridden, a protected accessor is preferred over a protected
property.
* The last resort: Hooks::runner(). Mostly for static, file-scope and
global code. In a few cases it was used for objects with broken
construction schemes, out of horror or laziness.
Constructors with new required arguments:
* AuthManager
* BadFileLookup
* BlockManager
* ClassicInterwikiLookup
* ContentHandlerFactory
* ContentSecurityPolicy
* DefaultOptionsManager
* DerivedPageDataUpdater
* FullSearchResultWidget
* HtmlCacheUpdater
* LanguageFactory
* LanguageNameUtils
* LinkRenderer
* LinkRendererFactory
* LocalisationCache
* MagicWordFactory
* MessageCache
* NamespaceInfo
* PageEditStash
* PageHandlerFactory
* PageUpdater
* ParserFactory
* PermissionManager
* RevisionStore
* RevisionStoreFactory
* SearchEngineConfig
* SearchEngineFactory
* SearchFormWidget
* SearchNearMatcher
* SessionBackend
* SpecialPageFactory
* UserNameUtils
* UserOptionsManager
* WatchedItemQueryService
* WatchedItemStore
Constructors with new optional arguments:
* DefaultPreferencesFactory
* Language
* LinkHolderArray
* MovePage
* Parser
* ParserCache
* PasswordReset
* Router
setHookContainer() now required after construction:
* AuthenticationProvider
* ResourceLoaderModule
* SearchEngine
Change-Id: Id442b0dbe43aba84bd5cf801d86dedc768b082c7
2020-03-19 02:42:09 +00:00
|
|
|
/** @var HookRunner */
|
|
|
|
|
private $hookRunner;
|
|
|
|
|
|
2021-03-17 22:13:35 +00:00
|
|
|
/** @var PageStore */
|
|
|
|
|
private $pageStore;
|
|
|
|
|
|
|
|
|
|
/** @var TitleFactory */
|
2021-03-15 18:09:19 +00:00
|
|
|
private $titleFactory;
|
|
|
|
|
|
|
|
|
|
/**
|
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
|
2021-02-04 17:44:39 +00:00
|
|
|
* wiki's default instance even if $wikiId refers to a different wiki, since
|
2018-08-02 15:49:27 +00:00
|
|
|
* 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-11-19 11:39:56 +00:00
|
|
|
* @param SlotRoleRegistry $slotRoleRegistry
|
2017-09-12 17:12:29 +00:00
|
|
|
* @param ActorMigration $actorMigration
|
2021-02-04 02:43:09 +00:00
|
|
|
* @param ActorStore $actorStore
|
2020-01-18 20:25:04 +00:00
|
|
|
* @param IContentHandlerFactory $contentHandlerFactory
|
2021-03-17 22:13:35 +00:00
|
|
|
* @param PageStore $pageStore
|
2021-03-15 18:09:19 +00:00
|
|
|
* @param TitleFactory $titleFactory
|
Hooks::run() call site migration
Migrate all callers of Hooks::run() to use the new
HookContainer/HookRunner system.
General principles:
* Use DI if it is already used. We're not changing the way state is
managed in this patch.
* HookContainer is always injected, not HookRunner. HookContainer
is a service, it's a more generic interface, it is the only
thing that provides isRegistered() which is needed in some cases,
and a HookRunner can be efficiently constructed from it
(confirmed by benchmark). Because HookContainer is needed
for object construction, it is also needed by all factories.
* "Ask your friendly local base class". Big hierarchies like
SpecialPage and ApiBase have getHookContainer() and getHookRunner()
methods in the base class, and classes that extend that base class
are not expected to know or care where the base class gets its
HookContainer from.
* ProtectedHookAccessorTrait provides protected getHookContainer() and
getHookRunner() methods, getting them from the global service
container. The point of this is to ease migration to DI by ensuring
that call sites ask their local friendly base class rather than
getting a HookRunner from the service container directly.
* Private $this->hookRunner. In some smaller classes where accessor
methods did not seem warranted, there is a private HookRunner property
which is accessed directly. Very rarely (two cases), there is a
protected property, for consistency with code that conventionally
assumes protected=private, but in cases where the class might actually
be overridden, a protected accessor is preferred over a protected
property.
* The last resort: Hooks::runner(). Mostly for static, file-scope and
global code. In a few cases it was used for objects with broken
construction schemes, out of horror or laziness.
Constructors with new required arguments:
* AuthManager
* BadFileLookup
* BlockManager
* ClassicInterwikiLookup
* ContentHandlerFactory
* ContentSecurityPolicy
* DefaultOptionsManager
* DerivedPageDataUpdater
* FullSearchResultWidget
* HtmlCacheUpdater
* LanguageFactory
* LanguageNameUtils
* LinkRenderer
* LinkRendererFactory
* LocalisationCache
* MagicWordFactory
* MessageCache
* NamespaceInfo
* PageEditStash
* PageHandlerFactory
* PageUpdater
* ParserFactory
* PermissionManager
* RevisionStore
* RevisionStoreFactory
* SearchEngineConfig
* SearchEngineFactory
* SearchFormWidget
* SearchNearMatcher
* SessionBackend
* SpecialPageFactory
* UserNameUtils
* UserOptionsManager
* WatchedItemQueryService
* WatchedItemStore
Constructors with new optional arguments:
* DefaultPreferencesFactory
* Language
* LinkHolderArray
* MovePage
* Parser
* ParserCache
* PasswordReset
* Router
setHookContainer() now required after construction:
* AuthenticationProvider
* ResourceLoaderModule
* SearchEngine
Change-Id: Id442b0dbe43aba84bd5cf801d86dedc768b082c7
2020-03-19 02:42:09 +00:00
|
|
|
* @param HookContainer $hookContainer
|
2021-02-04 17:44:39 +00:00
|
|
|
* @param false|string $wikiId Relevant wiki id or WikiAwareEntity::LOCAL for the current one
|
2021-03-15 18:09:19 +00:00
|
|
|
*
|
|
|
|
|
* @todo $blobStore should be allowed to be any BlobStore!
|
|
|
|
|
*
|
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-11-19 11:39:56 +00:00
|
|
|
SlotRoleRegistry $slotRoleRegistry,
|
2017-09-12 17:12:29 +00:00
|
|
|
ActorMigration $actorMigration,
|
2021-02-04 02:43:09 +00:00
|
|
|
ActorStore $actorStore,
|
2020-01-18 20:25:04 +00:00
|
|
|
IContentHandlerFactory $contentHandlerFactory,
|
2021-03-17 22:13:35 +00:00
|
|
|
PageStore $pageStore,
|
2021-03-15 18:09:19 +00:00
|
|
|
TitleFactory $titleFactory,
|
Hooks::run() call site migration
Migrate all callers of Hooks::run() to use the new
HookContainer/HookRunner system.
General principles:
* Use DI if it is already used. We're not changing the way state is
managed in this patch.
* HookContainer is always injected, not HookRunner. HookContainer
is a service, it's a more generic interface, it is the only
thing that provides isRegistered() which is needed in some cases,
and a HookRunner can be efficiently constructed from it
(confirmed by benchmark). Because HookContainer is needed
for object construction, it is also needed by all factories.
* "Ask your friendly local base class". Big hierarchies like
SpecialPage and ApiBase have getHookContainer() and getHookRunner()
methods in the base class, and classes that extend that base class
are not expected to know or care where the base class gets its
HookContainer from.
* ProtectedHookAccessorTrait provides protected getHookContainer() and
getHookRunner() methods, getting them from the global service
container. The point of this is to ease migration to DI by ensuring
that call sites ask their local friendly base class rather than
getting a HookRunner from the service container directly.
* Private $this->hookRunner. In some smaller classes where accessor
methods did not seem warranted, there is a private HookRunner property
which is accessed directly. Very rarely (two cases), there is a
protected property, for consistency with code that conventionally
assumes protected=private, but in cases where the class might actually
be overridden, a protected accessor is preferred over a protected
property.
* The last resort: Hooks::runner(). Mostly for static, file-scope and
global code. In a few cases it was used for objects with broken
construction schemes, out of horror or laziness.
Constructors with new required arguments:
* AuthManager
* BadFileLookup
* BlockManager
* ClassicInterwikiLookup
* ContentHandlerFactory
* ContentSecurityPolicy
* DefaultOptionsManager
* DerivedPageDataUpdater
* FullSearchResultWidget
* HtmlCacheUpdater
* LanguageFactory
* LanguageNameUtils
* LinkRenderer
* LinkRendererFactory
* LocalisationCache
* MagicWordFactory
* MessageCache
* NamespaceInfo
* PageEditStash
* PageHandlerFactory
* PageUpdater
* ParserFactory
* PermissionManager
* RevisionStore
* RevisionStoreFactory
* SearchEngineConfig
* SearchEngineFactory
* SearchFormWidget
* SearchNearMatcher
* SessionBackend
* SpecialPageFactory
* UserNameUtils
* UserOptionsManager
* WatchedItemQueryService
* WatchedItemStore
Constructors with new optional arguments:
* DefaultPreferencesFactory
* Language
* LinkHolderArray
* MovePage
* Parser
* ParserCache
* PasswordReset
* Router
setHookContainer() now required after construction:
* AuthenticationProvider
* ResourceLoaderModule
* SearchEngine
Change-Id: Id442b0dbe43aba84bd5cf801d86dedc768b082c7
2020-03-19 02:42:09 +00:00
|
|
|
HookContainer $hookContainer,
|
2021-02-04 17:44:39 +00:00
|
|
|
$wikiId = WikiAwareEntity::LOCAL
|
2017-08-27 15:29:18 +00:00
|
|
|
) {
|
2021-02-04 17:44:39 +00:00
|
|
|
Assert::parameterType( 'string|boolean', $wikiId, '$wikiId' );
|
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-11-19 11:39:56 +00:00
|
|
|
$this->slotRoleRegistry = $slotRoleRegistry;
|
2017-09-12 17:12:29 +00:00
|
|
|
$this->actorMigration = $actorMigration;
|
2021-02-04 02:43:09 +00:00
|
|
|
$this->actorStore = $actorStore;
|
2021-02-04 17:44:39 +00:00
|
|
|
$this->wikiId = $wikiId;
|
2018-01-10 16:05:46 +00:00
|
|
|
$this->logger = new NullLogger();
|
2020-01-18 20:25:04 +00:00
|
|
|
$this->contentHandlerFactory = $contentHandlerFactory;
|
2021-03-17 22:13:35 +00:00
|
|
|
$this->pageStore = $pageStore;
|
2021-03-15 18:09:19 +00:00
|
|
|
$this->titleFactory = $titleFactory;
|
Hooks::run() call site migration
Migrate all callers of Hooks::run() to use the new
HookContainer/HookRunner system.
General principles:
* Use DI if it is already used. We're not changing the way state is
managed in this patch.
* HookContainer is always injected, not HookRunner. HookContainer
is a service, it's a more generic interface, it is the only
thing that provides isRegistered() which is needed in some cases,
and a HookRunner can be efficiently constructed from it
(confirmed by benchmark). Because HookContainer is needed
for object construction, it is also needed by all factories.
* "Ask your friendly local base class". Big hierarchies like
SpecialPage and ApiBase have getHookContainer() and getHookRunner()
methods in the base class, and classes that extend that base class
are not expected to know or care where the base class gets its
HookContainer from.
* ProtectedHookAccessorTrait provides protected getHookContainer() and
getHookRunner() methods, getting them from the global service
container. The point of this is to ease migration to DI by ensuring
that call sites ask their local friendly base class rather than
getting a HookRunner from the service container directly.
* Private $this->hookRunner. In some smaller classes where accessor
methods did not seem warranted, there is a private HookRunner property
which is accessed directly. Very rarely (two cases), there is a
protected property, for consistency with code that conventionally
assumes protected=private, but in cases where the class might actually
be overridden, a protected accessor is preferred over a protected
property.
* The last resort: Hooks::runner(). Mostly for static, file-scope and
global code. In a few cases it was used for objects with broken
construction schemes, out of horror or laziness.
Constructors with new required arguments:
* AuthManager
* BadFileLookup
* BlockManager
* ClassicInterwikiLookup
* ContentHandlerFactory
* ContentSecurityPolicy
* DefaultOptionsManager
* DerivedPageDataUpdater
* FullSearchResultWidget
* HtmlCacheUpdater
* LanguageFactory
* LanguageNameUtils
* LinkRenderer
* LinkRendererFactory
* LocalisationCache
* MagicWordFactory
* MessageCache
* NamespaceInfo
* PageEditStash
* PageHandlerFactory
* PageUpdater
* ParserFactory
* PermissionManager
* RevisionStore
* RevisionStoreFactory
* SearchEngineConfig
* SearchEngineFactory
* SearchFormWidget
* SearchNearMatcher
* SessionBackend
* SpecialPageFactory
* UserNameUtils
* UserOptionsManager
* WatchedItemQueryService
* WatchedItemStore
Constructors with new optional arguments:
* DefaultPreferencesFactory
* Language
* LinkHolderArray
* MovePage
* Parser
* ParserCache
* PasswordReset
* Router
setHookContainer() now required after construction:
* AuthenticationProvider
* ResourceLoaderModule
* SearchEngine
Change-Id: Id442b0dbe43aba84bd5cf801d86dedc768b082c7
2020-03-19 02:42:09 +00:00
|
|
|
$this->hookRunner = new HookRunner( $hookContainer );
|
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
|
|
|
/**
|
2018-06-27 12:16:35 +00:00
|
|
|
* @return ILoadBalancer
|
2017-08-27 15:29:18 +00:00
|
|
|
*/
|
|
|
|
|
private function getDBLoadBalancer() {
|
|
|
|
|
return $this->loadBalancer;
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-20 21:03:12 +00:00
|
|
|
/**
|
|
|
|
|
* Get the ID of the wiki this revision belongs to.
|
|
|
|
|
*
|
|
|
|
|
* @return string|false The wiki's logical name, of false to indicate the local wiki.
|
|
|
|
|
*/
|
|
|
|
|
public function getWikiId() {
|
2021-02-04 17:44:39 +00:00
|
|
|
return $this->wikiId;
|
2021-01-20 21:03:12 +00:00
|
|
|
}
|
|
|
|
|
|
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
|
|
|
/**
|
2021-04-19 01:02:08 +00:00
|
|
|
* @param int $mode DB_PRIMARY or DB_REPLICA
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
2019-08-04 14:50:50 +00:00
|
|
|
* @param array $groups
|
2017-08-27 15:29:18 +00:00
|
|
|
* @return DBConnRef
|
|
|
|
|
*/
|
2019-08-04 14:50:50 +00:00
|
|
|
private function getDBConnectionRef( $mode, $groups = [] ) {
|
2017-08-27 15:29:18 +00:00
|
|
|
$lb = $this->getDBLoadBalancer();
|
2021-02-04 17:44:39 +00:00
|
|
|
return $lb->getConnectionRef( $mode, $groups, $this->wikiId );
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Determines the page Title based on the available information.
|
|
|
|
|
*
|
2021-05-02 23:55:07 +00:00
|
|
|
* MCR migration note: this corresponded to Revision::getTitle
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
2021-03-15 18:09:19 +00:00
|
|
|
* @deprecated since 1.36, Use RevisionRecord::getPage() instead.
|
|
|
|
|
* @note The resulting Title object will be misleading if the RevisionStore is not
|
|
|
|
|
* for the local wiki.
|
2018-01-11 15:43:18 +00:00
|
|
|
*
|
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 ) {
|
2021-03-15 18:09:19 +00:00
|
|
|
// TODO: Hard-deprecate this once getPage() returns a PageRecord. T195069
|
|
|
|
|
if ( $this->wikiId !== WikiAwareEntity::LOCAL ) {
|
|
|
|
|
wfDeprecatedMsg( 'Using a Title object to refer to a page on another site.', '1.36' );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$page = $this->getPage( $pageId, $revId, $queryFlags );
|
|
|
|
|
return $this->titleFactory->castFromPageIdentity( $page );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Determines the page based on the available information.
|
|
|
|
|
*
|
|
|
|
|
* @param int|null $pageId
|
|
|
|
|
* @param int|null $revId
|
|
|
|
|
* @param int $queryFlags
|
|
|
|
|
*
|
|
|
|
|
* @return PageIdentity
|
|
|
|
|
* @throws RevisionAccessException
|
|
|
|
|
*/
|
|
|
|
|
private function getPage( ?int $pageId, ?int $revId, int $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;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-15 18:09:19 +00:00
|
|
|
$canUsePageId = ( $pageId !== null && $pageId > 0 );
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2021-03-15 18:09:19 +00:00
|
|
|
// Loading by ID is best
|
|
|
|
|
if ( $canUsePageId ) {
|
2021-03-17 22:13:35 +00:00
|
|
|
$page = $this->pageStore->getPageById( $pageId, $queryFlags );
|
|
|
|
|
if ( $page ) {
|
|
|
|
|
return $this->wrapPage( $page );
|
2018-01-10 16:05:46 +00:00
|
|
|
}
|
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 ) {
|
2021-03-17 22:13:35 +00:00
|
|
|
$pageQuery = $this->pageStore->newSelectQueryBuilder( $queryFlags )
|
|
|
|
|
->join( 'revision', null, 'page_id=rev_page' )
|
|
|
|
|
->conds( [ 'rev_id' => $revId ] )
|
|
|
|
|
->caller( __METHOD__ );
|
|
|
|
|
|
|
|
|
|
$page = $pageQuery->fetchPageRecord();
|
|
|
|
|
if ( $page ) {
|
|
|
|
|
return $this->wrapPage( $page );
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-01 21:04:40 +00:00
|
|
|
// If we still don't have a title, fallback to primary DB if that wasn't already happening.
|
2021-03-17 22:13:35 +00:00
|
|
|
if ( $queryFlags === self::READ_NORMAL ) {
|
2021-03-15 18:09:19 +00:00
|
|
|
$title = $this->getPage( $pageId, $revId, self::READ_LATEST );
|
2018-01-10 16:05:46 +00:00
|
|
|
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(
|
2021-07-16 04:49:17 +00:00
|
|
|
'Could not determine title for page ID {page_id} and revision ID {rev_id}',
|
|
|
|
|
[
|
|
|
|
|
'page_id' => $pageId,
|
|
|
|
|
'rev_id' => $revId,
|
|
|
|
|
]
|
2018-01-10 16:05:46 +00:00
|
|
|
);
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
2021-03-15 18:09:19 +00:00
|
|
|
/**
|
2021-03-17 22:13:35 +00:00
|
|
|
* @param PageIdentity $page
|
2021-03-15 18:09:19 +00:00
|
|
|
*
|
|
|
|
|
* @return PageIdentity
|
|
|
|
|
*/
|
2021-03-17 22:13:35 +00:00
|
|
|
private function wrapPage( PageIdentity $page ): PageIdentity {
|
2021-03-15 18:09:19 +00:00
|
|
|
if ( $this->wikiId === WikiAwareEntity::LOCAL ) {
|
|
|
|
|
// NOTE: since there is still a lot of code that needs a full Title,
|
|
|
|
|
// and uses Title::castFromPageIdentity() to get one, it's beneficial
|
|
|
|
|
// to create a Title right away if we can, so we don't have to convert
|
|
|
|
|
// over and over later on.
|
|
|
|
|
// When there is less need to convert to Title, this special case can
|
|
|
|
|
// be removed.
|
2021-03-17 22:13:35 +00:00
|
|
|
return $this->titleFactory->castFromPageIdentity( $page );
|
2021-03-15 18:09:19 +00:00
|
|
|
} else {
|
2021-03-17 22:13:35 +00:00
|
|
|
return $page;
|
2021-03-15 18:09:19 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
*
|
2021-05-02 23:55:07 +00:00
|
|
|
* MCR migration note: this replaced Revision::insertOn
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
|
|
|
|
* @param RevisionRecord $rev
|
2021-09-01 21:04:40 +00:00
|
|
|
* @param IDatabase $dbw (primary connection)
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
|
|
|
|
* @return RevisionRecord the new revision record.
|
|
|
|
|
*/
|
|
|
|
|
public function insertRevisionOn( RevisionRecord $rev, IDatabase $dbw ) {
|
|
|
|
|
// TODO: pass in a DBTransactionContext instead of a database connection.
|
2019-07-04 07:46:39 +00:00
|
|
|
$this->checkDatabaseDomain( $dbw );
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
$slotRoles = $rev->getSlotRoles();
|
|
|
|
|
|
|
|
|
|
// Make sure the main slot is always provided throughout migration
|
2018-09-24 21:10:08 +00:00
|
|
|
if ( !in_array( SlotRecord::MAIN, $slotRoles ) ) {
|
2019-12-17 16:20:32 +00:00
|
|
|
throw new IncompleteRevisionException(
|
2018-04-17 07:49:20 +00:00
|
|
|
'main slot must be provided'
|
|
|
|
|
);
|
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' );
|
|
|
|
|
|
2018-09-10 19:34:31 +00:00
|
|
|
if ( !$rev->isReadyForInsertion() ) {
|
|
|
|
|
// This is here for future-proofing. At the time this check being added, it
|
|
|
|
|
// was redundant to the individual checks above.
|
|
|
|
|
throw new IncompleteRevisionException( 'Revision is incomplete' );
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-06 13:20:16 +00:00
|
|
|
if ( $slotRoles == [ SlotRecord::MAIN ] ) {
|
|
|
|
|
// T239717: If the main slot is the only slot, make sure the revision's nominal size
|
|
|
|
|
// and hash match the main slot's nominal size and hash.
|
|
|
|
|
$mainSlot = $rev->getSlot( SlotRecord::MAIN, RevisionRecord::RAW );
|
|
|
|
|
Assert::precondition(
|
|
|
|
|
$mainSlot->getSize() === $rev->getSize(),
|
|
|
|
|
'The revisions\'s size must match the main slot\'s size (see T239717)'
|
|
|
|
|
);
|
|
|
|
|
Assert::precondition(
|
|
|
|
|
$mainSlot->getSha1() === $rev->getSha1(),
|
|
|
|
|
'The revisions\'s SHA1 hash must match the main slot\'s SHA1 hash (see T239717)'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-10 22:13:53 +00:00
|
|
|
$pageId = $this->failOnEmpty( $rev->getPageId( $this->wikiId ), 'rev_page field' ); // check this early
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2021-06-04 04:12:21 +00:00
|
|
|
$parentId = $rev->getParentId() ?? $this->getPreviousRevisionId( $dbw, $rev );
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
/** @var RevisionRecord $rev */
|
|
|
|
|
$rev = $dbw->doAtomicSection(
|
|
|
|
|
__METHOD__,
|
|
|
|
|
function ( IDatabase $dbw, $fname ) use (
|
|
|
|
|
$rev,
|
|
|
|
|
$user,
|
|
|
|
|
$comment,
|
|
|
|
|
$pageId,
|
|
|
|
|
$parentId
|
|
|
|
|
) {
|
|
|
|
|
return $this->insertRevisionInternal(
|
|
|
|
|
$rev,
|
|
|
|
|
$dbw,
|
|
|
|
|
$user,
|
|
|
|
|
$comment,
|
2021-01-20 21:03:12 +00:00
|
|
|
$rev->getPage(),
|
2018-04-17 07:49:20 +00:00
|
|
|
$pageId,
|
|
|
|
|
$parentId
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
);
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
// sanity checks
|
2021-02-04 17:44:39 +00:00
|
|
|
Assert::postcondition( $rev->getId( $this->wikiId ) > 0, 'revision must have an ID' );
|
2021-02-10 22:13:53 +00:00
|
|
|
Assert::postcondition( $rev->getPageId( $this->wikiId ) > 0, 'revision must have a page ID' );
|
2018-04-17 07:49:20 +00:00
|
|
|
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.
|
2018-09-24 21:10:08 +00:00
|
|
|
$rev->getSlot( SlotRecord::MAIN, RevisionRecord::RAW );
|
2018-04-17 07:49:20 +00:00
|
|
|
|
|
|
|
|
foreach ( $slotRoles as $role ) {
|
|
|
|
|
$slot = $rev->getSlot( $role, RevisionRecord::RAW );
|
|
|
|
|
Assert::postcondition(
|
|
|
|
|
$slot->getContent() !== null,
|
2018-09-07 17:01:32 +00:00
|
|
|
$role . ' slot must have content'
|
2018-04-17 07:49:20 +00:00
|
|
|
);
|
|
|
|
|
Assert::postcondition(
|
|
|
|
|
$slot->hasRevision(),
|
2018-09-07 17:01:32 +00:00
|
|
|
$role . ' slot must have a revision associated'
|
2018-04-17 07:49:20 +00:00
|
|
|
);
|
|
|
|
|
}
|
2018-01-29 15:54:02 +00:00
|
|
|
|
Hooks::run() call site migration
Migrate all callers of Hooks::run() to use the new
HookContainer/HookRunner system.
General principles:
* Use DI if it is already used. We're not changing the way state is
managed in this patch.
* HookContainer is always injected, not HookRunner. HookContainer
is a service, it's a more generic interface, it is the only
thing that provides isRegistered() which is needed in some cases,
and a HookRunner can be efficiently constructed from it
(confirmed by benchmark). Because HookContainer is needed
for object construction, it is also needed by all factories.
* "Ask your friendly local base class". Big hierarchies like
SpecialPage and ApiBase have getHookContainer() and getHookRunner()
methods in the base class, and classes that extend that base class
are not expected to know or care where the base class gets its
HookContainer from.
* ProtectedHookAccessorTrait provides protected getHookContainer() and
getHookRunner() methods, getting them from the global service
container. The point of this is to ease migration to DI by ensuring
that call sites ask their local friendly base class rather than
getting a HookRunner from the service container directly.
* Private $this->hookRunner. In some smaller classes where accessor
methods did not seem warranted, there is a private HookRunner property
which is accessed directly. Very rarely (two cases), there is a
protected property, for consistency with code that conventionally
assumes protected=private, but in cases where the class might actually
be overridden, a protected accessor is preferred over a protected
property.
* The last resort: Hooks::runner(). Mostly for static, file-scope and
global code. In a few cases it was used for objects with broken
construction schemes, out of horror or laziness.
Constructors with new required arguments:
* AuthManager
* BadFileLookup
* BlockManager
* ClassicInterwikiLookup
* ContentHandlerFactory
* ContentSecurityPolicy
* DefaultOptionsManager
* DerivedPageDataUpdater
* FullSearchResultWidget
* HtmlCacheUpdater
* LanguageFactory
* LanguageNameUtils
* LinkRenderer
* LinkRendererFactory
* LocalisationCache
* MagicWordFactory
* MessageCache
* NamespaceInfo
* PageEditStash
* PageHandlerFactory
* PageUpdater
* ParserFactory
* PermissionManager
* RevisionStore
* RevisionStoreFactory
* SearchEngineConfig
* SearchEngineFactory
* SearchFormWidget
* SearchNearMatcher
* SessionBackend
* SpecialPageFactory
* UserNameUtils
* UserOptionsManager
* WatchedItemQueryService
* WatchedItemStore
Constructors with new optional arguments:
* DefaultPreferencesFactory
* Language
* LinkHolderArray
* MovePage
* Parser
* ParserCache
* PasswordReset
* Router
setHookContainer() now required after construction:
* AuthenticationProvider
* ResourceLoaderModule
* SearchEngine
Change-Id: Id442b0dbe43aba84bd5cf801d86dedc768b082c7
2020-03-19 02:42:09 +00:00
|
|
|
$this->hookRunner->onRevisionRecordInserted( $rev );
|
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
|
|
|
|
2021-03-07 04:41:19 +00:00
|
|
|
/**
|
|
|
|
|
* Update derived slots in an existing revision into the database, returning the modified
|
|
|
|
|
* slots on success.
|
|
|
|
|
*
|
|
|
|
|
* @param RevisionRecord $revision After this method returns, the $revision object will be
|
|
|
|
|
* obsolete in that it does not have the new slots.
|
|
|
|
|
* @param RevisionSlotsUpdate $revisionSlotsUpdate
|
2021-09-01 21:04:40 +00:00
|
|
|
* @param IDatabase $dbw (primary connection)
|
2021-03-07 04:41:19 +00:00
|
|
|
*
|
|
|
|
|
* @return SlotRecord[] the new slot records.
|
|
|
|
|
* @internal
|
|
|
|
|
*/
|
|
|
|
|
public function updateSlotsOn(
|
|
|
|
|
RevisionRecord $revision,
|
|
|
|
|
RevisionSlotsUpdate $revisionSlotsUpdate,
|
|
|
|
|
IDatabase $dbw
|
2021-07-22 03:11:47 +00:00
|
|
|
): array {
|
2021-03-07 04:41:19 +00:00
|
|
|
$this->checkDatabaseDomain( $dbw );
|
|
|
|
|
|
|
|
|
|
// Make sure all modified and removed slots are derived slots
|
|
|
|
|
foreach ( $revisionSlotsUpdate->getModifiedRoles() as $role ) {
|
|
|
|
|
Assert::precondition(
|
|
|
|
|
$this->slotRoleRegistry->getRoleHandler( $role )->isDerived(),
|
|
|
|
|
'Trying to modify a slot that is not derived'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
foreach ( $revisionSlotsUpdate->getRemovedRoles() as $role ) {
|
|
|
|
|
$isDerived = $this->slotRoleRegistry->getRoleHandler( $role )->isDerived();
|
|
|
|
|
Assert::precondition(
|
|
|
|
|
$isDerived,
|
|
|
|
|
'Trying to remove a slot that is not derived'
|
|
|
|
|
);
|
|
|
|
|
throw new LogicException( 'Removing derived slots is not yet implemented. See T277394.' );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** @var SlotRecord[] $slotRecords */
|
|
|
|
|
$slotRecords = $dbw->doAtomicSection(
|
|
|
|
|
__METHOD__,
|
|
|
|
|
function ( IDatabase $dbw, $fname ) use (
|
|
|
|
|
$revision,
|
|
|
|
|
$revisionSlotsUpdate
|
|
|
|
|
) {
|
|
|
|
|
return $this->updateSlotsInternal(
|
|
|
|
|
$revision,
|
|
|
|
|
$revisionSlotsUpdate,
|
|
|
|
|
$dbw
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
foreach ( $slotRecords as $role => $slot ) {
|
|
|
|
|
Assert::postcondition(
|
|
|
|
|
$slot->getContent() !== null,
|
|
|
|
|
$role . ' slot must have content'
|
|
|
|
|
);
|
|
|
|
|
Assert::postcondition(
|
|
|
|
|
$slot->hasRevision(),
|
|
|
|
|
$role . ' slot must have a revision associated'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $slotRecords;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param RevisionRecord $revision
|
|
|
|
|
* @param RevisionSlotsUpdate $revisionSlotsUpdate
|
|
|
|
|
* @param IDatabase $dbw
|
|
|
|
|
* @return SlotRecord[]
|
|
|
|
|
*/
|
|
|
|
|
private function updateSlotsInternal(
|
|
|
|
|
RevisionRecord $revision,
|
|
|
|
|
RevisionSlotsUpdate $revisionSlotsUpdate,
|
|
|
|
|
IDatabase $dbw
|
2021-07-22 03:11:47 +00:00
|
|
|
): array {
|
2021-03-07 04:41:19 +00:00
|
|
|
$page = $revision->getPage();
|
|
|
|
|
$revId = $revision->getId( $this->wikiId );
|
|
|
|
|
$blobHints = [
|
|
|
|
|
BlobStore::PAGE_HINT => $page->getId( $this->wikiId ),
|
|
|
|
|
BlobStore::REVISION_HINT => $revId,
|
|
|
|
|
BlobStore::PARENT_HINT => $revision->getParentId( $this->wikiId ),
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
$newSlots = [];
|
|
|
|
|
foreach ( $revisionSlotsUpdate->getModifiedRoles() as $role ) {
|
|
|
|
|
$slot = $revisionSlotsUpdate->getModifiedSlot( $role );
|
|
|
|
|
$newSlots[$role] = $this->insertSlotOn( $dbw, $revId, $slot, $page, $blobHints );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $newSlots;
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
private function insertRevisionInternal(
|
|
|
|
|
RevisionRecord $rev,
|
|
|
|
|
IDatabase $dbw,
|
2021-01-11 22:51:30 +00:00
|
|
|
UserIdentity $user,
|
2018-04-17 07:49:20 +00:00
|
|
|
CommentStoreComment $comment,
|
2021-01-20 21:03:12 +00:00
|
|
|
PageIdentity $page,
|
2018-04-17 07:49:20 +00:00
|
|
|
$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,
|
|
|
|
|
$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 );
|
|
|
|
|
|
Fix undeletion write-both/read-old mode.
With the new schema, undeletion does not create now slot rows.
However, when in read-old mode, we may still have un-migrated
archive rows. When undeletion based on such a row, we do need
to insert a slot row.
This also changes the return value of SlotRecord for
SCHEMA_COMPAT_READ_OLD mode from null to the negative value of
rev_text_id, for consistency. Conceptually, the emulated slots
in SCHEMA_COMPAT_OLD now have a "virtual" content ID, hich is
however distinct from any real content ID that may exist in
the future. Such virtual content IDs are however not assigned
in SCHEMA_COMPAT_WRITE_BOTH mode. In that mode, unmigrated
rows can be detected by calling hasContentId() on the main
slot. Migrated rows will return true here and provide the
id of the associated content row, even in
SCHEMA_COMPAT_READ_OLD mode. This is particularly essential
for undeletion, which needs to maintain the association
between revision and slot rows even in SCHEMA_COMPAT_READ_OLD
mode.
Bug: T174024
Bug: T194015
Bug: T183488
Change-Id: I88ee9809b9752e1e72d635d62e82008315402901
2018-08-27 19:45:40 +00:00
|
|
|
// 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.
|
|
|
|
|
// However, a slot may already have a revision, but no content ID, if the slot
|
|
|
|
|
// is emulated based on the archive table, because we are in SCHEMA_COMPAT_READ_OLD
|
|
|
|
|
// mode, and the respective archive row was not yet migrated to the new schema.
|
|
|
|
|
// In that case, a new slot row (and content row) must be inserted even during
|
|
|
|
|
// undeletion.
|
|
|
|
|
if ( $slot->hasRevision() && $slot->hasContentId() ) {
|
2018-04-17 07:49:20 +00:00
|
|
|
// 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;
|
|
|
|
|
} else {
|
2021-01-20 21:03:12 +00:00
|
|
|
$newSlots[$role] = $this->insertSlotOn( $dbw, $revisionId, $slot, $page, $blobHints );
|
2018-04-17 07:49:20 +00:00
|
|
|
}
|
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(
|
2021-01-20 21:03:12 +00:00
|
|
|
$page,
|
2018-04-17 07:49:20 +00:00
|
|
|
$user,
|
|
|
|
|
$comment,
|
|
|
|
|
(object)$revisionRow,
|
|
|
|
|
new RevisionSlots( $newSlots ),
|
2021-02-04 17:44:39 +00:00
|
|
|
$this->wikiId
|
2018-04-17 07:49:20 +00:00
|
|
|
);
|
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 SlotRecord $protoSlot
|
2021-01-20 21:03:12 +00:00
|
|
|
* @param PageIdentity $page
|
2018-04-17 07:49:20 +00:00
|
|
|
* @param array $blobHints See the BlobStore::XXX_HINT constants
|
|
|
|
|
* @return SlotRecord
|
|
|
|
|
*/
|
|
|
|
|
private function insertSlotOn(
|
|
|
|
|
IDatabase $dbw,
|
|
|
|
|
$revisionId,
|
|
|
|
|
SlotRecord $protoSlot,
|
2021-01-20 21:03:12 +00:00
|
|
|
PageIdentity $page,
|
2018-04-17 07:49:20 +00:00
|
|
|
array $blobHints = []
|
|
|
|
|
) {
|
|
|
|
|
if ( $protoSlot->hasAddress() ) {
|
|
|
|
|
$blobAddress = $protoSlot->getAddress();
|
2018-01-29 15:54:02 +00:00
|
|
|
} else {
|
2021-01-20 21:03:12 +00:00
|
|
|
$blobAddress = $this->storeContentBlob( $protoSlot, $page, $blobHints );
|
2018-01-29 15:54:02 +00:00
|
|
|
}
|
|
|
|
|
|
Fix undeletion write-both/read-old mode.
With the new schema, undeletion does not create now slot rows.
However, when in read-old mode, we may still have un-migrated
archive rows. When undeletion based on such a row, we do need
to insert a slot row.
This also changes the return value of SlotRecord for
SCHEMA_COMPAT_READ_OLD mode from null to the negative value of
rev_text_id, for consistency. Conceptually, the emulated slots
in SCHEMA_COMPAT_OLD now have a "virtual" content ID, hich is
however distinct from any real content ID that may exist in
the future. Such virtual content IDs are however not assigned
in SCHEMA_COMPAT_WRITE_BOTH mode. In that mode, unmigrated
rows can be detected by calling hasContentId() on the main
slot. Migrated rows will return true here and provide the
id of the associated content row, even in
SCHEMA_COMPAT_READ_OLD mode. This is particularly essential
for undeletion, which needs to maintain the association
between revision and slot rows even in SCHEMA_COMPAT_READ_OLD
mode.
Bug: T174024
Bug: T194015
Bug: T183488
Change-Id: I88ee9809b9752e1e72d635d62e82008315402901
2018-08-27 19:45:40 +00:00
|
|
|
$contentId = null;
|
|
|
|
|
|
2019-12-17 16:20:32 +00:00
|
|
|
if ( $protoSlot->hasContentId() ) {
|
|
|
|
|
$contentId = $protoSlot->getContentId();
|
|
|
|
|
} else {
|
|
|
|
|
$contentId = $this->insertContentRowOn( $protoSlot, $dbw, $blobAddress );
|
2018-04-17 07:49:20 +00:00
|
|
|
}
|
2018-01-29 15:54:02 +00:00
|
|
|
|
2019-12-17 16:20:32 +00:00
|
|
|
$this->insertSlotRowOn( $protoSlot, $dbw, $revisionId, $contentId );
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2020-10-03 19:53:01 +00:00
|
|
|
return SlotRecord::newSaved(
|
2018-04-17 07:49:20 +00:00
|
|
|
$revisionId,
|
|
|
|
|
$contentId,
|
|
|
|
|
$blobAddress,
|
|
|
|
|
$protoSlot
|
|
|
|
|
);
|
|
|
|
|
}
|
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
|
2021-01-11 22:51:30 +00:00
|
|
|
* @param UserIdentity $user
|
2018-04-17 07:49:20 +00:00
|
|
|
* @param RevisionRecord $rev
|
|
|
|
|
* @param int $revisionId
|
|
|
|
|
*/
|
|
|
|
|
private function insertIpChangesRow(
|
|
|
|
|
IDatabase $dbw,
|
2021-01-11 22:51:30 +00:00
|
|
|
UserIdentity $user,
|
2018-04-17 07:49:20 +00:00
|
|
|
RevisionRecord $rev,
|
|
|
|
|
$revisionId
|
|
|
|
|
) {
|
2021-02-23 15:19:35 +00:00
|
|
|
if ( $user->getId() === 0 && IPUtils::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() ),
|
2019-06-25 18:53:15 +00:00
|
|
|
'ipc_hex' => IPUtils::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 int $parentId
|
|
|
|
|
*
|
|
|
|
|
* @return array a revision table row
|
|
|
|
|
*
|
|
|
|
|
* @throws MWException
|
|
|
|
|
* @throws MWUnknownContentModelException
|
|
|
|
|
*/
|
|
|
|
|
private function insertRevisionRowOn(
|
|
|
|
|
IDatabase $dbw,
|
|
|
|
|
RevisionRecord $rev,
|
|
|
|
|
$parentId
|
|
|
|
|
) {
|
2021-01-20 21:03:12 +00:00
|
|
|
$revisionRow = $this->getBaseRevisionRow( $dbw, $rev, $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';
|
2019-12-17 16:20:32 +00:00
|
|
|
$maxRevId2 = intval( $dbw->selectField( 'slots', 'MAX(slot_revision_id)', '', __METHOD__ ) );
|
|
|
|
|
if ( $maxRevId2 >= $maxRevId ) {
|
|
|
|
|
$maxRevId = $maxRevId2;
|
|
|
|
|
$table = 'slots';
|
2018-08-22 15:59:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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__;
|
2019-06-27 01:33:18 +00:00
|
|
|
$dbw->onTransactionResolution(
|
2021-02-10 22:31:02 +00:00
|
|
|
static function ( $trigger, IDatabase $dbw ) use ( $fname ) {
|
2019-06-27 01:33:18 +00:00
|
|
|
$dbw->unlock( 'fix-for-T202032', $fname );
|
2020-06-07 12:16:52 +00:00
|
|
|
},
|
|
|
|
|
__METHOD__
|
2019-06-27 01:33:18 +00:00
|
|
|
);
|
2018-08-22 15:59:56 +00:00
|
|
|
|
|
|
|
|
$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(
|
2020-06-07 12:16:52 +00:00
|
|
|
$dbw->selectSQLText( 'archive', [ 'v' => "MAX(ar_rev_id)" ], '', __METHOD__ ) . ' FOR UPDATE',
|
|
|
|
|
__METHOD__
|
2018-08-22 15:59:56 +00:00
|
|
|
)->fetchObject();
|
2019-12-17 16:20:32 +00:00
|
|
|
|
|
|
|
|
$row2 = $dbw->query(
|
|
|
|
|
$dbw->selectSQLText( 'slots', [ 'v' => "MAX(slot_revision_id)" ], '', __METHOD__ )
|
2020-06-07 12:16:52 +00:00
|
|
|
. ' FOR UPDATE',
|
|
|
|
|
__METHOD__
|
2019-12-17 16:20:32 +00:00
|
|
|
)->fetchObject();
|
|
|
|
|
|
2018-08-22 15:59:56 +00:00
|
|
|
$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 int $parentId
|
|
|
|
|
*
|
2020-10-28 10:01:33 +00:00
|
|
|
* @return array a revision table row
|
2018-04-17 07:49:20 +00:00
|
|
|
*/
|
|
|
|
|
private function getBaseRevisionRow(
|
|
|
|
|
IDatabase $dbw,
|
|
|
|
|
RevisionRecord $rev,
|
|
|
|
|
$parentId
|
|
|
|
|
) {
|
|
|
|
|
// Record the edit in revisions
|
|
|
|
|
$revisionRow = [
|
2021-02-10 22:13:53 +00:00
|
|
|
'rev_page' => $rev->getPageId( $this->wikiId ),
|
2018-04-17 07:49:20 +00:00
|
|
|
'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
|
|
|
|
2021-02-04 17:44:39 +00:00
|
|
|
if ( $rev->getId( $this->wikiId ) !== null ) {
|
2018-04-17 07:49:20 +00:00
|
|
|
// Needed to restore revisions with their original ID
|
2021-02-04 17:44:39 +00:00
|
|
|
$revisionRow['rev_id'] = $rev->getId( $this->wikiId );
|
2018-04-17 07:49:20 +00:00
|
|
|
}
|
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
|
2021-01-20 21:03:12 +00:00
|
|
|
* @param PageIdentity $page
|
2018-04-17 07:49:20 +00:00
|
|
|
* @param array $blobHints See the BlobStore::XXX_HINT constants
|
|
|
|
|
*
|
|
|
|
|
* @throws MWException
|
|
|
|
|
* @return string the blob address
|
|
|
|
|
*/
|
|
|
|
|
private function storeContentBlob(
|
|
|
|
|
SlotRecord $slot,
|
2021-01-20 21:03:12 +00:00
|
|
|
PageIdentity $page,
|
2018-04-17 07:49:20 +00:00
|
|
|
array $blobHints = []
|
|
|
|
|
) {
|
|
|
|
|
$content = $slot->getContent();
|
|
|
|
|
$format = $content->getDefaultFormat();
|
|
|
|
|
$model = $content->getModel();
|
|
|
|
|
|
2021-01-20 21:03:12 +00:00
|
|
|
$this->checkContent( $content, $page, $slot->getRole() );
|
2018-04-17 07:49:20 +00:00
|
|
|
|
|
|
|
|
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
|
|
|
/**
|
2021-05-02 23:55:07 +00:00
|
|
|
* MCR migration note: this corresponded to Revision::checkContentModel
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
|
|
|
|
* @param Content $content
|
2021-01-20 21:03:12 +00:00
|
|
|
* @param PageIdentity $page
|
2018-11-19 11:39:56 +00:00
|
|
|
* @param string $role
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
|
|
|
|
* @throws MWException
|
|
|
|
|
* @throws MWUnknownContentModelException
|
|
|
|
|
*/
|
2021-01-20 21:03:12 +00:00
|
|
|
private function checkContent( Content $content, PageIdentity $page, string $role ) {
|
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();
|
|
|
|
|
|
|
|
|
|
if ( !$handler->isSupportedFormat( $format ) ) {
|
2021-01-20 21:03:12 +00:00
|
|
|
throw new MWException(
|
|
|
|
|
"Can't use format $format with content model $model on $page role $role"
|
|
|
|
|
);
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( !$content->isValid() ) {
|
|
|
|
|
throw new MWException(
|
2021-01-20 21:03:12 +00:00
|
|
|
"New content for $page role $role is not valid! Content model is $model"
|
2017-08-27 15:29:18 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 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.
|
|
|
|
|
*
|
2021-05-02 23:55:07 +00:00
|
|
|
* MCR migration note: this replaced Revision::newNullRevision
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
|
|
|
|
* @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
|
2021-01-20 21:03:12 +00:00
|
|
|
* @param PageIdentity $page the page to read from
|
2017-08-27 15:29:18 +00:00
|
|
|
* @param CommentStoreComment $comment RevisionRecord's summary
|
|
|
|
|
* @param bool $minor Whether the revision should be considered as minor
|
2021-01-11 22:51:30 +00:00
|
|
|
* @param UserIdentity $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,
|
2021-01-20 21:03:12 +00:00
|
|
|
PageIdentity $page,
|
2017-08-27 15:29:18 +00:00
|
|
|
CommentStoreComment $comment,
|
|
|
|
|
$minor,
|
2021-01-11 22:51:30 +00:00
|
|
|
UserIdentity $user
|
2017-08-27 15:29:18 +00:00
|
|
|
) {
|
2019-07-04 07:46:39 +00:00
|
|
|
$this->checkDatabaseDomain( $dbw );
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2021-01-20 21:03:12 +00:00
|
|
|
$pageId = $this->getArticleId( $page );
|
2018-10-04 10:49:50 +00:00
|
|
|
|
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',
|
2018-10-04 10:49:50 +00:00
|
|
|
[ 'page_id' => $pageId ],
|
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 ) {
|
2020-07-05 10:03:02 +00:00
|
|
|
$msg = 'T235589: Failed to select table row during null revision creation' .
|
2021-01-20 21:03:12 +00:00
|
|
|
" Page id '$pageId' does not exist.";
|
2020-07-05 10:03:02 +00:00
|
|
|
$this->logger->error(
|
|
|
|
|
$msg,
|
|
|
|
|
[ 'exception' => new RuntimeException( $msg ) ]
|
|
|
|
|
);
|
|
|
|
|
|
2018-05-09 10:06:51 +00:00
|
|
|
return null;
|
|
|
|
|
}
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2021-09-01 21:04:40 +00:00
|
|
|
// Fetch the actual revision row from primary DB, without locking all extra tables.
|
2018-07-10 17:54:11 +00:00
|
|
|
$oldRevision = $this->loadRevisionFromConds(
|
|
|
|
|
$dbw,
|
|
|
|
|
[ 'rev_id' => intval( $pageLatest ) ],
|
|
|
|
|
self::READ_LATEST,
|
2021-01-20 21:03:12 +00:00
|
|
|
$page
|
2018-07-10 17:54:11 +00:00
|
|
|
);
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2018-10-04 10:49:50 +00:00
|
|
|
if ( !$oldRevision ) {
|
|
|
|
|
$msg = "Failed to load latest revision ID $pageLatest of page ID $pageId.";
|
|
|
|
|
$this->logger->error(
|
|
|
|
|
$msg,
|
|
|
|
|
[ 'exception' => new RuntimeException( $msg ) ]
|
|
|
|
|
);
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-09 10:06:51 +00:00
|
|
|
// Construct the new revision
|
2020-04-02 20:00:24 +00:00
|
|
|
$timestamp = MWTimestamp::now( TS_MW );
|
2018-05-09 10:06:51 +00:00
|
|
|
$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
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2021-05-02 23:55:07 +00:00
|
|
|
* MCR migration note: this replaced Revision::isUnpatrolled
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
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
|
|
|
|
|
*
|
2021-05-02 23:55:07 +00:00
|
|
|
* MCR migration note: this replaced Revision::getRecentChange
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
|
|
|
|
* @todo move this somewhere else?
|
|
|
|
|
*
|
|
|
|
|
* @param RevisionRecord $rev
|
|
|
|
|
* @param int $flags (optional) $flags include:
|
2021-09-01 21:04:40 +00:00
|
|
|
* IDBAccessObject::READ_LATEST: Select the data from the primary DB
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
|
|
|
|
* @return null|RecentChange
|
|
|
|
|
*/
|
|
|
|
|
public function getRecentChange( RevisionRecord $rev, $flags = 0 ) {
|
|
|
|
|
list( $dbType, ) = DBAccessObjectUtils::getDBOptions( $flags );
|
|
|
|
|
|
|
|
|
|
$rc = RecentChange::newFromConds(
|
2021-02-04 17:44:39 +00:00
|
|
|
[ 'rc_this_oldid' => $rev->getId( $this->wikiId ) ],
|
2017-08-27 15:29:18 +00:00
|
|
|
__METHOD__,
|
|
|
|
|
$dbType
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// XXX: cache this locally? Glue it to the RevisionRecord?
|
|
|
|
|
return $rc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 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().
|
|
|
|
|
*
|
2021-05-02 23:55:07 +00:00
|
|
|
* MCR migration note: this roughly corresponded to Revision::getContentInternal
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
|
|
|
|
* @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,
|
2021-07-30 16:29:14 +00:00
|
|
|
?string $blobData = null,
|
|
|
|
|
?string $blobFlags = null,
|
|
|
|
|
?string $blobFormat = null,
|
|
|
|
|
int $queryFlags = 0
|
2017-08-27 15:29:18 +00:00
|
|
|
) {
|
|
|
|
|
if ( $blobData !== null ) {
|
|
|
|
|
$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(
|
2021-07-16 04:49:17 +00:00
|
|
|
'Failed to expand blob data using flags {flags} (key: {cache_key})',
|
|
|
|
|
[
|
|
|
|
|
'flags' => $blobFlags,
|
|
|
|
|
'cache_key' => $cacheKey,
|
|
|
|
|
]
|
2018-01-12 11:52:31 +00:00
|
|
|
);
|
|
|
|
|
}
|
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(
|
2021-07-16 04:49:17 +00:00
|
|
|
'Failed to load data blob from {address}'
|
2020-07-15 16:47:23 +00:00
|
|
|
. 'If this problem persist, use the findBadBlobs maintenance script '
|
|
|
|
|
. 'to investigate the issue and mark bad blobs.',
|
2021-07-16 04:49:17 +00:00
|
|
|
[ 'address' => $e->getMessage() ],
|
|
|
|
|
0,
|
|
|
|
|
$e
|
2017-08-27 15:29:18 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-19 19:50:37 +00:00
|
|
|
$model = $slot->getModel();
|
|
|
|
|
|
|
|
|
|
// If the content model is not known, don't fail here (T220594, T220793, T228921)
|
|
|
|
|
if ( !$this->contentHandlerFactory->isDefinedModel( $model ) ) {
|
|
|
|
|
$this->logger->warning(
|
|
|
|
|
"Undefined content model '$model', falling back to UnknownContent",
|
|
|
|
|
[
|
|
|
|
|
'content_address' => $slot->getAddress(),
|
|
|
|
|
'rev_id' => $slot->getRevision(),
|
|
|
|
|
'role_name' => $slot->getRole(),
|
|
|
|
|
'model_name' => $model,
|
|
|
|
|
'trace' => wfBacktrace()
|
|
|
|
|
]
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
return new FallbackContent( $data, $model );
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-18 20:25:04 +00:00
|
|
|
return $this->contentHandlerFactory
|
2020-07-19 19:50:37 +00:00
|
|
|
->getContentHandler( $model )
|
2020-01-18 20:25:04 +00:00
|
|
|
->unserializeContent( $data, $blobFormat );
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Load a page revision from a given revision ID number.
|
|
|
|
|
* Returns null if no such revision can be found.
|
|
|
|
|
*
|
2021-05-02 23:55:07 +00:00
|
|
|
* MCR migration note: this replaced Revision::newFromId
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
|
|
|
|
* $flags include:
|
2021-09-01 21:04:40 +00:00
|
|
|
* IDBAccessObject::READ_LATEST: Select the data from the primary DB
|
|
|
|
|
* IDBAccessObject::READ_LOCKING : Select & lock the data from the primary DB
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
|
|
|
|
* @param int $id
|
|
|
|
|
* @param int $flags (optional)
|
2021-03-15 16:51:47 +00:00
|
|
|
* @param PageIdentity|null $page The page the revision belongs to.
|
|
|
|
|
* Providing the page may improve performance.
|
|
|
|
|
*
|
2017-08-27 15:29:18 +00:00
|
|
|
* @return RevisionRecord|null
|
|
|
|
|
*/
|
2021-03-15 16:51:47 +00:00
|
|
|
public function getRevisionById( $id, $flags = 0, PageIdentity $page = null ) {
|
|
|
|
|
return $this->newRevisionFromConds( [ 'rev_id' => intval( $id ) ], $flags, $page );
|
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.
|
|
|
|
|
*
|
2021-05-02 23:55:07 +00:00
|
|
|
* MCR migration note: this replaced Revision::newFromTitle
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
|
|
|
|
* $flags include:
|
2021-09-01 21:04:40 +00:00
|
|
|
* IDBAccessObject::READ_LATEST: Select the data from the primary DB
|
|
|
|
|
* IDBAccessObject::READ_LOCKING : Select & lock the data from the primary DB
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
2021-02-08 16:33:25 +00:00
|
|
|
* @param LinkTarget|PageIdentity $page Calling with LinkTarget is deprecated since 1.36
|
2017-08-27 15:29:18 +00:00
|
|
|
* @param int $revId (optional)
|
|
|
|
|
* @param int $flags Bitfield (optional)
|
|
|
|
|
* @return RevisionRecord|null
|
|
|
|
|
*/
|
2021-02-08 16:33:25 +00:00
|
|
|
public function getRevisionByTitle( $page, $revId = 0, $flags = 0 ) {
|
2017-08-27 15:29:18 +00:00
|
|
|
$conds = [
|
2021-02-08 16:33:25 +00:00
|
|
|
'page_namespace' => $page->getNamespace(),
|
|
|
|
|
'page_title' => $page->getDBkey()
|
2017-08-27 15:29:18 +00:00
|
|
|
];
|
2020-03-28 19:44:25 +00:00
|
|
|
|
2021-02-08 16:33:25 +00:00
|
|
|
if ( $page instanceof LinkTarget ) {
|
|
|
|
|
// Only resolve LinkTarget to a Title when operating in the context of the local wiki (T248756)
|
|
|
|
|
$page = $this->wikiId === WikiAwareEntity::LOCAL ? Title::castFromLinkTarget( $page ) : null;
|
|
|
|
|
}
|
2020-03-28 19:44:25 +00:00
|
|
|
|
2017-08-27 15:29:18 +00:00
|
|
|
if ( $revId ) {
|
|
|
|
|
// Use the specified revision ID.
|
|
|
|
|
// Note that we use newRevisionFromConds here because we want to retry
|
2021-09-01 21:04:40 +00:00
|
|
|
// and fall back to primary DB if the page is not found on a replica.
|
2017-08-27 15:29:18 +00:00
|
|
|
// 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;
|
2021-02-08 16:33:25 +00:00
|
|
|
return $this->newRevisionFromConds( $conds, $flags, $page );
|
2017-08-27 15:29:18 +00:00
|
|
|
} else {
|
|
|
|
|
// Use a join to get the latest revision.
|
|
|
|
|
// Note that we don't use newRevisionFromConds here because we don't want to retry
|
2021-09-01 21:04:40 +00:00
|
|
|
// and fall back to primary DB. The assumption is that we only want to force the fallback
|
2017-08-27 15:29:18 +00:00
|
|
|
// 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';
|
2021-02-08 16:33:25 +00:00
|
|
|
return $this->loadRevisionFromConds( $db, $conds, $flags, $page );
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 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.
|
|
|
|
|
*
|
2021-05-02 23:55:07 +00:00
|
|
|
* MCR migration note: this replaced Revision::newFromPageId
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
|
|
|
|
* $flags include:
|
2021-09-01 21:04:40 +00:00
|
|
|
* IDBAccessObject::READ_LATEST: Select the data from the primary DB (since 1.20)
|
|
|
|
|
* IDBAccessObject::READ_LOCKING : Select & lock the data from the primary DB
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
|
|
|
|
* @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
|
2021-09-01 21:04:40 +00:00
|
|
|
// and fall back to primary DB if the page is not found on a replica.
|
2017-08-27 15:29:18 +00:00
|
|
|
// 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
|
2021-09-01 21:04:40 +00:00
|
|
|
// and fall back to primary DB. The assumption is that we only want to force the fallback
|
2017-08-27 15:29:18 +00:00
|
|
|
// 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';
|
|
|
|
|
|
2020-10-03 19:53:01 +00:00
|
|
|
return $this->loadRevisionFromConds( $db, $conds, $flags );
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 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.
|
|
|
|
|
*
|
2021-05-02 23:55:07 +00:00
|
|
|
* MCR migration note: this replaced Revision::loadFromTimestamp
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
2021-02-08 16:33:25 +00:00
|
|
|
* @param LinkTarget|PageIdentity $page Calling with LinkTarget is deprecated since 1.36
|
2017-08-27 15:29:18 +00:00
|
|
|
* @param string $timestamp
|
2020-03-04 01:15:53 +00:00
|
|
|
* @param int $flags Bitfield (optional) include:
|
2021-09-01 21:04:40 +00:00
|
|
|
* IDBAccessObject::READ_LATEST: Select the data from the primary DB
|
|
|
|
|
* IDBAccessObject::READ_LOCKING: Select & lock the data from the primary DB
|
2020-03-04 01:15:53 +00:00
|
|
|
* Default: IDBAccessObject::READ_NORMAL
|
2017-08-27 15:29:18 +00:00
|
|
|
* @return RevisionRecord|null
|
|
|
|
|
*/
|
2020-03-04 01:15:53 +00:00
|
|
|
public function getRevisionByTimestamp(
|
2021-02-08 16:33:25 +00:00
|
|
|
$page,
|
2020-03-04 01:15:53 +00:00
|
|
|
string $timestamp,
|
|
|
|
|
int $flags = IDBAccessObject::READ_NORMAL
|
|
|
|
|
): ?RevisionRecord {
|
2021-02-08 16:33:25 +00:00
|
|
|
if ( $page instanceof LinkTarget ) {
|
|
|
|
|
// Only resolve LinkTarget to a Title when operating in the context of the local wiki (T248756)
|
|
|
|
|
$page = $this->wikiId === WikiAwareEntity::LOCAL ? Title::castFromLinkTarget( $page ) : null;
|
|
|
|
|
}
|
2020-03-04 01:15:53 +00:00
|
|
|
$db = $this->getDBConnectionRefForQueryFlags( $flags );
|
2017-08-27 15:29:18 +00:00
|
|
|
return $this->newRevisionFromConds(
|
|
|
|
|
[
|
2018-03-18 01:41:45 +00:00
|
|
|
'rev_timestamp' => $db->timestamp( $timestamp ),
|
2021-02-08 16:33:25 +00:00
|
|
|
'page_namespace' => $page->getNamespace(),
|
|
|
|
|
'page_title' => $page->getDBkey()
|
2017-08-27 15:29:18 +00:00
|
|
|
],
|
2020-03-04 01:15:53 +00:00
|
|
|
$flags,
|
2021-02-08 16:33:25 +00:00
|
|
|
$page
|
2017-08-27 15:29:18 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
/**
|
|
|
|
|
* @param int $revId The revision to load slots for.
|
|
|
|
|
* @param int $queryFlags
|
2021-01-20 21:03:12 +00:00
|
|
|
* @param PageIdentity $page
|
2018-04-17 07:49:20 +00:00
|
|
|
*
|
|
|
|
|
* @return SlotRecord[]
|
|
|
|
|
*/
|
2021-01-20 21:03:12 +00:00
|
|
|
private function loadSlotRecords( $revId, $queryFlags, PageIdentity $page ) {
|
2020-08-17 21:44:33 +00:00
|
|
|
$revQuery = $this->getSlotsQueryInfo( [ 'content' ] );
|
2018-04-17 07:49:20 +00:00
|
|
|
|
|
|
|
|
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']
|
|
|
|
|
);
|
|
|
|
|
|
2020-07-23 14:48:27 +00:00
|
|
|
if ( !$res->numRows() && !( $queryFlags & self::READ_LATEST ) ) {
|
2021-05-14 20:04:02 +00:00
|
|
|
// If we found no slots, try looking on the primary database (T212428, T252156)
|
2020-07-23 14:48:27 +00:00
|
|
|
$this->logger->info(
|
|
|
|
|
__METHOD__ . ' falling back to READ_LATEST.',
|
|
|
|
|
[
|
|
|
|
|
'revid' => $revId,
|
|
|
|
|
'trace' => wfBacktrace( true )
|
|
|
|
|
]
|
|
|
|
|
);
|
|
|
|
|
return $this->loadSlotRecords(
|
|
|
|
|
$revId,
|
|
|
|
|
$queryFlags | self::READ_LATEST,
|
2021-01-20 21:03:12 +00:00
|
|
|
$page
|
2020-07-23 14:48:27 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-20 21:03:12 +00:00
|
|
|
return $this->constructSlotRecords( $revId, $res, $queryFlags, $page );
|
2019-05-19 08:48:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Factory method for SlotRecords based on known slot rows.
|
|
|
|
|
*
|
|
|
|
|
* @param int $revId The revision to load slots for.
|
2020-11-13 23:53:36 +00:00
|
|
|
* @param \stdClass[]|IResultWrapper $slotRows
|
2019-05-19 08:48:10 +00:00
|
|
|
* @param int $queryFlags
|
2021-01-20 21:03:12 +00:00
|
|
|
* @param PageIdentity $page
|
2019-09-18 00:25:43 +00:00
|
|
|
* @param array|null $slotContents a map from blobAddress to slot
|
|
|
|
|
* content blob or Content object.
|
2019-05-19 08:48:10 +00:00
|
|
|
*
|
|
|
|
|
* @return SlotRecord[]
|
|
|
|
|
*/
|
2019-09-18 00:25:43 +00:00
|
|
|
private function constructSlotRecords(
|
|
|
|
|
$revId,
|
|
|
|
|
$slotRows,
|
|
|
|
|
$queryFlags,
|
2021-01-20 21:03:12 +00:00
|
|
|
PageIdentity $page,
|
2019-09-18 00:25:43 +00:00
|
|
|
$slotContents = null
|
|
|
|
|
) {
|
2018-04-17 07:49:20 +00:00
|
|
|
$slots = [];
|
|
|
|
|
|
2019-05-19 08:48:10 +00:00
|
|
|
foreach ( $slotRows as $row ) {
|
|
|
|
|
// Resolve role names and model names from in-memory cache, if they were not joined in.
|
|
|
|
|
if ( !isset( $row->role_name ) ) {
|
|
|
|
|
$row->role_name = $this->slotRoleStore->getName( (int)$row->slot_role_id );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( !isset( $row->model_name ) ) {
|
|
|
|
|
if ( isset( $row->content_model ) ) {
|
|
|
|
|
$row->model_name = $this->contentModelStore->getName( (int)$row->content_model );
|
|
|
|
|
} else {
|
|
|
|
|
// We may get here if $row->model_name is set but null, perhaps because it
|
|
|
|
|
// came from rev_content_model, which is NULL for the default model.
|
|
|
|
|
$slotRoleHandler = $this->slotRoleRegistry->getRoleHandler( $row->role_name );
|
2021-01-20 21:03:12 +00:00
|
|
|
$row->model_name = $slotRoleHandler->getDefaultModel( $page );
|
2019-05-19 08:48:10 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-26 12:23:40 +00:00
|
|
|
// We may have a fake blob_data field from getSlotRowsForBatch(), use it!
|
|
|
|
|
if ( isset( $row->blob_data ) ) {
|
|
|
|
|
$slotContents[$row->content_address] = $row->blob_data;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-18 00:25:43 +00:00
|
|
|
$contentCallback = function ( SlotRecord $slot ) use ( $slotContents, $queryFlags ) {
|
|
|
|
|
$blob = null;
|
|
|
|
|
if ( isset( $slotContents[$slot->getAddress()] ) ) {
|
|
|
|
|
$blob = $slotContents[$slot->getAddress()];
|
|
|
|
|
if ( $blob instanceof Content ) {
|
|
|
|
|
return $blob;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return $this->loadSlotContent( $slot, $blob, null, null, $queryFlags );
|
2018-04-17 07:49:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
$slots[$row->role_name] = new SlotRecord( $row, $contentCallback );
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-24 21:10:08 +00:00
|
|
|
if ( !isset( $slots[SlotRecord::MAIN] ) ) {
|
2020-07-23 14:48:27 +00:00
|
|
|
$this->logger->error(
|
|
|
|
|
__METHOD__ . ': Main slot of revision not found in database. See T212428.',
|
|
|
|
|
[
|
|
|
|
|
'revid' => $revId,
|
|
|
|
|
'queryFlags' => $queryFlags,
|
|
|
|
|
'trace' => wfBacktrace( true )
|
|
|
|
|
]
|
2020-07-02 00:46:04 +00:00
|
|
|
);
|
|
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
throw new RevisionAccessException(
|
2020-07-02 00:46:04 +00:00
|
|
|
'Main slot of revision not found in database. See T212428.'
|
2018-04-17 07:49:20 +00:00
|
|
|
);
|
2019-06-12 13:35:59 +00:00
|
|
|
}
|
2018-04-17 07:49:20 +00:00
|
|
|
|
|
|
|
|
return $slots;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2019-05-19 08:48:10 +00:00
|
|
|
* Factory method for RevisionSlots based on a revision ID.
|
2018-04-17 07:49:20 +00:00
|
|
|
*
|
|
|
|
|
* @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
|
2020-11-13 23:53:36 +00:00
|
|
|
* @param \stdClass $revisionRow
|
|
|
|
|
* @param \stdClass[]|null $slotRows
|
2018-04-17 07:49:20 +00:00
|
|
|
* @param int $queryFlags
|
2021-01-20 21:03:12 +00:00
|
|
|
* @param PageIdentity $page
|
2018-04-17 07:49:20 +00:00
|
|
|
*
|
|
|
|
|
* @return RevisionSlots
|
|
|
|
|
* @throws MWException
|
|
|
|
|
*/
|
|
|
|
|
private function newRevisionSlots(
|
|
|
|
|
$revId,
|
|
|
|
|
$revisionRow,
|
2019-05-19 08:48:10 +00:00
|
|
|
$slotRows,
|
2018-04-17 07:49:20 +00:00
|
|
|
$queryFlags,
|
2021-01-20 21:03:12 +00:00
|
|
|
PageIdentity $page
|
2018-04-17 07:49:20 +00:00
|
|
|
) {
|
2019-05-19 08:48:10 +00:00
|
|
|
if ( $slotRows ) {
|
|
|
|
|
$slots = new RevisionSlots(
|
2021-01-20 21:03:12 +00:00
|
|
|
$this->constructSlotRecords( $revId, $slotRows, $queryFlags, $page )
|
2019-05-19 08:48:10 +00:00
|
|
|
);
|
2018-04-17 07:49:20 +00:00
|
|
|
} else {
|
|
|
|
|
// XXX: do we need the same kind of caching here
|
|
|
|
|
// that getKnownCurrentRevision uses (if $revId == page_latest?)
|
|
|
|
|
|
2021-01-20 21:03:12 +00:00
|
|
|
$slots = new RevisionSlots( function () use( $revId, $queryFlags, $page ) {
|
|
|
|
|
return $this->loadSlotRecords( $revId, $queryFlags, $page );
|
2018-04-17 07:49:20 +00:00
|
|
|
} );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $slots;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-27 15:29:18 +00:00
|
|
|
/**
|
2021-05-02 23:55:07 +00:00
|
|
|
* Make a fake RevisionRecord object from an archive table row. This is queried
|
2017-08-27 15:29:18 +00:00
|
|
|
* for permissions or even inserted (as in Special:Undelete)
|
|
|
|
|
*
|
2021-04-19 00:53:24 +00:00
|
|
|
* The user ID and user name may optionally be supplied using the aliases
|
|
|
|
|
* ar_user and ar_user_text (the names of fields which existed before
|
|
|
|
|
* MW 1.34).
|
|
|
|
|
*
|
2021-05-02 23:55:07 +00:00
|
|
|
* MCR migration note: this replaced Revision::newFromArchiveRow
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
2020-11-13 23:53:36 +00:00
|
|
|
* @param \stdClass $row
|
2017-08-27 15:29:18 +00:00
|
|
|
* @param int $queryFlags
|
2021-02-08 16:33:25 +00:00
|
|
|
* @param PageIdentity|null $page
|
2017-08-27 15:29:18 +00:00
|
|
|
* @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,
|
2021-02-08 16:33:25 +00:00
|
|
|
PageIdentity $page = null,
|
2017-08-27 15:29:18 +00:00
|
|
|
array $overrides = []
|
2020-03-30 20:20:27 +00:00
|
|
|
) {
|
2021-02-08 16:33:25 +00:00
|
|
|
return $this->newRevisionFromArchiveRowAndSlots( $row, null, $queryFlags, $page, $overrides );
|
2020-03-30 20:20:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @see RevisionFactory::newRevisionFromRow
|
|
|
|
|
*
|
2021-05-02 23:55:07 +00:00
|
|
|
* MCR migration note: this replaced Revision::newFromRow
|
2020-03-30 20:20:27 +00:00
|
|
|
*
|
2020-11-13 23:53:36 +00:00
|
|
|
* @param \stdClass $row A database row generated from a query based on getQueryInfo()
|
2020-03-30 20:20:27 +00:00
|
|
|
* @param int $queryFlags
|
2021-01-20 21:03:12 +00:00
|
|
|
* @param PageIdentity|null $page Preloaded page object
|
2020-03-30 20:20:27 +00:00
|
|
|
* @param bool $fromCache if true, the returned RevisionRecord will ensure that no stale
|
|
|
|
|
* data is returned from getters, by querying the database as needed
|
|
|
|
|
* @return RevisionRecord
|
|
|
|
|
*/
|
|
|
|
|
public function newRevisionFromRow(
|
|
|
|
|
$row,
|
|
|
|
|
$queryFlags = 0,
|
2021-01-20 21:03:12 +00:00
|
|
|
PageIdentity $page = null,
|
2020-03-30 20:20:27 +00:00
|
|
|
$fromCache = false
|
|
|
|
|
) {
|
2021-01-20 21:03:12 +00:00
|
|
|
return $this->newRevisionFromRowAndSlots( $row, null, $queryFlags, $page, $fromCache );
|
2020-03-30 20:20:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @see newRevisionFromArchiveRow()
|
|
|
|
|
* @since 1.35
|
|
|
|
|
*
|
2021-07-30 16:29:14 +00:00
|
|
|
* @param stdClass $row
|
|
|
|
|
* @param null|stdClass[]|RevisionSlots $slots
|
2020-03-30 20:20:27 +00:00
|
|
|
* - Database rows generated from a query based on getSlotsQueryInfo
|
|
|
|
|
* with the 'content' flag set. Or
|
|
|
|
|
* - RevisionSlots instance
|
|
|
|
|
* @param int $queryFlags
|
2021-02-08 16:33:25 +00:00
|
|
|
* @param PageIdentity|null $page
|
2020-03-30 20:20:27 +00:00
|
|
|
* @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 newRevisionFromArchiveRowAndSlots(
|
2021-07-30 16:29:14 +00:00
|
|
|
stdClass $row,
|
2020-03-30 20:20:27 +00:00
|
|
|
$slots,
|
2021-07-30 16:29:14 +00:00
|
|
|
int $queryFlags = 0,
|
|
|
|
|
?PageIdentity $page = null,
|
2020-03-30 20:20:27 +00:00
|
|
|
array $overrides = []
|
2017-08-27 15:29:18 +00:00
|
|
|
) {
|
2021-02-08 16:33:25 +00:00
|
|
|
if ( !$page && isset( $overrides['title'] ) ) {
|
|
|
|
|
if ( !( $overrides['title'] instanceof PageIdentity ) ) {
|
|
|
|
|
throw new MWException( 'title field override must contain a PageIdentity object.' );
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
2021-02-08 16:33:25 +00:00
|
|
|
$page = $overrides['title'];
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
2021-02-08 16:33:25 +00:00
|
|
|
if ( !isset( $page ) ) {
|
2017-08-27 15:29:18 +00:00
|
|
|
if ( isset( $row->ar_namespace ) && isset( $row->ar_title ) ) {
|
2021-02-08 16:33:25 +00:00
|
|
|
$page = Title::makeTitle( $row->ar_namespace, $row->ar_title );
|
2017-08-27 15:29:18 +00:00
|
|
|
} 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 {
|
2021-02-04 02:43:09 +00:00
|
|
|
$user = $this->actorStore->newActorFromRowFields(
|
2017-10-06 22:17:58 +00:00
|
|
|
$row->ar_user ?? null,
|
|
|
|
|
$row->ar_user_text ?? null,
|
2021-02-04 02:43:09 +00:00
|
|
|
$row->ar_actor ?? null
|
2017-09-12 17:12:29 +00:00
|
|
|
);
|
|
|
|
|
} catch ( InvalidArgumentException $ex ) {
|
2021-02-04 02:43:09 +00:00
|
|
|
$this->logger->warning( 'Could not load user for archive revision {rev_id}', [
|
|
|
|
|
'ar_rev_id' => $row->ar_rev_id,
|
|
|
|
|
'ar_actor' => $row->ar_actor ?? 'null',
|
|
|
|
|
'ar_user_text' => $row->ar_user_text ?? 'null',
|
|
|
|
|
'ar_user' => $row->ar_user ?? 'null',
|
|
|
|
|
'exception' => $ex
|
|
|
|
|
] );
|
|
|
|
|
$user = $this->actorStore->getUnknownActor();
|
2019-11-26 20:59:00 +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
|
|
|
|
2020-03-30 20:20:27 +00:00
|
|
|
if ( !( $slots instanceof RevisionSlots ) ) {
|
2021-02-08 16:33:25 +00:00
|
|
|
$slots = $this->newRevisionSlots( $row->ar_rev_id, $row, $slots, $queryFlags, $page );
|
2020-03-30 20:20:27 +00:00
|
|
|
}
|
2021-02-08 16:33:25 +00:00
|
|
|
return new RevisionArchiveRecord( $page, $user, $comment, $row, $slots, $this->wikiId );
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2020-03-30 20:20:27 +00:00
|
|
|
* @see newFromRevisionRow()
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
2021-07-30 16:29:14 +00:00
|
|
|
* @param stdClass $row A database row generated from a query based on getQueryInfo()
|
|
|
|
|
* @param null|stdClass[]|RevisionSlots $slots
|
2020-03-30 20:20:27 +00:00
|
|
|
* - Database rows generated from a query based on getSlotsQueryInfo
|
|
|
|
|
* with the 'content' flag set. Or
|
2019-09-18 00:25:43 +00:00
|
|
|
* - RevisionSlots instance
|
2019-05-19 08:48:10 +00:00
|
|
|
* @param int $queryFlags
|
2021-01-20 21:03:12 +00:00
|
|
|
* @param PageIdentity|null $page
|
2019-05-19 08:48:10 +00:00
|
|
|
* @param bool $fromCache if true, the returned RevisionRecord will ensure that no stale
|
|
|
|
|
* data is returned from getters, by querying the database as needed
|
|
|
|
|
*
|
|
|
|
|
* @return RevisionRecord
|
|
|
|
|
* @throws MWException
|
2021-07-19 11:56:42 +00:00
|
|
|
* @throws RevisionAccessException
|
2019-05-19 08:48:10 +00:00
|
|
|
* @see RevisionFactory::newRevisionFromRow
|
|
|
|
|
*/
|
|
|
|
|
public function newRevisionFromRowAndSlots(
|
2021-07-30 16:29:14 +00:00
|
|
|
stdClass $row,
|
2019-09-18 00:25:43 +00:00
|
|
|
$slots,
|
2021-07-30 16:29:14 +00:00
|
|
|
int $queryFlags = 0,
|
|
|
|
|
?PageIdentity $page = null,
|
|
|
|
|
bool $fromCache = false
|
2019-02-27 21:26:17 +00:00
|
|
|
) {
|
2021-01-20 21:03:12 +00:00
|
|
|
if ( !$page ) {
|
2021-03-15 18:09:19 +00:00
|
|
|
if ( isset( $row->page_id )
|
|
|
|
|
&& isset( $row->page_namespace )
|
|
|
|
|
&& isset( $row->page_title )
|
|
|
|
|
) {
|
2021-03-17 22:13:35 +00:00
|
|
|
$page = new PageIdentityValue(
|
|
|
|
|
(int)$row->page_id,
|
|
|
|
|
(int)$row->page_namespace,
|
|
|
|
|
$row->page_title,
|
|
|
|
|
$this->wikiId
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$page = $this->wrapPage( $page );
|
2021-03-15 18:09:19 +00:00
|
|
|
} else {
|
|
|
|
|
$pageId = (int)( $row->rev_page ?? 0 );
|
|
|
|
|
$revId = (int)( $row->rev_id ?? 0 );
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2021-03-15 18:09:19 +00:00
|
|
|
$page = $this->getPage( $pageId, $revId, $queryFlags );
|
|
|
|
|
}
|
2020-04-09 12:06:22 +00:00
|
|
|
} else {
|
2021-04-28 09:20:42 +00:00
|
|
|
$page = $this->ensureRevisionRowMatchesPage( $row, $page );
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
2021-07-19 11:56:42 +00:00
|
|
|
if ( !$page ) {
|
|
|
|
|
// This should already have been caught about, but apparently
|
|
|
|
|
// it not always is, see T286877.
|
|
|
|
|
throw new RevisionAccessException(
|
|
|
|
|
"Failed to determine page associated with revision {$row->rev_id}"
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-12 17:12:29 +00:00
|
|
|
try {
|
2021-02-04 02:43:09 +00:00
|
|
|
$user = $this->actorStore->newActorFromRowFields(
|
2017-10-06 22:17:58 +00:00
|
|
|
$row->rev_user ?? null,
|
|
|
|
|
$row->rev_user_text ?? null,
|
2021-02-04 02:43:09 +00:00
|
|
|
$row->rev_actor ?? null
|
2017-09-12 17:12:29 +00:00
|
|
|
);
|
|
|
|
|
} catch ( InvalidArgumentException $ex ) {
|
2021-02-04 02:43:09 +00:00
|
|
|
$this->logger->warning( 'Could not load user for revision {rev_id}', [
|
|
|
|
|
'rev_id' => $row->rev_id,
|
|
|
|
|
'rev_actor' => $row->rev_actor ?? 'null',
|
|
|
|
|
'rev_user_text' => $row->rev_user_text ?? 'null',
|
|
|
|
|
'rev_user' => $row->rev_user ?? 'null',
|
|
|
|
|
'exception' => $ex
|
|
|
|
|
] );
|
|
|
|
|
$user = $this->actorStore->getUnknownActor();
|
2017-09-12 17:12:29 +00:00
|
|
|
}
|
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
|
|
|
|
2019-09-18 00:25:43 +00:00
|
|
|
if ( !( $slots instanceof RevisionSlots ) ) {
|
2021-01-20 21:03:12 +00:00
|
|
|
$slots = $this->newRevisionSlots( $row->rev_id, $row, $slots, $queryFlags, $page );
|
2019-09-18 00:25:43 +00:00
|
|
|
}
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2021-05-02 23:55:07 +00:00
|
|
|
// If this is a cached row, instantiate a cache-aware RevisionRecord to avoid stale data.
|
2019-02-27 21:26:17 +00:00
|
|
|
if ( $fromCache ) {
|
|
|
|
|
$rev = new RevisionStoreCacheRecord(
|
|
|
|
|
function ( $revId ) use ( $queryFlags ) {
|
|
|
|
|
$db = $this->getDBConnectionRefForQueryFlags( $queryFlags );
|
2020-08-05 19:01:33 +00:00
|
|
|
$row = $this->fetchRevisionRowFromConds(
|
2019-02-27 21:26:17 +00:00
|
|
|
$db,
|
|
|
|
|
[ 'rev_id' => intval( $revId ) ]
|
|
|
|
|
);
|
2020-08-05 19:01:33 +00:00
|
|
|
if ( !$row && !( $queryFlags & self::READ_LATEST ) ) {
|
2021-05-14 20:04:02 +00:00
|
|
|
// If we found no slots, try looking on the primary database (T259738)
|
2020-08-05 19:01:33 +00:00
|
|
|
$this->logger->info(
|
2021-09-03 22:52:31 +00:00
|
|
|
'RevisionStoreCacheRecord refresh callback falling back to READ_LATEST.',
|
2020-08-05 19:01:33 +00:00
|
|
|
[
|
|
|
|
|
'revid' => $revId,
|
|
|
|
|
'trace' => wfBacktrace( true )
|
|
|
|
|
]
|
|
|
|
|
);
|
|
|
|
|
$dbw = $this->getDBConnectionRefForQueryFlags( self::READ_LATEST );
|
2021-01-23 01:00:26 +00:00
|
|
|
$row = $this->fetchRevisionRowFromConds(
|
2020-08-05 19:01:33 +00:00
|
|
|
$dbw,
|
|
|
|
|
[ 'rev_id' => intval( $revId ) ]
|
|
|
|
|
);
|
|
|
|
|
}
|
2021-01-23 01:00:26 +00:00
|
|
|
if ( !$row ) {
|
|
|
|
|
return [ null, null ];
|
|
|
|
|
}
|
|
|
|
|
return [
|
|
|
|
|
$row->rev_deleted,
|
2021-02-04 02:43:09 +00:00
|
|
|
$this->actorStore->newActorFromRowFields(
|
2021-01-23 01:00:26 +00:00
|
|
|
$row->rev_user ?? null,
|
|
|
|
|
$row->rev_user_text ?? null,
|
2021-02-04 02:43:09 +00:00
|
|
|
$row->rev_actor ?? null
|
2021-01-23 01:00:26 +00:00
|
|
|
)
|
|
|
|
|
];
|
2019-02-27 21:26:17 +00:00
|
|
|
},
|
2021-02-04 17:44:39 +00:00
|
|
|
$page, $user, $comment, $row, $slots, $this->wikiId
|
2019-02-27 21:26:17 +00:00
|
|
|
);
|
|
|
|
|
} else {
|
|
|
|
|
$rev = new RevisionStoreRecord(
|
2021-02-04 17:44:39 +00:00
|
|
|
$page, $user, $comment, $row, $slots, $this->wikiId );
|
2019-02-27 21:26:17 +00:00
|
|
|
}
|
|
|
|
|
return $rev;
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
2020-04-09 12:06:22 +00:00
|
|
|
/**
|
|
|
|
|
* Check that the given row matches the given Title object.
|
2021-09-01 21:04:40 +00:00
|
|
|
* When a mismatch is detected, this tries to re-load the title from primary DB,
|
2020-04-09 12:06:22 +00:00
|
|
|
* to avoid spurious errors during page moves.
|
|
|
|
|
*
|
2020-11-13 23:53:36 +00:00
|
|
|
* @param \stdClass $row
|
2021-04-28 09:20:42 +00:00
|
|
|
* @param PageIdentity $page
|
2020-04-09 12:06:22 +00:00
|
|
|
* @param array $context
|
2021-04-28 09:20:42 +00:00
|
|
|
*
|
|
|
|
|
* @return Pageidentity
|
2020-04-09 12:06:22 +00:00
|
|
|
*/
|
2021-04-28 09:20:42 +00:00
|
|
|
private function ensureRevisionRowMatchesPage( $row, PageIdentity $page, $context = [] ) {
|
2020-04-28 14:50:03 +00:00
|
|
|
$revId = (int)( $row->rev_id ?? 0 );
|
|
|
|
|
$revPageId = (int)( $row->rev_page ?? 0 ); // XXX: also check $row->page_id?
|
2021-04-28 09:20:42 +00:00
|
|
|
$expectedPageId = $page->getId( $this->wikiId );
|
2020-04-09 12:06:22 +00:00
|
|
|
// Avoid fatal error when the Title's ID changed, T246720
|
2021-04-28 09:20:42 +00:00
|
|
|
if ( $revPageId && $expectedPageId && $revPageId !== $expectedPageId ) {
|
|
|
|
|
// NOTE: PageStore::getPageByReference may use the page ID, which we don't want here.
|
|
|
|
|
$pageRec = $this->pageStore->getPageByName(
|
|
|
|
|
$page->getNamespace(),
|
|
|
|
|
$page->getDBkey(),
|
|
|
|
|
PageStore::READ_LATEST
|
|
|
|
|
);
|
|
|
|
|
$masterPageId = $pageRec->getId( $this->wikiId );
|
|
|
|
|
$masterLatest = $pageRec->getLatest( $this->wikiId );
|
2020-04-09 12:06:22 +00:00
|
|
|
if ( $revPageId === $masterPageId ) {
|
2021-04-28 09:20:42 +00:00
|
|
|
if ( $page instanceof Title ) {
|
|
|
|
|
// If we were using a Title object, keep using it, but update the page ID.
|
|
|
|
|
// This way, we don't unexpectedly mix Titles with immutable value objects.
|
|
|
|
|
$page->resetArticleID( $masterPageId );
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
$page = $pageRec;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$this->logger->info(
|
2020-04-09 12:06:22 +00:00
|
|
|
"Encountered stale Title object",
|
|
|
|
|
[
|
2021-04-28 09:20:42 +00:00
|
|
|
'page_id_stale' => $expectedPageId,
|
2020-04-09 12:06:22 +00:00
|
|
|
'page_id_reloaded' => $masterPageId,
|
|
|
|
|
'page_latest' => $masterLatest,
|
|
|
|
|
'rev_id' => $revId,
|
|
|
|
|
'trace' => wfBacktrace()
|
|
|
|
|
] + $context
|
|
|
|
|
);
|
|
|
|
|
} else {
|
2021-04-28 09:20:42 +00:00
|
|
|
$expectedTitle = (string)$page;
|
|
|
|
|
if ( $page instanceof Title ) {
|
|
|
|
|
// If we started with a Title, keep using a Title.
|
|
|
|
|
$page = $this->titleFactory->newFromID( $revPageId );
|
|
|
|
|
} else {
|
|
|
|
|
$page = $pageRec;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// This could happen if a caller to e.g. getRevisionById supplied a Title that is
|
|
|
|
|
// plain wrong. In this case, we should ideally throw an IllegalArgumentException.
|
|
|
|
|
// However, it is more likely that we encountered a race condition during a page
|
|
|
|
|
// move (T268910, T279832) or database corruption (T263340). That situation
|
|
|
|
|
// should not be ignored, but we can allow the request to continue in a reasonable
|
|
|
|
|
// manner without breaking things for the user.
|
|
|
|
|
$this->logger->error(
|
|
|
|
|
"Encountered mismatching Title object (see T259022, T268910, T279832, T263340)",
|
|
|
|
|
[
|
|
|
|
|
'expected_page_id' => $masterPageId,
|
|
|
|
|
'expected_page_title' => $expectedTitle,
|
|
|
|
|
'rev_page' => $revPageId,
|
|
|
|
|
'rev_page_title' => (string)$page,
|
|
|
|
|
'page_latest' => $masterLatest,
|
|
|
|
|
'rev_id' => $revId,
|
|
|
|
|
'trace' => wfBacktrace()
|
|
|
|
|
] + $context
|
2020-04-09 12:06:22 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-01-20 21:03:12 +00:00
|
|
|
|
2021-04-28 09:20:42 +00:00
|
|
|
return $page;
|
2021-01-20 21:03:12 +00:00
|
|
|
}
|
|
|
|
|
|
2019-08-30 18:26:00 +00:00
|
|
|
/**
|
|
|
|
|
* Construct a RevisionRecord instance for each row in $rows,
|
|
|
|
|
* and return them as an associative array indexed by revision ID.
|
2020-03-30 20:20:27 +00:00
|
|
|
* Use getQueryInfo() or getArchiveQueryInfo() to construct the
|
|
|
|
|
* query that produces the rows.
|
|
|
|
|
*
|
2020-11-13 23:53:36 +00:00
|
|
|
* @param IResultWrapper|\stdClass[] $rows the rows to construct revision records from
|
2019-08-30 18:26:00 +00:00
|
|
|
* @param array $options Supports the following options:
|
|
|
|
|
* 'slots' - whether metadata about revision slots should be
|
|
|
|
|
* loaded immediately. Supports falsy or truthy value as well
|
2019-09-26 12:23:40 +00:00
|
|
|
* as an explicit list of slot role names. The main slot will
|
|
|
|
|
* always be loaded.
|
2020-03-30 20:20:27 +00:00
|
|
|
* 'content' - whether the actual content of the slots should be
|
2019-09-18 00:25:43 +00:00
|
|
|
* preloaded.
|
2020-03-30 20:20:27 +00:00
|
|
|
* 'archive' - whether the rows where generated using getArchiveQueryInfo(),
|
|
|
|
|
* rather than getQueryInfo.
|
2019-08-30 18:26:00 +00:00
|
|
|
* @param int $queryFlags
|
2021-02-08 16:33:25 +00:00
|
|
|
* @param PageIdentity|null $page The page to which all the revision rows belong, if there
|
|
|
|
|
* is such a page and the caller has it handy, so we don't have to look it up again.
|
2019-09-24 17:18:08 +00:00
|
|
|
* If this parameter is given and any of the rows has a rev_page_id that is different
|
2021-02-08 16:33:25 +00:00
|
|
|
* from Article Id associated with the page, an InvalidArgumentException is thrown.
|
2019-09-24 17:18:08 +00:00
|
|
|
*
|
2019-08-30 18:26:00 +00:00
|
|
|
* @return StatusValue a status with a RevisionRecord[] of successfully fetched revisions
|
|
|
|
|
* and an array of errors for the revisions failed to fetch.
|
|
|
|
|
*/
|
|
|
|
|
public function newRevisionsFromBatch(
|
|
|
|
|
$rows,
|
|
|
|
|
array $options = [],
|
|
|
|
|
$queryFlags = 0,
|
2021-02-08 16:33:25 +00:00
|
|
|
PageIdentity $page = null
|
2019-08-30 18:26:00 +00:00
|
|
|
) {
|
|
|
|
|
$result = new StatusValue();
|
2020-03-30 20:20:27 +00:00
|
|
|
$archiveMode = $options['archive'] ?? false;
|
|
|
|
|
|
|
|
|
|
if ( $archiveMode ) {
|
|
|
|
|
$revIdField = 'ar_rev_id';
|
|
|
|
|
} else {
|
|
|
|
|
$revIdField = 'rev_id';
|
|
|
|
|
}
|
2019-08-30 18:26:00 +00:00
|
|
|
|
|
|
|
|
$rowsByRevId = [];
|
2019-09-25 20:17:38 +00:00
|
|
|
$pageIdsToFetchTitles = [];
|
2020-03-30 20:20:27 +00:00
|
|
|
$titlesByPageKey = [];
|
2019-08-30 18:26:00 +00:00
|
|
|
foreach ( $rows as $row ) {
|
2020-03-30 20:20:27 +00:00
|
|
|
if ( isset( $rowsByRevId[$row->$revIdField] ) ) {
|
2019-09-24 17:39:54 +00:00
|
|
|
$result->warning(
|
2020-04-28 19:28:59 +00:00
|
|
|
'internalerror_info',
|
2020-03-30 20:20:27 +00:00
|
|
|
"Duplicate rows in newRevisionsFromBatch, $revIdField {$row->$revIdField}"
|
2019-09-24 17:39:54 +00:00
|
|
|
);
|
2019-08-30 18:26:00 +00:00
|
|
|
}
|
2020-03-30 20:20:27 +00:00
|
|
|
|
|
|
|
|
// Attach a page key to the row, so we can find and reuse Title objects easily.
|
|
|
|
|
$row->_page_key =
|
|
|
|
|
$archiveMode ? $row->ar_namespace . ':' . $row->ar_title : $row->rev_page;
|
|
|
|
|
|
2021-02-08 16:33:25 +00:00
|
|
|
if ( $page ) {
|
|
|
|
|
if ( !$archiveMode && $row->rev_page != $this->getArticleId( $page ) ) {
|
2020-03-30 20:20:27 +00:00
|
|
|
throw new InvalidArgumentException(
|
|
|
|
|
"Revision {$row->$revIdField} doesn't belong to page "
|
2021-02-08 16:33:25 +00:00
|
|
|
. $this->getArticleId( $page )
|
2020-03-30 20:20:27 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( $archiveMode
|
2021-02-08 16:33:25 +00:00
|
|
|
&& ( $row->ar_namespace != $page->getNamespace()
|
|
|
|
|
|| $row->ar_title !== $page->getDBkey() )
|
2020-03-30 20:20:27 +00:00
|
|
|
) {
|
|
|
|
|
throw new InvalidArgumentException(
|
|
|
|
|
"Revision {$row->$revIdField} doesn't belong to page "
|
2021-02-08 16:33:25 +00:00
|
|
|
. $page
|
2020-03-30 20:20:27 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
} elseif ( !isset( $titlesByPageKey[ $row->_page_key ] ) ) {
|
|
|
|
|
if ( isset( $row->page_namespace ) && isset( $row->page_title )
|
|
|
|
|
// This should always be true, but just in case we don't have a page_id
|
2019-09-25 20:17:38 +00:00
|
|
|
// set or it doesn't match rev_page, let's fetch the title again.
|
2020-03-30 20:20:27 +00:00
|
|
|
&& isset( $row->page_id ) && isset( $row->rev_page )
|
|
|
|
|
&& $row->rev_page === $row->page_id
|
2019-09-25 20:17:38 +00:00
|
|
|
) {
|
2020-03-30 20:20:27 +00:00
|
|
|
$titlesByPageKey[ $row->_page_key ] = Title::newFromRow( $row );
|
|
|
|
|
} elseif ( $archiveMode ) {
|
|
|
|
|
// Can't look up deleted pages by ID, but we have namespace and title
|
|
|
|
|
$titlesByPageKey[ $row->_page_key ] =
|
|
|
|
|
Title::makeTitle( $row->ar_namespace, $row->ar_title );
|
2019-09-25 20:17:38 +00:00
|
|
|
} else {
|
|
|
|
|
$pageIdsToFetchTitles[] = $row->rev_page;
|
|
|
|
|
}
|
2019-08-30 18:26:00 +00:00
|
|
|
}
|
2020-03-30 20:20:27 +00:00
|
|
|
$rowsByRevId[$row->$revIdField] = $row;
|
2019-08-30 18:26:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( empty( $rowsByRevId ) ) {
|
|
|
|
|
$result->setResult( true, [] );
|
|
|
|
|
return $result;
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-08 16:33:25 +00:00
|
|
|
// If the page is not supplied, batch-fetch Title objects.
|
|
|
|
|
if ( $page ) {
|
2020-03-30 20:20:27 +00:00
|
|
|
// same logic as for $row->_page_key above
|
|
|
|
|
$pageKey = $archiveMode
|
2021-02-08 16:33:25 +00:00
|
|
|
? $page->getNamespace() . ':' . $page->getDBkey()
|
|
|
|
|
: $this->getArticleId( $page );
|
2020-03-30 20:20:27 +00:00
|
|
|
|
2021-02-08 16:33:25 +00:00
|
|
|
$titlesByPageKey[$pageKey] = $page;
|
2019-09-25 20:17:38 +00:00
|
|
|
} elseif ( !empty( $pageIdsToFetchTitles ) ) {
|
2020-03-30 20:20:27 +00:00
|
|
|
// Note: when we fetch titles by ID, the page key is also the ID.
|
|
|
|
|
// We should never get here if $archiveMode is true.
|
|
|
|
|
Assert::invariant( !$archiveMode, 'Titles are not loaded by ID in archive mode.' );
|
|
|
|
|
|
2019-09-25 20:17:38 +00:00
|
|
|
$pageIdsToFetchTitles = array_unique( $pageIdsToFetchTitles );
|
|
|
|
|
foreach ( Title::newFromIDs( $pageIdsToFetchTitles ) as $t ) {
|
2020-03-30 20:20:27 +00:00
|
|
|
$titlesByPageKey[$t->getArticleID()] = $t;
|
2019-08-30 18:26:00 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-30 20:20:27 +00:00
|
|
|
// which method to use for creating RevisionRecords
|
|
|
|
|
$newRevisionRecord = [
|
|
|
|
|
$this,
|
|
|
|
|
$archiveMode ? 'newRevisionFromArchiveRowAndSlots' : 'newRevisionFromRowAndSlots'
|
|
|
|
|
];
|
|
|
|
|
|
2019-12-17 16:20:32 +00:00
|
|
|
if ( !isset( $options['slots'] ) ) {
|
2020-03-30 20:20:27 +00:00
|
|
|
$result->setResult(
|
|
|
|
|
true,
|
|
|
|
|
array_map(
|
2021-02-10 22:31:02 +00:00
|
|
|
static function ( $row )
|
2020-04-28 19:28:59 +00:00
|
|
|
use ( $queryFlags, $titlesByPageKey, $result, $newRevisionRecord, $revIdField ) {
|
2020-03-30 20:20:27 +00:00
|
|
|
try {
|
2020-04-28 19:28:59 +00:00
|
|
|
if ( !isset( $titlesByPageKey[$row->_page_key] ) ) {
|
|
|
|
|
$result->warning(
|
|
|
|
|
'internalerror_info',
|
|
|
|
|
"Couldn't find title for rev {$row->$revIdField} "
|
|
|
|
|
. "(page key {$row->_page_key})"
|
|
|
|
|
);
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2020-03-30 20:20:27 +00:00
|
|
|
return $newRevisionRecord( $row, null, $queryFlags,
|
2020-04-28 19:28:59 +00:00
|
|
|
$titlesByPageKey[ $row->_page_key ] );
|
2020-03-30 20:20:27 +00:00
|
|
|
} catch ( MWException $e ) {
|
2020-04-28 19:28:59 +00:00
|
|
|
$result->warning( 'internalerror_info', $e->getMessage() );
|
2020-03-30 20:20:27 +00:00
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
$rowsByRevId
|
|
|
|
|
)
|
2019-08-30 18:26:00 +00:00
|
|
|
);
|
|
|
|
|
return $result;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-26 12:23:40 +00:00
|
|
|
$slotRowOptions = [
|
|
|
|
|
'slots' => $options['slots'] ?? true,
|
|
|
|
|
'blobs' => $options['content'] ?? false,
|
|
|
|
|
];
|
2019-08-30 18:26:00 +00:00
|
|
|
|
2019-09-26 12:23:40 +00:00
|
|
|
if ( is_array( $slotRowOptions['slots'] )
|
|
|
|
|
&& !in_array( SlotRecord::MAIN, $slotRowOptions['slots'] )
|
|
|
|
|
) {
|
|
|
|
|
// Make sure the main slot is always loaded, RevisionRecord requires this.
|
|
|
|
|
$slotRowOptions['slots'][] = SlotRecord::MAIN;
|
2019-08-30 18:26:00 +00:00
|
|
|
}
|
2019-09-18 00:25:43 +00:00
|
|
|
|
2019-09-26 12:23:40 +00:00
|
|
|
$slotRowsStatus = $this->getSlotRowsForBatch( $rowsByRevId, $slotRowOptions, $queryFlags );
|
|
|
|
|
|
|
|
|
|
$result->merge( $slotRowsStatus );
|
|
|
|
|
$slotRowsByRevId = $slotRowsStatus->getValue();
|
2019-09-18 00:25:43 +00:00
|
|
|
|
2020-03-30 20:20:27 +00:00
|
|
|
$result->setResult(
|
|
|
|
|
true,
|
|
|
|
|
array_map(
|
|
|
|
|
function ( $row )
|
|
|
|
|
use ( $slotRowsByRevId, $queryFlags, $titlesByPageKey, $result,
|
|
|
|
|
$revIdField, $newRevisionRecord
|
|
|
|
|
) {
|
|
|
|
|
if ( !isset( $slotRowsByRevId[$row->$revIdField] ) ) {
|
|
|
|
|
$result->warning(
|
2020-04-28 19:28:59 +00:00
|
|
|
'internalerror_info',
|
2020-03-30 20:20:27 +00:00
|
|
|
"Couldn't find slots for rev {$row->$revIdField}"
|
|
|
|
|
);
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2020-04-28 19:28:59 +00:00
|
|
|
if ( !isset( $titlesByPageKey[$row->_page_key] ) ) {
|
|
|
|
|
$result->warning(
|
|
|
|
|
'internalerror_info',
|
|
|
|
|
"Couldn't find title for rev {$row->$revIdField} "
|
|
|
|
|
. "(page key {$row->_page_key})"
|
|
|
|
|
);
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2020-03-30 20:20:27 +00:00
|
|
|
try {
|
|
|
|
|
return $newRevisionRecord(
|
|
|
|
|
$row,
|
|
|
|
|
new RevisionSlots(
|
|
|
|
|
$this->constructSlotRecords(
|
|
|
|
|
$row->$revIdField,
|
|
|
|
|
$slotRowsByRevId[$row->$revIdField],
|
|
|
|
|
$queryFlags,
|
2020-04-28 19:28:59 +00:00
|
|
|
$titlesByPageKey[$row->_page_key]
|
2020-03-30 20:20:27 +00:00
|
|
|
)
|
|
|
|
|
),
|
|
|
|
|
$queryFlags,
|
|
|
|
|
$titlesByPageKey[$row->_page_key]
|
|
|
|
|
);
|
|
|
|
|
} catch ( MWException $e ) {
|
2020-04-28 19:28:59 +00:00
|
|
|
$result->warning( 'internalerror_info', $e->getMessage() );
|
2020-03-30 20:20:27 +00:00
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
$rowsByRevId
|
|
|
|
|
)
|
|
|
|
|
);
|
2019-08-30 18:26:00 +00:00
|
|
|
return $result;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-26 12:23:40 +00:00
|
|
|
/**
|
|
|
|
|
* Gets the slot rows associated with a batch of revisions.
|
|
|
|
|
* The serialized content of each slot can be included by setting the 'blobs' option.
|
|
|
|
|
* Callers are responsible for unserializing and interpreting the content blobs
|
|
|
|
|
* based on the model_name and role_name fields.
|
|
|
|
|
*
|
2020-03-30 20:20:27 +00:00
|
|
|
* @param Traversable|array $rowsOrIds list of revision ids, or revision or archive rows
|
|
|
|
|
* from a db query.
|
2019-09-26 12:23:40 +00:00
|
|
|
* @param array $options Supports the following options:
|
|
|
|
|
* 'slots' - a list of slot role names to fetch. If omitted or true or null,
|
|
|
|
|
* all slots are fetched
|
2020-03-30 20:20:27 +00:00
|
|
|
* 'blobs' - whether the serialized content of each slot should be loaded.
|
2019-09-26 12:23:40 +00:00
|
|
|
* If true, the serialiezd content will be present in the slot row
|
|
|
|
|
* in the blob_data field.
|
|
|
|
|
* @param int $queryFlags
|
|
|
|
|
*
|
|
|
|
|
* @return StatusValue a status containing, if isOK() returns true, a two-level nested
|
|
|
|
|
* associative array, mapping from revision ID to an associative array that maps from
|
|
|
|
|
* role name to a database row object. The database row object will contain the fields
|
|
|
|
|
* defined by getSlotQueryInfo() with the 'content' flag set, plus the blob_data field
|
|
|
|
|
* if the 'blobs' is set in $options. The model_name and role_name fields will also be
|
|
|
|
|
* set.
|
|
|
|
|
*/
|
|
|
|
|
private function getSlotRowsForBatch(
|
|
|
|
|
$rowsOrIds,
|
|
|
|
|
array $options = [],
|
|
|
|
|
$queryFlags = 0
|
|
|
|
|
) {
|
|
|
|
|
$result = new StatusValue();
|
|
|
|
|
|
|
|
|
|
$revIds = [];
|
|
|
|
|
foreach ( $rowsOrIds as $row ) {
|
2020-03-30 20:20:27 +00:00
|
|
|
if ( is_object( $row ) ) {
|
|
|
|
|
$revIds[] = isset( $row->ar_rev_id ) ? (int)$row->ar_rev_id : (int)$row->rev_id;
|
|
|
|
|
} else {
|
|
|
|
|
$revIds[] = (int)$row;
|
|
|
|
|
}
|
2019-09-26 12:23:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Nothing to do.
|
|
|
|
|
// Note that $rowsOrIds may not be "empty" even if $revIds is, e.g. if it's a ResultWrapper.
|
|
|
|
|
if ( empty( $revIds ) ) {
|
|
|
|
|
$result->setResult( true, [] );
|
|
|
|
|
return $result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// We need to set the `content` flag to join in content meta-data
|
2020-08-17 21:44:33 +00:00
|
|
|
$slotQueryInfo = $this->getSlotsQueryInfo( [ 'content' ] );
|
2019-09-26 12:23:40 +00:00
|
|
|
$revIdField = $slotQueryInfo['keys']['rev_id'];
|
|
|
|
|
$slotQueryConds = [ $revIdField => $revIds ];
|
|
|
|
|
|
2019-12-17 16:20:32 +00:00
|
|
|
if ( isset( $options['slots'] ) && is_array( $options['slots'] ) ) {
|
2019-09-26 12:23:40 +00:00
|
|
|
if ( empty( $options['slots'] ) ) {
|
|
|
|
|
// Degenerate case: return no slots for each revision.
|
|
|
|
|
$result->setResult( true, array_fill_keys( $revIds, [] ) );
|
|
|
|
|
return $result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$roleIdField = $slotQueryInfo['keys']['role_id'];
|
|
|
|
|
$slotQueryConds[$roleIdField] = array_map( function ( $slot_name ) {
|
|
|
|
|
return $this->slotRoleStore->getId( $slot_name );
|
|
|
|
|
}, $options['slots'] );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$db = $this->getDBConnectionRefForQueryFlags( $queryFlags );
|
|
|
|
|
$slotRows = $db->select(
|
|
|
|
|
$slotQueryInfo['tables'],
|
|
|
|
|
$slotQueryInfo['fields'],
|
|
|
|
|
$slotQueryConds,
|
|
|
|
|
__METHOD__,
|
|
|
|
|
[],
|
|
|
|
|
$slotQueryInfo['joins']
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$slotContents = null;
|
|
|
|
|
if ( $options['blobs'] ?? false ) {
|
|
|
|
|
$blobAddresses = [];
|
|
|
|
|
foreach ( $slotRows as $slotRow ) {
|
|
|
|
|
$blobAddresses[] = $slotRow->content_address;
|
|
|
|
|
}
|
|
|
|
|
$slotContentFetchStatus = $this->blobStore
|
|
|
|
|
->getBlobBatch( $blobAddresses, $queryFlags );
|
|
|
|
|
foreach ( $slotContentFetchStatus->getErrors() as $error ) {
|
|
|
|
|
$result->warning( $error['message'], ...$error['params'] );
|
|
|
|
|
}
|
|
|
|
|
$slotContents = $slotContentFetchStatus->getValue();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$slotRowsByRevId = [];
|
|
|
|
|
foreach ( $slotRows as $slotRow ) {
|
|
|
|
|
if ( $slotContents === null ) {
|
|
|
|
|
// nothing to do
|
|
|
|
|
} elseif ( isset( $slotContents[$slotRow->content_address] ) ) {
|
|
|
|
|
$slotRow->blob_data = $slotContents[$slotRow->content_address];
|
|
|
|
|
} else {
|
|
|
|
|
$result->warning(
|
2020-04-28 19:28:59 +00:00
|
|
|
'internalerror_info',
|
2019-09-26 12:23:40 +00:00
|
|
|
"Couldn't find blob data for rev {$slotRow->slot_revision_id}"
|
|
|
|
|
);
|
|
|
|
|
$slotRow->blob_data = null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// conditional needed for SCHEMA_COMPAT_READ_OLD
|
|
|
|
|
if ( !isset( $slotRow->role_name ) && isset( $slotRow->slot_role_id ) ) {
|
|
|
|
|
$slotRow->role_name = $this->slotRoleStore->getName( (int)$slotRow->slot_role_id );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// conditional needed for SCHEMA_COMPAT_READ_OLD
|
|
|
|
|
if ( !isset( $slotRow->model_name ) && isset( $slotRow->content_model ) ) {
|
|
|
|
|
$slotRow->model_name = $this->contentModelStore->getName( (int)$slotRow->content_model );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$slotRowsByRevId[$slotRow->slot_revision_id][$slotRow->role_name] = $slotRow;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$result->setResult( true, $slotRowsByRevId );
|
|
|
|
|
return $result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Gets raw (serialized) content blobs for the given set of revisions.
|
|
|
|
|
* Callers are responsible for unserializing and interpreting the content blobs
|
|
|
|
|
* based on the model_name field and the slot role.
|
|
|
|
|
*
|
|
|
|
|
* This method is intended for bulk operations in maintenance scripts.
|
|
|
|
|
* It may be chosen over newRevisionsFromBatch by code that are only interested
|
|
|
|
|
* in raw content, as opposed to meta data. Code that needs to access meta data of revisions,
|
|
|
|
|
* slots, or content objects should use newRevisionsFromBatch() instead.
|
|
|
|
|
*
|
|
|
|
|
* @param Traversable|array $rowsOrIds list of revision ids, or revision rows from a db query.
|
|
|
|
|
* @param array|null $slots the role names for which to get slots.
|
|
|
|
|
* @param int $queryFlags
|
|
|
|
|
*
|
|
|
|
|
* @return StatusValue a status containing, if isOK() returns true, a two-level nested
|
|
|
|
|
* associative array, mapping from revision ID to an associative array that maps from
|
2020-09-27 08:09:09 +00:00
|
|
|
* role name to an anonymous object containing two fields:
|
2019-09-26 12:23:40 +00:00
|
|
|
* - model_name: the name of the content's model
|
|
|
|
|
* - blob_data: serialized content data
|
|
|
|
|
*/
|
|
|
|
|
public function getContentBlobsForBatch(
|
|
|
|
|
$rowsOrIds,
|
|
|
|
|
$slots = null,
|
|
|
|
|
$queryFlags = 0
|
|
|
|
|
) {
|
|
|
|
|
$result = $this->getSlotRowsForBatch(
|
|
|
|
|
$rowsOrIds,
|
|
|
|
|
[ 'slots' => $slots, 'blobs' => true ],
|
|
|
|
|
$queryFlags
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
if ( $result->isOK() ) {
|
|
|
|
|
// strip out all internal meta data that we don't want to expose
|
|
|
|
|
foreach ( $result->value as $revId => $rowsByRole ) {
|
|
|
|
|
foreach ( $rowsByRole as $role => $slotRow ) {
|
|
|
|
|
if ( is_array( $slots ) && !in_array( $role, $slots ) ) {
|
|
|
|
|
// In SCHEMA_COMPAT_READ_OLD mode we may get the main slot even
|
|
|
|
|
// if we didn't ask for it.
|
|
|
|
|
unset( $result->value[$revId][$role] );
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$result->value[$revId][$role] = (object)[
|
|
|
|
|
'blob_data' => $slotRow->blob_data,
|
|
|
|
|
'model_name' => $slotRow->model_name,
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-27 15:29:18 +00:00
|
|
|
/**
|
|
|
|
|
* 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
|
2021-05-14 20:04:02 +00:00
|
|
|
* on a replica before hitting the primary database.
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
2021-05-02 23:55:07 +00:00
|
|
|
* MCR migration note: this corresponded to Revision::newFromConds
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
|
|
|
|
* @param array $conditions
|
|
|
|
|
* @param int $flags (optional)
|
2021-01-20 21:03:12 +00:00
|
|
|
* @param PageIdentity|null $page (optional)
|
2020-03-07 07:07:42 +00:00
|
|
|
* @param array $options (optional) additional query options
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
|
|
|
|
* @return RevisionRecord|null
|
|
|
|
|
*/
|
2020-03-07 07:07:42 +00:00
|
|
|
private function newRevisionFromConds(
|
|
|
|
|
array $conditions,
|
|
|
|
|
int $flags = IDBAccessObject::READ_NORMAL,
|
2021-01-20 21:03:12 +00:00
|
|
|
PageIdentity $page = null,
|
2020-03-07 07:07:42 +00:00
|
|
|
array $options = []
|
|
|
|
|
) {
|
2018-07-10 18:54:33 +00:00
|
|
|
$db = $this->getDBConnectionRefForQueryFlags( $flags );
|
2021-01-20 21:03:12 +00:00
|
|
|
$rev = $this->loadRevisionFromConds( $db, $conditions, $flags, $page, $options );
|
2017-08-27 15:29:18 +00:00
|
|
|
|
|
|
|
|
$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 )
|
2019-06-18 21:12:06 +00:00
|
|
|
&& $lb->hasStreamingReplicaServers()
|
2021-09-02 19:35:05 +00:00
|
|
|
&& $lb->hasOrMadeRecentPrimaryChanges()
|
2017-08-27 15:29:18 +00:00
|
|
|
) {
|
|
|
|
|
$flags = self::READ_LATEST;
|
2021-04-29 02:37:11 +00:00
|
|
|
$dbw = $this->getDBConnectionRef( DB_PRIMARY );
|
2021-01-20 21:03:12 +00:00
|
|
|
$rev = $this->loadRevisionFromConds( $dbw, $conditions, $flags, $page, $options );
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $rev;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Given a set of conditions, fetch a revision from
|
|
|
|
|
* the given database connection.
|
|
|
|
|
*
|
2021-05-02 23:55:07 +00:00
|
|
|
* MCR migration note: this corresponded to Revision::loadFromConds
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
|
|
|
|
* @param IDatabase $db
|
|
|
|
|
* @param array $conditions
|
|
|
|
|
* @param int $flags (optional)
|
2021-01-20 21:03:12 +00:00
|
|
|
* @param PageIdentity|null $page (optional) additional query options
|
2020-03-07 07:07:42 +00:00
|
|
|
* @param array $options (optional) additional query options
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
|
|
|
|
* @return RevisionRecord|null
|
|
|
|
|
*/
|
|
|
|
|
private function loadRevisionFromConds(
|
|
|
|
|
IDatabase $db,
|
2020-03-07 07:07:42 +00:00
|
|
|
array $conditions,
|
|
|
|
|
int $flags = IDBAccessObject::READ_NORMAL,
|
2021-01-20 21:03:12 +00:00
|
|
|
PageIdentity $page = null,
|
2020-03-07 07:07:42 +00:00
|
|
|
array $options = []
|
2017-08-27 15:29:18 +00:00
|
|
|
) {
|
2020-03-07 07:07:42 +00:00
|
|
|
$row = $this->fetchRevisionRowFromConds( $db, $conditions, $flags, $options );
|
2017-08-27 15:29:18 +00:00
|
|
|
if ( $row ) {
|
2021-01-20 21:03:12 +00:00
|
|
|
return $this->newRevisionFromRow( $row, $flags, $page );
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
*/
|
2019-07-04 07:46:39 +00:00
|
|
|
private function checkDatabaseDomain( IDatabase $db ) {
|
|
|
|
|
$dbDomain = $db->getDomainID();
|
2021-02-04 17:44:39 +00:00
|
|
|
$storeDomain = $this->loadBalancer->resolveDomainID( $this->wikiId );
|
2019-07-04 07:46:39 +00:00
|
|
|
if ( $dbDomain === $storeDomain ) {
|
2018-01-03 14:42:13 +00:00
|
|
|
return;
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
2018-01-03 14:42:13 +00:00
|
|
|
|
2019-07-04 07:46:39 +00:00
|
|
|
throw new MWException( "DB connection domain '$dbDomain' does not match '$storeDomain'" );
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Given a set of conditions, return a row with the
|
|
|
|
|
* fields necessary to build RevisionRecord objects.
|
|
|
|
|
*
|
2021-05-02 23:55:07 +00:00
|
|
|
* MCR migration note: this corresponded to Revision::fetchFromConds
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
|
|
|
|
* @param IDatabase $db
|
|
|
|
|
* @param array $conditions
|
|
|
|
|
* @param int $flags (optional)
|
2020-03-07 07:07:42 +00:00
|
|
|
* @param array $options (optional) additional query options
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
2020-11-13 23:53:36 +00:00
|
|
|
* @return \stdClass|false data row as a raw object
|
2017-08-27 15:29:18 +00:00
|
|
|
*/
|
2020-03-07 07:07:42 +00:00
|
|
|
private function fetchRevisionRowFromConds(
|
|
|
|
|
IDatabase $db,
|
|
|
|
|
array $conditions,
|
|
|
|
|
int $flags = IDBAccessObject::READ_NORMAL,
|
|
|
|
|
array $options = []
|
|
|
|
|
) {
|
2019-07-04 07:46:39 +00:00
|
|
|
$this->checkDatabaseDomain( $db );
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2018-01-29 15:54:02 +00:00
|
|
|
$revQuery = $this->getQueryInfo( [ 'page', 'user' ] );
|
2017-08-27 15:29:18 +00:00
|
|
|
if ( ( $flags & self::READ_LOCKING ) == self::READ_LOCKING ) {
|
|
|
|
|
$options[] = 'FOR UPDATE';
|
|
|
|
|
}
|
|
|
|
|
return $db->selectRow(
|
|
|
|
|
$revQuery['tables'],
|
|
|
|
|
$revQuery['fields'],
|
|
|
|
|
$conditions,
|
|
|
|
|
__METHOD__,
|
|
|
|
|
$options,
|
|
|
|
|
$revQuery['joins']
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 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
|
|
|
*
|
2021-05-02 23:55:07 +00:00
|
|
|
* MCR migration note: this replaced Revision::getQueryInfo
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
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
|
|
|
|
|
*
|
2020-10-28 10:01:33 +00:00
|
|
|
* @return array[] With three keys:
|
2017-08-27 15:29:18 +00:00
|
|
|
* - 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()`
|
2019-08-30 18:17:32 +00:00
|
|
|
* @phan-return array{tables:string[],fields:string[],joins:array}
|
2017-08-27 15:29:18 +00:00
|
|
|
*/
|
|
|
|
|
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'] );
|
|
|
|
|
|
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',
|
|
|
|
|
] );
|
2019-03-06 17:17:27 +00:00
|
|
|
$ret['joins']['page'] = [ 'JOIN', [ 'page_id = rev_page' ] ];
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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 ) ) {
|
2019-12-17 16:20:32 +00:00
|
|
|
throw new InvalidArgumentException(
|
|
|
|
|
'The `text` option is no longer supported in MediaWiki 1.35 and later.'
|
|
|
|
|
);
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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
|
2018-08-22 16:08:23 +00:00
|
|
|
* - 'model': Join with the content_models table, and select the model_name field.
|
|
|
|
|
* Only applicable if 'content' is also set.
|
|
|
|
|
* - 'role': Join with the slot_roles table, and select the role_name field
|
2018-04-17 07:49:20 +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()`
|
2019-09-26 12:23:40 +00:00
|
|
|
* - keys: (associative array) to look up fields to match against.
|
|
|
|
|
* In particular, the field that can be used to find slots by rev_id
|
|
|
|
|
* can be found in ['keys']['rev_id'].
|
2018-04-17 07:49:20 +00:00
|
|
|
*/
|
|
|
|
|
public function getSlotsQueryInfo( $options = [] ) {
|
|
|
|
|
$ret = [
|
|
|
|
|
'tables' => [],
|
|
|
|
|
'fields' => [],
|
|
|
|
|
'joins' => [],
|
2019-09-26 12:23:40 +00:00
|
|
|
'keys' => [],
|
2018-04-17 07:49:20 +00:00
|
|
|
];
|
|
|
|
|
|
2019-12-17 16:20:32 +00:00
|
|
|
$ret['keys']['rev_id'] = 'slot_revision_id';
|
|
|
|
|
$ret['keys']['role_id'] = 'slot_role_id';
|
2018-04-17 07:49:20 +00:00
|
|
|
|
2019-12-17 16:20:32 +00:00
|
|
|
$ret['tables'][] = 'slots';
|
|
|
|
|
$ret['fields'] = array_merge( $ret['fields'], [
|
|
|
|
|
'slot_revision_id',
|
|
|
|
|
'slot_content_id',
|
|
|
|
|
'slot_origin',
|
|
|
|
|
'slot_role_id',
|
|
|
|
|
] );
|
2019-05-19 08:48:10 +00:00
|
|
|
|
2019-12-17 16:20:32 +00:00
|
|
|
if ( in_array( 'role', $options, true ) ) {
|
|
|
|
|
// Use left join to attach role name, so we still find the revision row even
|
|
|
|
|
// if the role name is missing. This triggers a more obvious failure mode.
|
|
|
|
|
$ret['tables'][] = 'slot_roles';
|
|
|
|
|
$ret['joins']['slot_roles'] = [ 'LEFT JOIN', [ 'slot_role_id = role_id' ] ];
|
|
|
|
|
$ret['fields'][] = 'role_name';
|
|
|
|
|
}
|
2018-04-17 07:49:20 +00:00
|
|
|
|
2019-12-17 16:20:32 +00:00
|
|
|
if ( in_array( 'content', $options, true ) ) {
|
|
|
|
|
$ret['keys']['model_id'] = 'content_model';
|
2019-09-26 12:23:40 +00:00
|
|
|
|
2019-12-17 16:20:32 +00:00
|
|
|
$ret['tables'][] = 'content';
|
2018-04-17 07:49:20 +00:00
|
|
|
$ret['fields'] = array_merge( $ret['fields'], [
|
2019-12-17 16:20:32 +00:00
|
|
|
'content_size',
|
|
|
|
|
'content_sha1',
|
|
|
|
|
'content_address',
|
|
|
|
|
'content_model',
|
2018-04-17 07:49:20 +00:00
|
|
|
] );
|
2019-12-17 16:20:32 +00:00
|
|
|
$ret['joins']['content'] = [ 'JOIN', [ 'slot_content_id = content_id' ] ];
|
|
|
|
|
|
|
|
|
|
if ( in_array( 'model', $options, true ) ) {
|
|
|
|
|
// Use left join to attach model name, so we still find the revision row even
|
|
|
|
|
// if the model name is missing. This triggers a more obvious failure mode.
|
|
|
|
|
$ret['tables'][] = 'content_models';
|
|
|
|
|
$ret['joins']['content_models'] = [ 'LEFT JOIN', [ 'content_model = model_id' ] ];
|
|
|
|
|
$ret['fields'][] = 'model_name';
|
2018-08-22 16:08:23 +00:00
|
|
|
}
|
2018-04-17 07:49:20 +00:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $ret;
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-10 22:27:18 +00:00
|
|
|
/**
|
|
|
|
|
* Determine whether the parameter is a row containing all the fields
|
|
|
|
|
* that RevisionStore needs to create a RevisionRecord from the row.
|
|
|
|
|
*
|
|
|
|
|
* @param mixed $row
|
2021-08-18 19:18:24 +00:00
|
|
|
* @param string $table 'archive' or empty
|
2021-08-10 22:27:18 +00:00
|
|
|
* @return bool
|
|
|
|
|
*/
|
2021-08-18 19:18:24 +00:00
|
|
|
public function isRevisionRow( $row, string $table = '' ) {
|
2021-08-10 22:27:18 +00:00
|
|
|
if ( !( $row instanceof stdClass ) ) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2021-08-18 19:18:24 +00:00
|
|
|
$queryInfo = $table === 'archive' ? $this->getArchiveQueryInfo() : $this->getQueryInfo();
|
2021-08-10 22:27:18 +00:00
|
|
|
foreach ( $queryInfo['fields'] as $alias => $field ) {
|
|
|
|
|
$name = is_numeric( $alias ) ? $field : $alias;
|
|
|
|
|
if ( !property_exists( $row, $name ) ) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-17 07:49:20 +00:00
|
|
|
/**
|
|
|
|
|
* Return the tables, fields, and join conditions to be selected to create
|
|
|
|
|
* a new RevisionArchiveRecord object.
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
2021-04-19 00:53:24 +00:00
|
|
|
* Since 1.34, ar_user and ar_user_text have not been present in the
|
|
|
|
|
* database, but they continue to be available in query results as
|
|
|
|
|
* aliases.
|
|
|
|
|
*
|
2021-05-02 23:55:07 +00:00
|
|
|
* MCR migration note: this replaced Revision::getArchiveQueryInfo
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
|
|
|
|
* @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-08-27 15:29:18 +00:00
|
|
|
$ret = [
|
2021-04-19 00:53:24 +00:00
|
|
|
'tables' => [
|
|
|
|
|
'archive',
|
|
|
|
|
'archive_actor' => 'actor'
|
|
|
|
|
] + $commentQuery['tables'],
|
2017-08-27 15:29:18 +00:00
|
|
|
'fields' => [
|
2020-10-03 19:53:01 +00:00
|
|
|
'ar_id',
|
|
|
|
|
'ar_page_id',
|
|
|
|
|
'ar_namespace',
|
|
|
|
|
'ar_title',
|
|
|
|
|
'ar_rev_id',
|
|
|
|
|
'ar_timestamp',
|
|
|
|
|
'ar_minor_edit',
|
|
|
|
|
'ar_deleted',
|
|
|
|
|
'ar_len',
|
|
|
|
|
'ar_parent_id',
|
2021-04-19 00:53:24 +00:00
|
|
|
'ar_sha1',
|
|
|
|
|
'ar_actor',
|
|
|
|
|
'ar_user' => 'archive_actor.actor_user',
|
|
|
|
|
'ar_user_text' => 'archive_actor.actor_name',
|
|
|
|
|
] + $commentQuery['fields'],
|
|
|
|
|
'joins' => [
|
|
|
|
|
'archive_actor' => [ 'JOIN', 'actor_id=ar_actor' ]
|
|
|
|
|
] + $commentQuery['joins'],
|
2017-08-27 15:29:18 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
|
|
return $ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Do a batched query for the sizes of a set of revisions.
|
|
|
|
|
*
|
2021-05-02 23:55:07 +00:00
|
|
|
* MCR migration note: this replaced Revision::getParentLengths
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
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 ) {
|
2020-03-07 02:10:00 +00:00
|
|
|
$dbr = $this->getDBConnectionRef( DB_REPLICA );
|
2017-08-27 15:29:18 +00:00
|
|
|
$revLens = [];
|
|
|
|
|
if ( !$revIds ) {
|
|
|
|
|
return $revLens; // empty
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-07 02:10:00 +00:00
|
|
|
$res = $dbr->select(
|
2017-08-27 15:29:18 +00:00
|
|
|
'revision',
|
|
|
|
|
[ 'rev_id', 'rev_len' ],
|
|
|
|
|
[ 'rev_id' => $revIds ],
|
|
|
|
|
__METHOD__
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
foreach ( $res as $row ) {
|
|
|
|
|
$revLens[$row->rev_id] = intval( $row->rev_len );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $revLens;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2019-04-29 14:24:58 +00:00
|
|
|
* Implementation of getPreviousRevision and getNextRevision.
|
2018-11-23 12:30:35 +00:00
|
|
|
*
|
2017-08-27 15:29:18 +00:00
|
|
|
* @param RevisionRecord $rev
|
2019-04-29 14:24:58 +00:00
|
|
|
* @param int $flags
|
|
|
|
|
* @param string $dir 'next' or 'prev'
|
2017-08-27 15:29:18 +00:00
|
|
|
* @return RevisionRecord|null
|
|
|
|
|
*/
|
2019-04-29 14:24:58 +00:00
|
|
|
private function getRelativeRevision( RevisionRecord $rev, $flags, $dir ) {
|
|
|
|
|
$op = $dir === 'next' ? '>' : '<';
|
|
|
|
|
$sort = $dir === 'next' ? 'ASC' : 'DESC';
|
|
|
|
|
|
2021-02-04 17:44:39 +00:00
|
|
|
$revisionIdValue = $rev->getId( $this->wikiId );
|
2021-01-25 14:22:41 +00:00
|
|
|
|
2021-02-10 22:13:53 +00:00
|
|
|
if ( !$revisionIdValue || !$rev->getPageId( $this->wikiId ) ) {
|
2018-11-23 12:30:35 +00:00
|
|
|
// revision is unsaved or otherwise incomplete
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( $rev instanceof RevisionArchiveRecord ) {
|
|
|
|
|
// revision is deleted, so it's not part of the page history
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-29 14:24:58 +00:00
|
|
|
list( $dbType, ) = DBAccessObjectUtils::getDBOptions( $flags );
|
2019-08-04 14:50:50 +00:00
|
|
|
$db = $this->getDBConnectionRef( $dbType, [ 'contributions' ] );
|
2019-04-29 14:24:58 +00:00
|
|
|
|
2021-01-25 14:22:41 +00:00
|
|
|
$ts = $this->getTimestampFromId( $revisionIdValue, $flags );
|
2019-04-29 14:24:58 +00:00
|
|
|
if ( $ts === false ) {
|
|
|
|
|
// XXX Should this be moved into getTimestampFromId?
|
|
|
|
|
$ts = $db->selectField( 'archive', 'ar_timestamp',
|
2021-01-25 14:22:41 +00:00
|
|
|
[ 'ar_rev_id' => $revisionIdValue ], __METHOD__ );
|
2019-04-29 14:24:58 +00:00
|
|
|
if ( $ts === false ) {
|
|
|
|
|
// XXX Is this reachable? How can we have a page id but no timestamp?
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2018-01-10 12:23:06 +00:00
|
|
|
}
|
2020-05-08 21:19:14 +00:00
|
|
|
$dbts = $db->addQuotes( $db->timestamp( $ts ) );
|
2019-04-29 14:24:58 +00:00
|
|
|
|
|
|
|
|
$revId = $db->selectField( 'revision', 'rev_id',
|
|
|
|
|
[
|
2021-02-10 22:13:53 +00:00
|
|
|
'rev_page' => $rev->getPageId( $this->wikiId ),
|
2021-01-25 14:22:41 +00:00
|
|
|
"rev_timestamp $op $dbts OR (rev_timestamp = $dbts AND rev_id $op $revisionIdValue )"
|
2019-04-29 14:24:58 +00:00
|
|
|
],
|
|
|
|
|
__METHOD__,
|
|
|
|
|
[
|
2019-11-29 22:01:07 +00:00
|
|
|
'ORDER BY' => [ "rev_timestamp $sort", "rev_id $sort" ],
|
2019-04-29 14:24:58 +00:00
|
|
|
'IGNORE INDEX' => 'rev_timestamp', // Probably needed for T159319
|
|
|
|
|
]
|
|
|
|
|
);
|
2018-11-23 12:30:35 +00:00
|
|
|
|
2019-04-29 14:24:58 +00:00
|
|
|
if ( $revId === false ) {
|
2018-11-23 12:30:35 +00:00
|
|
|
return null;
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
2018-11-23 12:30:35 +00:00
|
|
|
|
2019-04-29 14:24:58 +00:00
|
|
|
return $this->getRevisionById( intval( $revId ) );
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2019-04-29 14:24:58 +00:00
|
|
|
* Get the revision before $rev in the page's history, if any.
|
|
|
|
|
* Will return null for the first revision but also for deleted or unsaved revisions.
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
2021-05-02 23:55:07 +00:00
|
|
|
* MCR migration note: this replaced Revision::getPrevious
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
2021-05-02 23:55:07 +00:00
|
|
|
* @see PageArchive::getPreviousRevisionRecord
|
2018-11-23 12:30:35 +00:00
|
|
|
*
|
2017-08-27 15:29:18 +00:00
|
|
|
* @param RevisionRecord $rev
|
2019-04-29 14:24:58 +00:00
|
|
|
* @param int $flags (optional) $flags include:
|
2021-09-01 21:04:40 +00:00
|
|
|
* IDBAccessObject::READ_LATEST: Select the data from the primary DB
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
|
|
|
|
* @return RevisionRecord|null
|
|
|
|
|
*/
|
2021-01-21 04:24:18 +00:00
|
|
|
public function getPreviousRevision( RevisionRecord $rev, $flags = self::READ_NORMAL ) {
|
2019-04-29 14:24:58 +00:00
|
|
|
return $this->getRelativeRevision( $rev, $flags, 'prev' );
|
|
|
|
|
}
|
2018-11-23 12:30:35 +00:00
|
|
|
|
2019-04-29 14:24:58 +00:00
|
|
|
/**
|
|
|
|
|
* Get the revision after $rev in the page's history, if any.
|
|
|
|
|
* Will return null for the latest revision but also for deleted or unsaved revisions.
|
|
|
|
|
*
|
2021-05-02 23:55:07 +00:00
|
|
|
* MCR migration note: this replaced Revision::getNext
|
2019-04-29 14:24:58 +00:00
|
|
|
*
|
|
|
|
|
* @param RevisionRecord $rev
|
|
|
|
|
* @param int $flags (optional) $flags include:
|
2021-09-01 21:04:40 +00:00
|
|
|
* IDBAccessObject::READ_LATEST: Select the data from the primary DB
|
2019-04-29 14:24:58 +00:00
|
|
|
* @return RevisionRecord|null
|
|
|
|
|
*/
|
2021-01-21 04:24:18 +00:00
|
|
|
public function getNextRevision( RevisionRecord $rev, $flags = self::READ_NORMAL ) {
|
2019-04-29 14:24:58 +00:00
|
|
|
return $this->getRelativeRevision( $rev, $flags, 'next' );
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get previous revision Id for this page_id
|
|
|
|
|
* This is used to populate rev_parent_id on save
|
|
|
|
|
*
|
2021-05-02 23:55:07 +00:00
|
|
|
* MCR migration note: this corresponded to Revision::getPreviousRevisionId
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
|
|
|
|
* @param IDatabase $db
|
|
|
|
|
* @param RevisionRecord $rev
|
|
|
|
|
*
|
|
|
|
|
* @return int
|
|
|
|
|
*/
|
|
|
|
|
private function getPreviousRevisionId( IDatabase $db, RevisionRecord $rev ) {
|
2019-07-04 07:46:39 +00:00
|
|
|
$this->checkDatabaseDomain( $db );
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2021-02-10 22:13:53 +00:00
|
|
|
if ( $rev->getPageId( $this->wikiId ) === null ) {
|
2017-08-27 15:29:18 +00:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
# Use page_latest if ID is not given
|
2021-02-04 17:44:39 +00:00
|
|
|
if ( !$rev->getId( $this->wikiId ) ) {
|
2017-08-27 15:29:18 +00:00
|
|
|
$prevId = $db->selectField(
|
|
|
|
|
'page', 'page_latest',
|
2021-02-10 22:13:53 +00:00
|
|
|
[ 'page_id' => $rev->getPageId( $this->wikiId ) ],
|
2017-08-27 15:29:18 +00:00
|
|
|
__METHOD__
|
|
|
|
|
);
|
|
|
|
|
} else {
|
|
|
|
|
$prevId = $db->selectField(
|
|
|
|
|
'revision', 'rev_id',
|
2021-02-10 22:13:53 +00:00
|
|
|
[ 'rev_page' => $rev->getPageId( $this->wikiId ), 'rev_id < ' . $rev->getId( $this->wikiId ) ],
|
2017-08-27 15:29:18 +00:00
|
|
|
__METHOD__,
|
|
|
|
|
[ 'ORDER BY' => 'rev_id DESC' ]
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
return intval( $prevId );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
Don't require Title for getTimestampFromId
3e36ba655e3a added an option for passing a page ID to this method of
Revision, and e03787afd91c switched it to a Title and made it mandatory.
This behavior propagated to the method in RevisionStore. As far as I
can tell, the parameter does not help anything, but it can add a
database query to get the page ID if it's not cached, and impedes
conversion to LinkTarget. I can't figure out any reason to not
completely drop it. I've noted it as deprecated but still supported it
for now for compatibility -- I found one extension that does pass it.
(It's ignored, though, which theoretically would be a behavior change if
someone was passing a Title that didn't match the revision ID.)
While I was at it, I added the method to RevisionLookup, although it's
only used in later patches. Properly I should move that piece to a later
patch, but it didn't seem worth the effort.
I didn't change the Revision method, because the whole Revision class is
deprecated anyway.
Change-Id: I26ef5f2bf828f0f450633b7237d26d888e2c8773
2019-04-29 14:32:22 +00:00
|
|
|
* Get rev_timestamp from rev_id, without loading the rest of the row.
|
|
|
|
|
*
|
|
|
|
|
* Historically, there was an extra Title parameter that was passed before $id. This is no
|
|
|
|
|
* longer needed and is deprecated in 1.34.
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
2021-05-02 23:55:07 +00:00
|
|
|
* MCR migration note: this replaced Revision::getTimestampFromId
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
|
|
|
|
* @param int $id
|
|
|
|
|
* @param int $flags
|
|
|
|
|
* @return string|bool False if not found
|
|
|
|
|
*/
|
Don't require Title for getTimestampFromId
3e36ba655e3a added an option for passing a page ID to this method of
Revision, and e03787afd91c switched it to a Title and made it mandatory.
This behavior propagated to the method in RevisionStore. As far as I
can tell, the parameter does not help anything, but it can add a
database query to get the page ID if it's not cached, and impedes
conversion to LinkTarget. I can't figure out any reason to not
completely drop it. I've noted it as deprecated but still supported it
for now for compatibility -- I found one extension that does pass it.
(It's ignored, though, which theoretically would be a behavior change if
someone was passing a Title that didn't match the revision ID.)
While I was at it, I added the method to RevisionLookup, although it's
only used in later patches. Properly I should move that piece to a later
patch, but it didn't seem worth the effort.
I didn't change the Revision method, because the whole Revision class is
deprecated anyway.
Change-Id: I26ef5f2bf828f0f450633b7237d26d888e2c8773
2019-04-29 14:32:22 +00:00
|
|
|
public function getTimestampFromId( $id, $flags = 0 ) {
|
|
|
|
|
if ( $id instanceof Title ) {
|
|
|
|
|
// Old deprecated calling convention supported for backwards compatibility
|
|
|
|
|
$id = $flags;
|
|
|
|
|
$flags = func_num_args() > 2 ? func_get_arg( 2 ) : 0;
|
|
|
|
|
}
|
2021-01-21 11:25:17 +00:00
|
|
|
|
|
|
|
|
// T270149: Bail out if we know the query will definitely return false. Some callers are
|
|
|
|
|
// passing RevisionRecord::getId() call directly as $id which can possibly return null.
|
|
|
|
|
// Null $id or $id <= 0 will lead to useless query with WHERE clause of 'rev_id IS NULL'
|
|
|
|
|
// or 'rev_id = 0', but 'rev_id' is always greater than zero and cannot be null.
|
|
|
|
|
// @todo typehint $id and remove the null check
|
|
|
|
|
if ( $id === null || $id <= 0 ) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-10 18:54:33 +00:00
|
|
|
$db = $this->getDBConnectionRefForQueryFlags( $flags );
|
2017-08-27 15:29:18 +00:00
|
|
|
|
Don't require Title for getTimestampFromId
3e36ba655e3a added an option for passing a page ID to this method of
Revision, and e03787afd91c switched it to a Title and made it mandatory.
This behavior propagated to the method in RevisionStore. As far as I
can tell, the parameter does not help anything, but it can add a
database query to get the page ID if it's not cached, and impedes
conversion to LinkTarget. I can't figure out any reason to not
completely drop it. I've noted it as deprecated but still supported it
for now for compatibility -- I found one extension that does pass it.
(It's ignored, though, which theoretically would be a behavior change if
someone was passing a Title that didn't match the revision ID.)
While I was at it, I added the method to RevisionLookup, although it's
only used in later patches. Properly I should move that piece to a later
patch, but it didn't seem worth the effort.
I didn't change the Revision method, because the whole Revision class is
deprecated anyway.
Change-Id: I26ef5f2bf828f0f450633b7237d26d888e2c8773
2019-04-29 14:32:22 +00:00
|
|
|
$timestamp =
|
|
|
|
|
$db->selectField( 'revision', 'rev_timestamp', [ 'rev_id' => $id ], __METHOD__ );
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2020-04-02 20:00:24 +00:00
|
|
|
return ( $timestamp !== false ) ? MWTimestamp::convert( TS_MW, $timestamp ) : false;
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get count of revisions per page...not very efficient
|
|
|
|
|
*
|
2021-05-02 23:55:07 +00:00
|
|
|
* MCR migration note: this replaced Revision::countByPageId
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
|
|
|
|
* @param IDatabase $db
|
|
|
|
|
* @param int $id Page id
|
|
|
|
|
* @return int
|
|
|
|
|
*/
|
|
|
|
|
public function countRevisionsByPageId( IDatabase $db, $id ) {
|
2019-07-04 07:46:39 +00:00
|
|
|
$this->checkDatabaseDomain( $db );
|
2017-08-27 15:29:18 +00:00
|
|
|
|
|
|
|
|
$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
|
|
|
|
|
*
|
2021-05-02 23:55:07 +00:00
|
|
|
* MCR migration note: this replaced Revision::countByTitle
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
|
|
|
|
* @param IDatabase $db
|
2021-01-20 21:03:12 +00:00
|
|
|
* @param PageIdentity $page
|
2017-08-27 15:29:18 +00:00
|
|
|
* @return int
|
|
|
|
|
*/
|
2021-01-20 21:03:12 +00:00
|
|
|
public function countRevisionsByTitle( IDatabase $db, PageIdentity $page ) {
|
|
|
|
|
$id = $this->getArticleId( $page );
|
2017-08-27 15:29:18 +00:00
|
|
|
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.
|
|
|
|
|
*
|
2021-05-02 23:55:07 +00:00
|
|
|
* MCR migration note: this replaced Revision::userWasLastToEdit
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
|
|
|
|
* @deprecated since 1.31; Can possibly be removed, since the self-conflict suppression
|
|
|
|
|
* logic in EditPage that uses this seems conceptually dubious. Revision::userWasLastToEdit
|
2021-05-02 23:55:07 +00:00
|
|
|
* had been deprecated since 1.24 (the Revision class was removed entirely in 1.37).
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
|
|
|
|
* @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 ) {
|
2019-07-04 07:46:39 +00:00
|
|
|
$this->checkDatabaseDomain( $db );
|
2017-08-27 15:29:18 +00:00
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
*
|
2021-05-02 23:55:07 +00:00
|
|
|
* MCR migration note: this replaced Revision::newKnownCurrent
|
2017-08-27 15:29:18 +00:00
|
|
|
*
|
2021-02-08 16:33:25 +00:00
|
|
|
* @param PageIdentity $page the associated page
|
2017-08-27 15:29:18 +00:00
|
|
|
* @param int $revId current revision of this page. Defaults to $title->getLatestRevID().
|
|
|
|
|
*
|
|
|
|
|
* @return RevisionRecord|bool Returns false if missing
|
|
|
|
|
*/
|
2021-02-08 16:33:25 +00:00
|
|
|
public function getKnownCurrentRevision( PageIdentity $page, $revId = 0 ) {
|
2017-08-27 15:29:18 +00:00
|
|
|
$db = $this->getDBConnectionRef( DB_REPLICA );
|
2020-04-09 12:06:22 +00:00
|
|
|
$revIdPassed = $revId;
|
2021-06-17 23:21:53 +00:00
|
|
|
$pageId = $this->getArticleId( $page );
|
2017-08-27 15:29:18 +00:00
|
|
|
if ( !$pageId ) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( !$revId ) {
|
2021-06-17 23:21:53 +00:00
|
|
|
if ( $page instanceof Title ) {
|
|
|
|
|
$revId = $page->getLatestRevID();
|
|
|
|
|
} else {
|
|
|
|
|
$pageRecord = $this->pageStore->getPageByReference( $page );
|
|
|
|
|
if ( $pageRecord ) {
|
|
|
|
|
$revId = $pageRecord->getLatest( $this->getWikiId() );
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( !$revId ) {
|
2021-06-17 23:21:53 +00:00
|
|
|
$this->logger->warning(
|
|
|
|
|
'No latest revision known for page {page} even though it exists with page ID {page_id}', [
|
|
|
|
|
'page' => $page->__toString(),
|
|
|
|
|
'page_id' => $pageId,
|
|
|
|
|
'wiki_id' => $this->getWikiId() ?: 'local',
|
|
|
|
|
] );
|
2017-08-27 15:29:18 +00:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-27 21:26:17 +00:00
|
|
|
// Load the row from cache if possible. If not possible, populate the cache.
|
|
|
|
|
// As a minor optimization, remember if this was a cache hit or miss.
|
|
|
|
|
// We can sometimes avoid a database query later if this is a cache miss.
|
|
|
|
|
$fromCache = true;
|
2017-08-27 15:29:18 +00:00
|
|
|
$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,
|
2019-02-27 21:26:17 +00:00
|
|
|
function ( $curValue, &$ttl, array &$setOpts ) use (
|
2020-02-28 22:06:46 +00:00
|
|
|
$db, $revId, &$fromCache
|
2019-02-27 21:26:17 +00:00
|
|
|
) {
|
2017-08-27 15:29:18 +00:00
|
|
|
$setOpts += Database::getCacheSetOptions( $db );
|
2019-02-27 21:26:17 +00:00
|
|
|
$row = $this->fetchRevisionRowFromConds( $db, [ 'rev_id' => intval( $revId ) ] );
|
|
|
|
|
if ( $row ) {
|
|
|
|
|
$fromCache = false;
|
|
|
|
|
}
|
|
|
|
|
return $row; // don't cache negatives
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
2019-02-27 21:26:17 +00:00
|
|
|
// Reflect revision deletion and user renames.
|
2017-08-27 15:29:18 +00:00
|
|
|
if ( $row ) {
|
2021-06-17 23:21:53 +00:00
|
|
|
$title = $this->ensureRevisionRowMatchesPage( $row, $page, [
|
2020-04-09 12:06:22 +00:00
|
|
|
'from_cache_flag' => $fromCache,
|
|
|
|
|
'page_id_initial' => $pageId,
|
|
|
|
|
'rev_id_used' => $revId,
|
|
|
|
|
'rev_id_requested' => $revIdPassed,
|
|
|
|
|
] );
|
|
|
|
|
|
2019-02-27 21:26:17 +00:00
|
|
|
return $this->newRevisionFromRow( $row, 0, $title, $fromCache );
|
2017-08-27 15:29:18 +00:00
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-07 07:07:42 +00:00
|
|
|
/**
|
|
|
|
|
* Get the first revision of a given page.
|
|
|
|
|
*
|
|
|
|
|
* @since 1.35
|
2021-02-08 16:33:25 +00:00
|
|
|
* @param LinkTarget|PageIdentity $page Calling with LinkTarget is deprecated since 1.36
|
2020-03-07 07:07:42 +00:00
|
|
|
* @param int $flags
|
|
|
|
|
* @return RevisionRecord|null
|
|
|
|
|
*/
|
|
|
|
|
public function getFirstRevision(
|
2021-02-08 16:33:25 +00:00
|
|
|
$page,
|
2020-03-07 07:07:42 +00:00
|
|
|
int $flags = IDBAccessObject::READ_NORMAL
|
|
|
|
|
): ?RevisionRecord {
|
2021-02-08 16:33:25 +00:00
|
|
|
if ( $page instanceof LinkTarget ) {
|
|
|
|
|
// Only resolve LinkTarget to a Title when operating in the context of the local wiki (T248756)
|
|
|
|
|
$page = $this->wikiId === WikiAwareEntity::LOCAL ? Title::castFromLinkTarget( $page ) : null;
|
|
|
|
|
}
|
2020-03-07 07:07:42 +00:00
|
|
|
return $this->newRevisionFromConds(
|
|
|
|
|
[
|
2021-02-08 16:33:25 +00:00
|
|
|
'page_namespace' => $page->getNamespace(),
|
|
|
|
|
'page_title' => $page->getDBkey()
|
2020-03-07 07:07:42 +00:00
|
|
|
],
|
|
|
|
|
$flags,
|
2021-02-08 16:33:25 +00:00
|
|
|
$page,
|
2020-03-07 07:07:42 +00:00
|
|
|
[
|
|
|
|
|
'ORDER BY' => [ 'rev_timestamp ASC', 'rev_id ASC' ],
|
|
|
|
|
'IGNORE INDEX' => [ 'revision' => 'rev_timestamp' ], // See T159319
|
|
|
|
|
]
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-16 20:39:02 +00:00
|
|
|
/**
|
|
|
|
|
* Asserts that if revision is provided, it's saved and belongs to the page with provided pageId.
|
|
|
|
|
* @param string $paramName
|
|
|
|
|
* @param int $pageId
|
|
|
|
|
* @param RevisionRecord|null $rev
|
|
|
|
|
* @throws InvalidArgumentException
|
|
|
|
|
*/
|
|
|
|
|
private function assertRevisionParameter( $paramName, $pageId, RevisionRecord $rev = null ) {
|
|
|
|
|
if ( $rev ) {
|
2021-02-04 17:44:39 +00:00
|
|
|
if ( $rev->getId( $this->wikiId ) === null ) {
|
2019-10-16 20:39:02 +00:00
|
|
|
throw new InvalidArgumentException( "Unsaved {$paramName} revision passed" );
|
|
|
|
|
}
|
2021-02-10 22:13:53 +00:00
|
|
|
if ( $rev->getPageId( $this->wikiId ) !== $pageId ) {
|
2019-10-16 20:39:02 +00:00
|
|
|
throw new InvalidArgumentException(
|
2021-02-04 17:44:39 +00:00
|
|
|
"Revision {$rev->getId( $this->wikiId )} doesn't belong to page {$pageId}"
|
2019-10-16 20:39:02 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-24 19:08:33 +00:00
|
|
|
/**
|
|
|
|
|
* Converts revision limits to query conditions.
|
|
|
|
|
*
|
|
|
|
|
* @param IDatabase $dbr
|
|
|
|
|
* @param RevisionRecord|null $old Old revision.
|
2020-07-22 16:07:50 +00:00
|
|
|
* If null is provided, count starting from the first revision (inclusive).
|
2019-10-24 19:08:33 +00:00
|
|
|
* @param RevisionRecord|null $new New revision.
|
2020-07-22 16:07:50 +00:00
|
|
|
* If null is provided, count until the last revision (inclusive).
|
|
|
|
|
* @param string|array $options Single option, or an array of options:
|
2020-08-17 18:22:17 +00:00
|
|
|
* RevisionStore::INCLUDE_OLD Include $old in the range; $new is excluded.
|
|
|
|
|
* RevisionStore::INCLUDE_NEW Include $new in the range; $old is excluded.
|
|
|
|
|
* RevisionStore::INCLUDE_BOTH Include both $old and $new in the range.
|
2019-10-24 19:08:33 +00:00
|
|
|
* @return array
|
|
|
|
|
*/
|
|
|
|
|
private function getRevisionLimitConditions(
|
|
|
|
|
IDatabase $dbr,
|
|
|
|
|
RevisionRecord $old = null,
|
|
|
|
|
RevisionRecord $new = null,
|
|
|
|
|
$options = []
|
|
|
|
|
) {
|
|
|
|
|
$options = (array)$options;
|
|
|
|
|
$oldCmp = '>';
|
|
|
|
|
$newCmp = '<';
|
2020-08-17 18:22:17 +00:00
|
|
|
if ( in_array( self::INCLUDE_OLD, $options ) ) {
|
2019-10-24 19:08:33 +00:00
|
|
|
$oldCmp = '>=';
|
|
|
|
|
}
|
2020-08-17 18:22:17 +00:00
|
|
|
if ( in_array( self::INCLUDE_NEW, $options ) ) {
|
2019-10-24 19:08:33 +00:00
|
|
|
$newCmp = '<=';
|
|
|
|
|
}
|
2020-08-17 18:22:17 +00:00
|
|
|
if ( in_array( self::INCLUDE_BOTH, $options ) ) {
|
2019-10-24 19:08:33 +00:00
|
|
|
$oldCmp = '>=';
|
|
|
|
|
$newCmp = '<=';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$conds = [];
|
|
|
|
|
if ( $old ) {
|
|
|
|
|
$oldTs = $dbr->addQuotes( $dbr->timestamp( $old->getTimestamp() ) );
|
2021-02-04 17:44:39 +00:00
|
|
|
$conds[] = "(rev_timestamp = {$oldTs} AND rev_id {$oldCmp} {$old->getId( $this->wikiId )}) " .
|
2019-10-24 19:08:33 +00:00
|
|
|
"OR rev_timestamp > {$oldTs}";
|
|
|
|
|
}
|
|
|
|
|
if ( $new ) {
|
|
|
|
|
$newTs = $dbr->addQuotes( $dbr->timestamp( $new->getTimestamp() ) );
|
2021-02-04 17:44:39 +00:00
|
|
|
$conds[] = "(rev_timestamp = {$newTs} AND rev_id {$newCmp} {$new->getId( $this->wikiId )}) " .
|
2019-10-24 19:08:33 +00:00
|
|
|
"OR rev_timestamp < {$newTs}";
|
|
|
|
|
}
|
|
|
|
|
return $conds;
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-22 16:07:50 +00:00
|
|
|
/**
|
|
|
|
|
* Get IDs of revisions between the given revisions.
|
|
|
|
|
*
|
|
|
|
|
* @since 1.36
|
|
|
|
|
*
|
|
|
|
|
* @param int $pageId The id of the page
|
|
|
|
|
* @param RevisionRecord|null $old Old revision.
|
|
|
|
|
* If null is provided, count starting from the first revision (inclusive).
|
|
|
|
|
* @param RevisionRecord|null $new New revision.
|
|
|
|
|
* If null is provided, count until the last revision (inclusive).
|
|
|
|
|
* @param int|null $max Limit of Revisions to count, will be incremented by
|
|
|
|
|
* one to detect truncations.
|
|
|
|
|
* @param string|array $options Single option, or an array of options:
|
2020-08-17 18:22:17 +00:00
|
|
|
* RevisionStore::INCLUDE_OLD Include $old in the range; $new is excluded.
|
|
|
|
|
* RevisionStore::INCLUDE_NEW Include $new in the range; $old is excluded.
|
|
|
|
|
* RevisionStore::INCLUDE_BOTH Include both $old and $new in the range.
|
2020-07-22 16:07:50 +00:00
|
|
|
* @param string|null $order The direction in which the revisions should be sorted.
|
|
|
|
|
* Possible values:
|
|
|
|
|
* - RevisionStore::ORDER_OLDEST_TO_NEWEST
|
|
|
|
|
* - RevisionStore::ORDER_NEWEST_TO_OLDEST
|
|
|
|
|
* - null for no specific ordering (default value)
|
|
|
|
|
* @param int $flags
|
|
|
|
|
* @throws InvalidArgumentException in case either revision is unsaved or
|
|
|
|
|
* the revisions do not belong to the same page or unknown option is passed.
|
|
|
|
|
* @return int[]
|
|
|
|
|
*/
|
|
|
|
|
public function getRevisionIdsBetween(
|
|
|
|
|
int $pageId,
|
|
|
|
|
RevisionRecord $old = null,
|
|
|
|
|
RevisionRecord $new = null,
|
|
|
|
|
?int $max = null,
|
|
|
|
|
$options = [],
|
|
|
|
|
?string $order = null,
|
|
|
|
|
int $flags = IDBAccessObject::READ_NORMAL
|
2021-07-22 03:11:47 +00:00
|
|
|
): array {
|
2020-07-22 16:07:50 +00:00
|
|
|
$this->assertRevisionParameter( 'old', $pageId, $old );
|
|
|
|
|
$this->assertRevisionParameter( 'new', $pageId, $new );
|
|
|
|
|
|
|
|
|
|
$options = (array)$options;
|
2020-08-17 18:22:17 +00:00
|
|
|
$includeOld = in_array( self::INCLUDE_OLD, $options ) ||
|
|
|
|
|
in_array( self::INCLUDE_BOTH, $options );
|
|
|
|
|
$includeNew = in_array( self::INCLUDE_NEW, $options ) ||
|
|
|
|
|
in_array( self::INCLUDE_BOTH, $options );
|
2020-07-22 16:07:50 +00:00
|
|
|
|
|
|
|
|
// No DB query needed if old and new are the same revision.
|
|
|
|
|
// Can't check for consecutive revisions with 'getParentId' for a similar
|
|
|
|
|
// optimization as edge cases exist when there are revisions between
|
|
|
|
|
// a revision and it's parent. See T185167 for more details.
|
2021-02-04 17:44:39 +00:00
|
|
|
if ( $old && $new && $new->getId( $this->wikiId ) === $old->getId( $this->wikiId ) ) {
|
|
|
|
|
return $includeOld || $includeNew ? [ $new->getId( $this->wikiId ) ] : [];
|
2020-07-22 16:07:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$db = $this->getDBConnectionRefForQueryFlags( $flags );
|
|
|
|
|
$conds = array_merge(
|
|
|
|
|
[
|
|
|
|
|
'rev_page' => $pageId,
|
|
|
|
|
$db->bitAnd( 'rev_deleted', RevisionRecord::DELETED_TEXT ) . ' = 0'
|
|
|
|
|
],
|
|
|
|
|
$this->getRevisionLimitConditions( $db, $old, $new, $options )
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$queryOptions = [];
|
|
|
|
|
if ( $order !== null ) {
|
|
|
|
|
$queryOptions['ORDER BY'] = [ "rev_timestamp $order", "rev_id $order" ];
|
|
|
|
|
}
|
|
|
|
|
if ( $max !== null ) {
|
|
|
|
|
$queryOptions['LIMIT'] = $max + 1; // extra to detect truncation
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$values = $db->selectFieldValues(
|
|
|
|
|
'revision',
|
|
|
|
|
'rev_id',
|
|
|
|
|
$conds,
|
|
|
|
|
__METHOD__,
|
|
|
|
|
$queryOptions
|
|
|
|
|
);
|
|
|
|
|
return array_map( 'intval', $values );
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-24 19:08:33 +00:00
|
|
|
/**
|
|
|
|
|
* Get the authors between the given revisions or revisions.
|
|
|
|
|
* Used for diffs and other things that really need it.
|
|
|
|
|
*
|
|
|
|
|
* @since 1.35
|
|
|
|
|
*
|
|
|
|
|
* @param int $pageId The id of the page
|
|
|
|
|
* @param RevisionRecord|null $old Old revision.
|
2020-03-30 20:20:27 +00:00
|
|
|
* If null is provided, count starting from the first revision (inclusive).
|
2019-10-24 19:08:33 +00:00
|
|
|
* @param RevisionRecord|null $new New revision.
|
|
|
|
|
* If null is provided, count until the last revision (inclusive).
|
2021-01-11 22:51:30 +00:00
|
|
|
* @param Authority|null $performer the user who's access rights to apply
|
2019-10-24 19:08:33 +00:00
|
|
|
* @param int|null $max Limit of Revisions to count, will be incremented to detect truncations.
|
|
|
|
|
* @param string|array $options Single option, or an array of options:
|
2020-08-17 18:22:17 +00:00
|
|
|
* RevisionStore::INCLUDE_OLD Include $old in the range; $new is excluded.
|
|
|
|
|
* RevisionStore::INCLUDE_NEW Include $new in the range; $old is excluded.
|
|
|
|
|
* RevisionStore::INCLUDE_BOTH Include both $old and $new in the range.
|
2019-10-24 19:08:33 +00:00
|
|
|
* @throws InvalidArgumentException in case either revision is unsaved or
|
2020-03-30 20:20:27 +00:00
|
|
|
* the revisions do not belong to the same page or unknown option is passed.
|
2019-10-24 19:08:33 +00:00
|
|
|
* @return UserIdentity[] Names of revision authors in the range
|
|
|
|
|
*/
|
|
|
|
|
public function getAuthorsBetween(
|
|
|
|
|
$pageId,
|
|
|
|
|
RevisionRecord $old = null,
|
|
|
|
|
RevisionRecord $new = null,
|
2021-01-11 22:51:30 +00:00
|
|
|
Authority $performer = null,
|
2019-10-24 19:08:33 +00:00
|
|
|
$max = null,
|
|
|
|
|
$options = []
|
|
|
|
|
) {
|
|
|
|
|
$this->assertRevisionParameter( 'old', $pageId, $old );
|
|
|
|
|
$this->assertRevisionParameter( 'new', $pageId, $new );
|
|
|
|
|
$options = (array)$options;
|
|
|
|
|
|
|
|
|
|
// No DB query needed if old and new are the same revision.
|
|
|
|
|
// Can't check for consecutive revisions with 'getParentId' for a similar
|
|
|
|
|
// optimization as edge cases exist when there are revisions between
|
|
|
|
|
//a revision and it's parent. See T185167 for more details.
|
2021-02-04 17:44:39 +00:00
|
|
|
if ( $old && $new && $new->getId( $this->wikiId ) === $old->getId( $this->wikiId ) ) {
|
2019-10-24 19:08:33 +00:00
|
|
|
if ( empty( $options ) ) {
|
|
|
|
|
return [];
|
2021-01-11 22:51:30 +00:00
|
|
|
} elseif ( $performer ) {
|
|
|
|
|
return [ $new->getUser( RevisionRecord::FOR_THIS_USER, $performer ) ];
|
2019-10-24 19:08:33 +00:00
|
|
|
} else {
|
2021-01-11 22:51:30 +00:00
|
|
|
return [ $new->getUser() ];
|
2019-10-24 19:08:33 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$dbr = $this->getDBConnectionRef( DB_REPLICA );
|
|
|
|
|
$conds = array_merge(
|
2019-11-21 15:21:41 +00:00
|
|
|
[
|
|
|
|
|
'rev_page' => $pageId,
|
|
|
|
|
$dbr->bitAnd( 'rev_deleted', RevisionRecord::DELETED_USER ) . " = 0"
|
|
|
|
|
],
|
2019-10-24 19:08:33 +00:00
|
|
|
$this->getRevisionLimitConditions( $dbr, $old, $new, $options )
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$queryOpts = [ 'DISTINCT' ];
|
|
|
|
|
if ( $max !== null ) {
|
|
|
|
|
$queryOpts['LIMIT'] = $max + 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$actorQuery = $this->actorMigration->getJoin( 'rev_user' );
|
|
|
|
|
return array_map( function ( $row ) {
|
2021-02-04 02:43:09 +00:00
|
|
|
return $this->actorStore->newActorFromRowFields(
|
|
|
|
|
$row->rev_user,
|
|
|
|
|
$row->rev_user_text,
|
|
|
|
|
$row->rev_actor
|
|
|
|
|
);
|
2019-10-24 19:08:33 +00:00
|
|
|
}, iterator_to_array( $dbr->select(
|
|
|
|
|
array_merge( [ 'revision' ], $actorQuery['tables'] ),
|
|
|
|
|
$actorQuery['fields'],
|
|
|
|
|
$conds, __METHOD__,
|
|
|
|
|
$queryOpts,
|
|
|
|
|
$actorQuery['joins']
|
|
|
|
|
) ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the number of authors between the given revisions.
|
|
|
|
|
* Used for diffs and other things that really need it.
|
|
|
|
|
*
|
|
|
|
|
* @since 1.35
|
|
|
|
|
*
|
|
|
|
|
* @param int $pageId The id of the page
|
|
|
|
|
* @param RevisionRecord|null $old Old revision .
|
2020-03-30 20:20:27 +00:00
|
|
|
* If null is provided, count starting from the first revision (inclusive).
|
2019-10-24 19:08:33 +00:00
|
|
|
* @param RevisionRecord|null $new New revision.
|
|
|
|
|
* If null is provided, count until the last revision (inclusive).
|
2021-01-11 22:51:30 +00:00
|
|
|
* @param Authority|null $performer the user who's access rights to apply
|
2019-10-24 19:08:33 +00:00
|
|
|
* @param int|null $max Limit of Revisions to count, will be incremented to detect truncations.
|
|
|
|
|
* @param string|array $options Single option, or an array of options:
|
2020-08-17 18:22:17 +00:00
|
|
|
* RevisionStore::INCLUDE_OLD Include $old in the range; $new is excluded.
|
|
|
|
|
* RevisionStore::INCLUDE_NEW Include $new in the range; $old is excluded.
|
|
|
|
|
* RevisionStore::INCLUDE_BOTH Include both $old and $new in the range.
|
2019-10-24 19:08:33 +00:00
|
|
|
* @throws InvalidArgumentException in case either revision is unsaved or
|
2020-03-30 20:20:27 +00:00
|
|
|
* the revisions do not belong to the same page or unknown option is passed.
|
2019-10-24 19:08:33 +00:00
|
|
|
* @return int Number of revisions authors in the range.
|
|
|
|
|
*/
|
|
|
|
|
public function countAuthorsBetween(
|
|
|
|
|
$pageId,
|
|
|
|
|
RevisionRecord $old = null,
|
|
|
|
|
RevisionRecord $new = null,
|
2021-01-11 22:51:30 +00:00
|
|
|
Authority $performer = null,
|
2019-10-24 19:08:33 +00:00
|
|
|
$max = null,
|
|
|
|
|
$options = []
|
|
|
|
|
) {
|
|
|
|
|
// TODO: Implement with a separate query to avoid cost of selecting unneeded fields
|
|
|
|
|
// and creation of UserIdentity stuff.
|
2021-01-11 22:51:30 +00:00
|
|
|
return count( $this->getAuthorsBetween( $pageId, $old, $new, $performer, $max, $options ) );
|
2019-10-24 19:08:33 +00:00
|
|
|
}
|
|
|
|
|
|
2019-10-16 20:10:58 +00:00
|
|
|
/**
|
|
|
|
|
* Get the number of revisions between the given revisions.
|
|
|
|
|
* Used for diffs and other things that really need it.
|
|
|
|
|
*
|
|
|
|
|
* @since 1.35
|
|
|
|
|
*
|
2019-10-16 20:39:02 +00:00
|
|
|
* @param int $pageId The id of the page
|
2019-10-24 19:08:33 +00:00
|
|
|
* @param RevisionRecord|null $old Old revision.
|
2020-03-30 20:20:27 +00:00
|
|
|
* If null is provided, count starting from the first revision (inclusive).
|
2019-10-24 19:08:33 +00:00
|
|
|
* @param RevisionRecord|null $new New revision.
|
2019-10-16 20:39:02 +00:00
|
|
|
* If null is provided, count until the last revision (inclusive).
|
2019-10-16 20:10:58 +00:00
|
|
|
* @param int|null $max Limit of Revisions to count, will be incremented to detect truncations.
|
2019-10-24 19:08:33 +00:00
|
|
|
* @param string|array $options Single option, or an array of options:
|
2020-08-17 18:22:17 +00:00
|
|
|
* RevisionStore::INCLUDE_OLD Include $old in the range; $new is excluded.
|
|
|
|
|
* RevisionStore::INCLUDE_NEW Include $new in the range; $old is excluded.
|
|
|
|
|
* RevisionStore::INCLUDE_BOTH Include both $old and $new in the range.
|
2019-10-16 20:10:58 +00:00
|
|
|
* @throws InvalidArgumentException in case either revision is unsaved or
|
2020-03-30 20:20:27 +00:00
|
|
|
* the revisions do not belong to the same page.
|
2019-10-16 20:10:58 +00:00
|
|
|
* @return int Number of revisions between these revisions.
|
|
|
|
|
*/
|
2019-10-16 20:39:02 +00:00
|
|
|
public function countRevisionsBetween(
|
|
|
|
|
$pageId,
|
|
|
|
|
RevisionRecord $old = null,
|
|
|
|
|
RevisionRecord $new = null,
|
2019-10-24 19:08:33 +00:00
|
|
|
$max = null,
|
|
|
|
|
$options = []
|
2019-10-16 20:39:02 +00:00
|
|
|
) {
|
|
|
|
|
$this->assertRevisionParameter( 'old', $pageId, $old );
|
|
|
|
|
$this->assertRevisionParameter( 'new', $pageId, $new );
|
|
|
|
|
|
|
|
|
|
// No DB query needed if old and new are the same revision.
|
|
|
|
|
// Can't check for consecutive revisions with 'getParentId' for a similar
|
|
|
|
|
// optimization as edge cases exist when there are revisions between
|
|
|
|
|
//a revision and it's parent. See T185167 for more details.
|
2021-02-04 17:44:39 +00:00
|
|
|
if ( $old && $new && $new->getId( $this->wikiId ) === $old->getId( $this->wikiId ) ) {
|
2019-10-16 20:39:02 +00:00
|
|
|
return 0;
|
2019-10-16 20:10:58 +00:00
|
|
|
}
|
2017-08-27 15:29:18 +00:00
|
|
|
|
2019-10-16 20:10:58 +00:00
|
|
|
$dbr = $this->getDBConnectionRef( DB_REPLICA );
|
2019-10-24 19:08:33 +00:00
|
|
|
$conds = array_merge(
|
2019-11-21 15:21:41 +00:00
|
|
|
[
|
|
|
|
|
'rev_page' => $pageId,
|
|
|
|
|
$dbr->bitAnd( 'rev_deleted', RevisionRecord::DELETED_TEXT ) . " = 0"
|
|
|
|
|
],
|
2019-10-24 19:08:33 +00:00
|
|
|
$this->getRevisionLimitConditions( $dbr, $old, $new, $options )
|
|
|
|
|
);
|
2019-10-16 20:10:58 +00:00
|
|
|
if ( $max !== null ) {
|
|
|
|
|
return $dbr->selectRowCount( 'revision', '1',
|
|
|
|
|
$conds,
|
|
|
|
|
__METHOD__,
|
|
|
|
|
[ 'LIMIT' => $max + 1 ] // extra to detect truncation
|
|
|
|
|
);
|
|
|
|
|
} else {
|
|
|
|
|
return (int)$dbr->selectField( 'revision', 'count(*)', $conds, __METHOD__ );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-24 15:23:49 +00:00
|
|
|
/**
|
|
|
|
|
* Tries to find a revision identical to $revision in $searchLimit most recent revisions
|
|
|
|
|
* of this page. The comparison is based on SHA1s of these revisions.
|
|
|
|
|
*
|
|
|
|
|
* @since 1.37
|
|
|
|
|
*
|
|
|
|
|
* @param RevisionRecord $revision which revision to compare to
|
|
|
|
|
* @param int $searchLimit How many recent revisions should be checked
|
|
|
|
|
*
|
|
|
|
|
* @return RevisionRecord|null
|
|
|
|
|
*/
|
|
|
|
|
public function findIdenticalRevision(
|
|
|
|
|
RevisionRecord $revision,
|
|
|
|
|
int $searchLimit
|
|
|
|
|
): ?RevisionRecord {
|
|
|
|
|
$revision->assertWiki( $this->wikiId );
|
|
|
|
|
$db = $this->getDBConnectionRef( DB_REPLICA );
|
|
|
|
|
$revQuery = $this->getQueryInfo();
|
|
|
|
|
$subquery = $db->buildSelectSubquery(
|
|
|
|
|
$revQuery['tables'],
|
|
|
|
|
$revQuery['fields'],
|
|
|
|
|
[ 'rev_page' => $revision->getPageId( $this->wikiId ) ],
|
|
|
|
|
__METHOD__,
|
|
|
|
|
[
|
|
|
|
|
'ORDER BY' => [
|
|
|
|
|
'rev_timestamp DESC',
|
|
|
|
|
// for cases where there are multiple revs with same timestamp
|
|
|
|
|
'rev_id DESC'
|
|
|
|
|
],
|
|
|
|
|
'LIMIT' => $searchLimit,
|
|
|
|
|
// skip the most recent edit, we can't revert to it anyway
|
|
|
|
|
'OFFSET' => 1
|
|
|
|
|
],
|
|
|
|
|
$revQuery['joins']
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// selectRow effectively uses LIMIT 1 clause, returning only the first result
|
|
|
|
|
$revisionRow = $db->selectRow(
|
|
|
|
|
[ 'recent_revs' => $subquery ],
|
|
|
|
|
'*',
|
|
|
|
|
[ 'rev_sha1' => $revision->getSha1() ],
|
|
|
|
|
__METHOD__
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
return $revisionRow ? $this->newRevisionFromRow( $revisionRow ) : null;
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-02 23:55:07 +00:00
|
|
|
// TODO: move relevant methods from Title here, e.g. isBigDeletion, etc.
|
2017-08-27 15:29:18 +00:00
|
|
|
}
|
2018-09-20 17:29:04 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Retain the old class name for backwards compatibility.
|
|
|
|
|
* @deprecated since 1.32
|
|
|
|
|
*/
|
|
|
|
|
class_alias( RevisionStore::class, 'MediaWiki\Storage\RevisionStore' );
|