Better error message via api when content model does not allow editing
[mediawiki.git] / includes / revisiondelete / RevDelFileList.php
blob2295eaa106cbe9da13479f50aee045a3d4975a84
1 <?php
2 /**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
18 * @file
19 * @ingroup RevisionDelete
22 /**
23 * List for oldimage table items
25 class RevDelFileList extends RevDelList {
26 /** @var array */
27 public $storeBatch;
29 /** @var array */
30 public $deleteBatch;
32 /** @var array */
33 public $cleanupBatch;
35 public function getType() {
36 return 'oldimage';
39 public static function getRelationType() {
40 return 'oi_archive_name';
43 public static function getRestriction() {
44 return 'deleterevision';
47 public static function getRevdelConstant() {
48 return File::DELETED_FILE;
51 /**
52 * @param IDatabase $db
53 * @return mixed
55 public function doQuery( $db ) {
56 $archiveNames = array();
57 foreach ( $this->ids as $timestamp ) {
58 $archiveNames[] = $timestamp . '!' . $this->title->getDBkey();
61 return $db->select(
62 'oldimage',
63 OldLocalFile::selectFields(),
64 array(
65 'oi_name' => $this->title->getDBkey(),
66 'oi_archive_name' => $archiveNames
68 __METHOD__,
69 array( 'ORDER BY' => 'oi_timestamp DESC' )
73 public function newItem( $row ) {
74 return new RevDelFileItem( $this, $row );
77 public function clearFileOps() {
78 $this->deleteBatch = array();
79 $this->storeBatch = array();
80 $this->cleanupBatch = array();
83 public function doPreCommitUpdates() {
84 $status = Status::newGood();
85 $repo = RepoGroup::singleton()->getLocalRepo();
86 if ( $this->storeBatch ) {
87 $status->merge( $repo->storeBatch( $this->storeBatch, FileRepo::OVERWRITE_SAME ) );
89 if ( !$status->isOK() ) {
90 return $status;
92 if ( $this->deleteBatch ) {
93 $status->merge( $repo->deleteBatch( $this->deleteBatch ) );
95 if ( !$status->isOK() ) {
96 // Running cleanupDeletedBatch() after a failed storeBatch() with the DB already
97 // modified (but destined for rollback) causes data loss
98 return $status;
100 if ( $this->cleanupBatch ) {
101 $status->merge( $repo->cleanupDeletedBatch( $this->cleanupBatch ) );
104 return $status;
107 public function doPostCommitUpdates() {
108 $file = wfLocalFile( $this->title );
109 $file->purgeCache();
110 $file->purgeDescription();
111 $purgeUrls = array();
112 foreach ( $this->ids as $timestamp ) {
113 $archiveName = $timestamp . '!' . $this->title->getDBkey();
114 $file->purgeOldThumbnails( $archiveName );
115 $purgeUrls[] = $file->getArchiveUrl( $archiveName );
117 if ( $this->getConfig()->get( 'UseSquid' ) ) {
118 // purge full images from cache
119 SquidUpdate::purge( $purgeUrls );
122 return Status::newGood();
125 public function getSuppressBit() {
126 return File::DELETED_RESTRICTED;