MediaWiki REL1_34
MovePage Class Reference

Handles the backend logic of moving a page from one title to another. More...

Collaboration diagram for MovePage:

Public Member Functions

 __construct (Title $oldTitle, Title $newTitle, ServiceOptions $options=null, ILoadBalancer $loadBalancer=null, NamespaceInfo $nsInfo=null, WatchedItemStoreInterface $watchedItems=null, PermissionManager $permMgr=null, RepoGroup $repoGroup=null)
 Calling this directly is deprecated in 1.34.
 
 checkPermissions (User $user, $reason)
 Check if the user is allowed to perform the move.
 
 isValidMove ()
 Does various sanity checks that the move is valid.
 
 move (User $user, $reason=null, $createRedirect=true, array $changeTags=[])
 Move a page without taking user permissions into account.
 
 moveIfAllowed (User $user, $reason=null, $createRedirect=true, array $changeTags=[])
 Same as move(), but with permissions checks.
 
 moveSubpages (User $user, $reason=null, $createRedirect=true, array $changeTags=[])
 Move the source page's subpages to be subpages of the target page, without checking user permissions.
 
 moveSubpagesIfAllowed (User $user, $reason=null, $createRedirect=true, array $changeTags=[])
 Move the source page's subpages to be subpages of the target page, with user permission checks.
 

Protected Member Functions

 isValidFileMove ()
 Sanity checks for when a file is being moved.
 
 isValidMoveTarget ()
 Checks if $this can be moved to a given Title.
 

Protected Attributes

ILoadBalancer $loadBalancer
 
Title $newTitle
 
NamespaceInfo $nsInfo
 
Title $oldTitle
 
ServiceOptions $options
 
PermissionManager $permMgr
 
RepoGroup $repoGroup
 
WatchedItemStoreInterface $watchedItems
 

Private Member Functions

 moveFile ( $oldTitle, $newTitle)
 Move a file associated with a page to a new location.
 
 moveSubpagesInternal ( $checkPermissions, User $user, $reason, $createRedirect, array $changeTags)
 
 moveToInternal (User $user, &$nt, $reason='', $createRedirect=true, array $changeTags=[])
 Move page to a title which is either a redirect to the source page or nonexistent.
 
 moveUnsafe (User $user, $reason, $createRedirect, array $changeTags)
 Moves without any sort of safety or sanity checks.
 

Detailed Description

Handles the backend logic of moving a page from one title to another.

Since
1.24

Definition at line 36 of file MovePage.php.

Constructor & Destructor Documentation

◆ __construct()

MovePage::__construct ( Title  $oldTitle,
Title  $newTitle,
ServiceOptions  $options = null,
ILoadBalancer  $loadBalancer = null,
NamespaceInfo  $nsInfo = null,
WatchedItemStoreInterface  $watchedItems = null,
PermissionManager  $permMgr = null,
RepoGroup  $repoGroup = null 
)

Calling this directly is deprecated in 1.34.

Use MovePageFactory instead.

Parameters
Title$oldTitle
Title$newTitle
ServiceOptions | null$options
ILoadBalancer | null$loadBalancer
NamespaceInfo | null$nsInfo
WatchedItemStoreInterface | null$watchedItems
PermissionManager | null$permMgr

Definition at line 89 of file MovePage.php.

Member Function Documentation

◆ checkPermissions()

MovePage::checkPermissions ( User  $user,
  $reason 
)

Check if the user is allowed to perform the move.

Parameters
User$user
string | null$reasonTo check against summary spam regex. Set to null to skip the check, for instance to display errors preemptively before the user has filled in a summary.
Returns
Status

Definition at line 121 of file MovePage.php.

References EditPage\matchSummarySpamRegex(), and wfMergeErrorArrays().

Referenced by moveIfAllowed().

◆ isValidFileMove()

MovePage::isValidFileMove ( )
protected

Sanity checks for when a file is being moved.

Returns
Status

Definition at line 237 of file MovePage.php.

References $file, File\checkExtensionCompatibility(), NS_FILE, and wfStripIllegalFilenameChars().

Referenced by isValidMove().

◆ isValidMove()

MovePage::isValidMove ( )

Does various sanity checks that the move is valid.

Only things based on the two titles should be checked here.

Returns
Status

Definition at line 163 of file MovePage.php.

References isValidFileMove(), and NS_FILE.

Referenced by move(), and moveIfAllowed().

◆ isValidMoveTarget()

MovePage::isValidMoveTarget ( )
protected

Checks if $this can be moved to a given Title.

  • Selects for update, so don't call it unless you mean business
Since
1.25
Returns
bool

Definition at line 267 of file MovePage.php.

References $content, $file, Revision\newFromTitle(), NS_FILE, and wfDebug().

◆ move()

MovePage::move ( User  $user,
  $reason = null,
  $createRedirect = true,
array  $changeTags = [] 
)

Move a page without taking user permissions into account.

Only checks if the move is itself invalid, e.g., trying to move a special page or trying to move a page onto one that already exists.

Parameters
User$user
string | null$reason
bool | null$createRedirect
string[]$changeTagsChange tags to apply to the entry in the move log
Returns
Status

Definition at line 319 of file MovePage.php.

References isValidMove(), and moveUnsafe().

◆ moveFile()

MovePage::moveFile (   $oldTitle,
  $newTitle 
)
private

Move a file associated with a page to a new location.

Can also be used to revert after a DB failure.

Access:\n private
Parameters
Title$oldTitleOld location to move the file from.
Title$newTitleNew location to move the file to.
Returns
Status

Definition at line 687 of file MovePage.php.

