* Inappropriate @inheritDoc usage. Arguably all @inheritDoc is inappropriate but these are the ones PHPStorm flags as misleading due to the method not being inherited. * Doc comment type does not match actual argument/return type. * I replaced "@return void|never" with "@return void" since never means never, it doesn't make sense for it to be conditional. If a method can return (even if that is unlikely) then @return contains the type that it returns. "@return never" means that there is no such type because the method never returns. * Incomplete/partial/broken doc tags Change-Id: Ide86bd6d2b44387f37d234c2b059d6fbc42ec962
166 lines
4.1 KiB
PHP
166 lines
4.1 KiB
PHP
<?php
|
|
/**
|
|
* 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
|
|
*
|
|
* @file
|
|
* @ingroup RevisionDelete
|
|
*/
|
|
|
|
use MediaWiki\Page\PageIdentity;
|
|
use Wikimedia\Rdbms\IDatabase;
|
|
use Wikimedia\Rdbms\IResultWrapper;
|
|
use Wikimedia\Rdbms\LBFactory;
|
|
|
|
/**
|
|
* List for oldimage table items
|
|
*/
|
|
class RevDelFileList extends RevDelList {
|
|
|
|
/** @var HtmlCacheUpdater */
|
|
private $htmlCacheUpdater;
|
|
|
|
/** @var RepoGroup */
|
|
private $repoGroup;
|
|
|
|
/** @var array */
|
|
public $storeBatch;
|
|
|
|
/** @var array */
|
|
public $deleteBatch;
|
|
|
|
/** @var array */
|
|
public $cleanupBatch;
|
|
|
|
/**
|
|
* @param IContextSource $context
|
|
* @param PageIdentity $page
|
|
* @param array $ids
|
|
* @param LBFactory $lbFactory
|
|
* @param HtmlCacheUpdater $htmlCacheUpdater
|
|
* @param RepoGroup $repoGroup
|
|
*/
|
|
public function __construct(
|
|
IContextSource $context,
|
|
PageIdentity $page,
|
|
array $ids,
|
|
LBFactory $lbFactory,
|
|
HtmlCacheUpdater $htmlCacheUpdater,
|
|
RepoGroup $repoGroup
|
|
) {
|
|
parent::__construct( $context, $page, $ids, $lbFactory );
|
|
$this->htmlCacheUpdater = $htmlCacheUpdater;
|
|
$this->repoGroup = $repoGroup;
|
|
}
|
|
|
|
public function getType() {
|
|
return 'oldimage';
|
|
}
|
|
|
|
public static function getRelationType() {
|
|
return 'oi_archive_name';
|
|
}
|
|
|
|
public static function getRestriction() {
|
|
return 'deleterevision';
|
|
}
|
|
|
|
public static function getRevdelConstant() {
|
|
return File::DELETED_FILE;
|
|
}
|
|
|
|
/**
|
|
* @param IDatabase $db
|
|
* @return IResultWrapper
|
|
*/
|
|
public function doQuery( $db ) {
|
|
$archiveNames = [];
|
|
foreach ( $this->ids as $timestamp ) {
|
|
$archiveNames[] = $timestamp . '!' . $this->page->getDBkey();
|
|
}
|
|
|
|
$oiQuery = OldLocalFile::getQueryInfo();
|
|
return $db->select(
|
|
$oiQuery['tables'],
|
|
$oiQuery['fields'],
|
|
[
|
|
'oi_name' => $this->page->getDBkey(),
|
|
'oi_archive_name' => $archiveNames
|
|
],
|
|
__METHOD__,
|
|
[ 'ORDER BY' => 'oi_timestamp DESC' ],
|
|
$oiQuery['joins']
|
|
);
|
|
}
|
|
|
|
public function newItem( $row ) {
|
|
return new RevDelFileItem( $this, $row );
|
|
}
|
|
|
|
public function clearFileOps() {
|
|
$this->deleteBatch = [];
|
|
$this->storeBatch = [];
|
|
$this->cleanupBatch = [];
|
|
}
|
|
|
|
public function doPreCommitUpdates() {
|
|
$status = Status::newGood();
|
|
$repo = $this->repoGroup->getLocalRepo();
|
|
if ( $this->storeBatch ) {
|
|
$status->merge( $repo->storeBatch( $this->storeBatch, FileRepo::OVERWRITE_SAME ) );
|
|
}
|
|
if ( !$status->isOK() ) {
|
|
return $status;
|
|
}
|
|
if ( $this->deleteBatch ) {
|
|
$status->merge( $repo->deleteBatch( $this->deleteBatch ) );
|
|
}
|
|
if ( !$status->isOK() ) {
|
|
// Running cleanupDeletedBatch() after a failed storeBatch() with the DB already
|
|
// modified (but destined for rollback) causes data loss
|
|
return $status;
|
|
}
|
|
if ( $this->cleanupBatch ) {
|
|
$status->merge( $repo->cleanupDeletedBatch( $this->cleanupBatch ) );
|
|
}
|
|
|
|
return $status;
|
|
}
|
|
|
|
public function doPostCommitUpdates( array $visibilityChangeMap ) {
|
|
$file = $this->repoGroup->getLocalRepo()->newFile( $this->page );
|
|
$file->purgeCache();
|
|
$file->purgeDescription();
|
|
|
|
// Purge full images from cache
|
|
$purgeUrls = [];
|
|
foreach ( $this->ids as $timestamp ) {
|
|
$archiveName = $timestamp . '!' . $this->page->getDBkey();
|
|
$file->purgeOldThumbnails( $archiveName );
|
|
$purgeUrls[] = $file->getArchiveUrl( $archiveName );
|
|
}
|
|
|
|
$this->htmlCacheUpdater->purgeUrls(
|
|
$purgeUrls,
|
|
HtmlCacheUpdater::PURGE_INTENT_TXROUND_REFLECTED
|
|
);
|
|
|
|
return Status::newGood();
|
|
}
|
|
|
|
public function getSuppressBit() {
|
|
return File::DELETED_RESTRICTED;
|
|
}
|
|
}
|