3 * Special handling for file pages.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
24 * Special handling for file pages
28 class WikiFilePage
extends WikiPage
{
32 protected $mFile = false; // !< File object
33 protected $mRepo = null; // !<
34 protected $mFileLoaded = false; // !<
35 protected $mDupes = null; // !<
37 public function __construct( $title ) {
38 parent
::__construct( $title );
43 public function getActionOverrides() {
44 $overrides = parent
::getActionOverrides();
45 $overrides['revert'] = 'RevertFileAction';
52 public function setFile( $file ) {
54 $this->mFileLoaded
= true;
60 protected function loadFile() {
61 if ( $this->mFileLoaded
) {
64 $this->mFileLoaded
= true;
66 $this->mFile
= wfFindFile( $this->mTitle
);
67 if ( !$this->mFile
) {
68 $this->mFile
= wfLocalFile( $this->mTitle
); // always a File
70 $this->mRepo
= $this->mFile
->getRepo();
75 * @return mixed|null|Title
77 public function getRedirectTarget() {
79 if ( $this->mFile
->isLocal() ) {
80 return parent
::getRedirectTarget();
83 $from = $this->mFile
->getRedirected();
84 $to = $this->mFile
->getName();
88 return $this->mRedirectTarget
= Title
::makeTitle( NS_FILE
, $to );
92 * @return bool|mixed|Title
94 public function followRedirect() {
96 if ( $this->mFile
->isLocal() ) {
97 return parent
::followRedirect();
99 $from = $this->mFile
->getRedirected();
100 $to = $this->mFile
->getName();
101 if ( $from == $to ) {
104 return Title
::makeTitle( NS_FILE
, $to );
110 public function isRedirect() {
112 if ( $this->mFile
->isLocal() ) {
113 return parent
::isRedirect();
116 return (bool)$this->mFile
->getRedirected();
122 public function isLocal() {
124 return $this->mFile
->isLocal();
130 public function getFile() {
138 public function getDuplicates() {
140 if ( !is_null( $this->mDupes
) ) {
141 return $this->mDupes
;
143 $hash = $this->mFile
->getSha1();
145 return $this->mDupes
= array();
147 $dupes = RepoGroup
::singleton()->findBySha1( $hash );
148 // Remove duplicates with self and non matching file sizes
149 $self = $this->mFile
->getRepoName() . ':' . $this->mFile
->getName();
150 $size = $this->mFile
->getSize();
155 foreach ( $dupes as $index => $file ) {
156 $key = $file->getRepoName() . ':' . $file->getName();
157 if ( $key == $self ) {
158 unset( $dupes[$index] );
160 if ( $file->getSize() != $size ) {
161 unset( $dupes[$index] );
164 $this->mDupes
= $dupes;
165 return $this->mDupes
;
169 * Override handling of action=purge
172 public function doPurge() {
174 if ( $this->mFile
->exists() ) {
175 wfDebug( 'ImagePage::doPurge purging ' . $this->mFile
->getName() . "\n" );
176 $update = new HTMLCacheUpdate( $this->mTitle
, 'imagelinks' );
178 $this->mFile
->upgradeRow();
179 $this->mFile
->purgeCache( array( 'forThumbRefresh' => true ) );
181 wfDebug( 'ImagePage::doPurge no image for ' . $this->mFile
->getName() . "; limiting purge to cache only\n" );
182 // even if the file supposedly doesn't exist, force any cached information
183 // to be updated (in case the cached information is wrong)
184 $this->mFile
->purgeCache( array( 'forThumbRefresh' => true ) );
186 if ( $this->mRepo
) {
187 // Purge redirect cache
188 $this->mRepo
->invalidateImageRedirect( $this->mTitle
);
190 return parent
::doPurge();