References $file, and Title\getPrefixedText().

Referenced by moveUnsafe().

◆ moveIfAllowed()

MovePage::moveIfAllowed ( User  $user,
  $reason = null,
  $createRedirect = true,
array  $changeTags = [] 
)

Same as move(), but with permissions checks.

Parameters
User$user
string | null$reason
bool | null$createRedirectIgnored if user doesn't have suppressredirect permission
string[]$changeTagsChange tags to apply to the entry in the move log
Returns
Status

Definition at line 339 of file MovePage.php.

References ChangeTags\canAddTagsAccompanyingChange(), checkPermissions(), isValidMove(), moveUnsafe(), and User\spreadAnyEditBlock().

◆ moveSubpages()

MovePage::moveSubpages ( User  $user,
  $reason = null,
  $createRedirect = true,
array  $changeTags = [] 
)

Move the source page's subpages to be subpages of the target page, without checking user permissions.

The caller is responsible for moving the source page itself. We will still not do moves that are inherently not allowed, nor will we move more than $wgMaximumMovedPages.

Parameters
User$user
string | null$reasonThe reason for the move
bool | null$createRedirectWhether to create redirects from the old subpages to the new ones
string[]$changeTagsApplied to entries in the move log and redirect page revision
Returns
Status Good if no errors occurred. Ok if at least one page succeeded. The "value" of the top-level status is an array containing the per-title status for each page. For any move that succeeded, the "value" of the per-title status is the new page title.

Definition at line 377 of file MovePage.php.

References moveSubpagesInternal().

◆ moveSubpagesIfAllowed()

MovePage::moveSubpagesIfAllowed ( User  $user,
  $reason = null,
  $createRedirect = true,
array  $changeTags = [] 
)

Move the source page's subpages to be subpages of the target page, with user permission checks.

The caller is responsible for moving the source page itself.

Parameters
User$user
string | null$reasonThe reason for the move
bool | null$createRedirectWhether to create redirects from the old subpages to the new ones. Ignored if the user doesn't have the 'suppressredirect' right.
string[]$changeTagsApplied to entries in the move log and redirect page revision
Returns
Status Good if no errors occurred. Ok if at least one page succeeded. The "value" of the top-level status is an array containing the per-title status for each page. For any move that succeeded, the "value" of the per-title status is the new page title.

Definition at line 396 of file MovePage.php.

References moveSubpagesInternal().

◆ moveSubpagesInternal()

MovePage::moveSubpagesInternal (   $checkPermissions,
User  $user,
  $reason,
  $createRedirect,
array  $changeTags 
)
private
Parameters
bool$checkPermissions
User$user
string$reason
bool$createRedirect
array$changeTags
Returns
Status

Definition at line 410 of file MovePage.php.

References $wgMaximumMovedPages, StringUtils\escapeRegexReplacement(), NamespaceInfo\getCanonicalName(), and NamespaceInfo\hasSubpages().

Referenced by moveSubpages(), and moveSubpagesIfAllowed().

◆ moveToInternal()

MovePage::moveToInternal ( User  $user,
$nt,
  $reason = '',
  $createRedirect = true,
array  $changeTags = [] 
)
private

Move page to a title which is either a redirect to the source page or nonexistent.

Todo:
This was basically directly moved from Title, it should be split into smaller functions
Parameters
User$userthe User doing the move
Title$ntThe page to move to, which should be a redirect or non-existent
string$reasonThe reason for the move
bool$createRedirectWhether to leave a redirect at the old title. Does not check if the user has the suppressredirect right
string[]$changeTagsChange tags to apply to the entry in the move log
Returns
Revision the revision created by the move
Exceptions
MWException

Definition at line 720 of file MovePage.php.

References ChangeTags\addTags(), DB_MASTER, User\getId(), User\getName(), ChangeTags\getSoftwareTags(), User\incEditCount(), LogFormatter\newFromEntry(), Revision\newNullRevision(), NS_CATEGORY, and wfMessage().

Referenced by moveUnsafe().

◆ moveUnsafe()

MovePage::moveUnsafe ( User  $user,
  $reason,
  $createRedirect,
array  $changeTags 
)
private

Moves without any sort of safety or sanity checks.

Hooks can still fail the move, however.

Parameters
User$user
string$reason
bool$createRedirect
string[]$changeTagsChange tags to apply to the entry in the move log
Returns
Status

Definition at line 499 of file MovePage.php.

References $res, $type, DB_MASTER, moveFile(), moveToInternal(), NS_FILE, Collation\singleton(), and wfMessage().

Referenced by move(), and moveIfAllowed().

Member Data Documentation

◆ $loadBalancer

ILoadBalancer MovePage::$loadBalancer
protected

Definition at line 56 of file MovePage.php.

◆ $newTitle

Title MovePage::$newTitle
protected

Definition at line 46 of file MovePage.php.

◆ $nsInfo

NamespaceInfo MovePage::$nsInfo
protected

Definition at line 61 of file MovePage.php.

◆ $oldTitle

Title MovePage::$oldTitle
protected

Definition at line 41 of file MovePage.php.

◆ $options

ServiceOptions MovePage::$options
protected

Definition at line 51 of file MovePage.php.

◆ $permMgr

PermissionManager MovePage::$permMgr
protected

Definition at line 71 of file MovePage.php.

◆ $repoGroup

RepoGroup MovePage::$repoGroup
protected

Definition at line 76 of file MovePage.php.

◆ $watchedItems

WatchedItemStoreInterface MovePage::$watchedItems
protected

Definition at line 66 of file MovePage.php.


The documentation for this class was generated from the following file: