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 return array( 'revert' => 'RevertFileAction' );
50 public function setFile( $file ) {
52 $this->mFileLoaded
= true;
58 protected function loadFile() {
59 if ( $this->mFileLoaded
) {
62 $this->mFileLoaded
= true;
64 $this->mFile
= wfFindFile( $this->mTitle
);
65 if ( !$this->mFile
) {
66 $this->mFile
= wfLocalFile( $this->mTitle
); // always a File
68 $this->mRepo
= $this->mFile
->getRepo();
73 * @return mixed|null|Title
75 public function getRedirectTarget() {
77 if ( $this->mFile
->isLocal() ) {
78 return parent
::getRedirectTarget();
81 $from = $this->mFile
->getRedirected();
82 $to = $this->mFile
->getName();
86 return $this->mRedirectTarget
= Title
::makeTitle( NS_FILE
, $to );
90 * @return bool|mixed|Title
92 public function followRedirect() {
94 if ( $this->mFile
->isLocal() ) {
95 return parent
::followRedirect();
97 $from = $this->mFile
->getRedirected();
98 $to = $this->mFile
->getName();
102 return Title
::makeTitle( NS_FILE
, $to );
109 public function isRedirect( $text = false ) {
111 if ( $this->mFile
->isLocal() ) {
112 return parent
::isRedirect( $text );
115 return (bool)$this->mFile
->getRedirected();
121 public function isLocal() {
123 return $this->mFile
->isLocal();
129 public function getFile() {
137 public function getDuplicates() {
139 if ( !is_null( $this->mDupes
) ) {
140 return $this->mDupes
;
142 $hash = $this->mFile
->getSha1();
144 return $this->mDupes
= array();
146 $dupes = RepoGroup
::singleton()->findBySha1( $hash );
147 // Remove duplicates with self and non matching file sizes
148 $self = $this->mFile
->getRepoName() . ':' . $this->mFile
->getName();
149 $size = $this->mFile
->getSize();
154 foreach ( $dupes as $index => $file ) {
155 $key = $file->getRepoName() . ':' . $file->getName();
156 if ( $key == $self ) {
157 unset( $dupes[$index] );
159 if ( $file->getSize() != $size ) {
160 unset( $dupes[$index] );
163 $this->mDupes
= $dupes;
164 return $this->mDupes
;
168 * Override handling of action=purge
171 public function doPurge() {
173 if ( $this->mFile
->exists() ) {
174 wfDebug( 'ImagePage::doPurge purging ' . $this->mFile
->getName() . "\n" );
175 $update = new HTMLCacheUpdate( $this->mTitle
, 'imagelinks' );
177 $this->mFile
->upgradeRow();
178 $this->mFile
->purgeCache( array( 'forThumbRefresh' => true ) );
180 wfDebug( 'ImagePage::doPurge no image for ' . $this->mFile
->getName() . "; limiting purge to cache only\n" );
181 // even if the file supposedly doesn't exist, force any cached information
182 // to be updated (in case the cached information is wrong)
183 $this->mFile
->purgeCache( array( 'forThumbRefresh' => true ) );
185 return parent
::doPurge();