Use Title, not IContextSource; remove createArticle, etc.
[lhc/web/wiklou.git] / includes / WikiFilePage.php
1 <?php
2 /**
3 * Special handling for file pages.
4 *
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.
9 *
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.
14 *
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
19 *
20 * @file
21 */
22
23 /**
24 * Special handling for file pages
25 *
26 * @ingroup Media
27 */
28 class WikiFilePage extends WikiPage {
29 /**
30 * @var File
31 */
32 protected $mFile = false; // !< File object
33 protected $mRepo = null; // !<
34 protected $mFileLoaded = false; // !<
35 protected $mDupes = null; // !<
36
37 public function __construct( $title ) {
38 parent::__construct( $title );
39 $this->mDupes = null;
40 $this->mRepo = null;
41 }
42
43 public function getActionOverrides() {
44 $overrides = parent::getActionOverrides();
45 $overrides[ 'revert' ] = 'RevertFileAction';
46 return $overrides;
47 }
48
49 /**
50 * @param $file File:
51 */
52 public function setFile( $file ) {
53 $this->mFile = $file;
54 $this->mFileLoaded = true;
55 }
56
57 /**
58 * @return bool
59 */
60 protected function loadFile() {
61 if ( $this->mFileLoaded ) {
62 return true;
63 }
64 $this->mFileLoaded = true;
65
66 $this->mFile = wfFindFile( $this->mTitle );
67 if ( !$this->mFile ) {
68 $this->mFile = wfLocalFile( $this->mTitle ); // always a File
69 }
70 $this->mRepo = $this->mFile->getRepo();
71 return true;
72 }
73
74 /**
75 * @return mixed|null|Title
76 */
77 public function getRedirectTarget() {
78 $this->loadFile();
79 if ( $this->mFile->isLocal() ) {
80 return parent::getRedirectTarget();
81 }
82 // Foreign image page
83 $from = $this->mFile->getRedirected();
84 $to = $this->mFile->getName();
85 if ( $from == $to ) {
86 return null;
87 }
88 return $this->mRedirectTarget = Title::makeTitle( NS_FILE, $to );
89 }
90
91 /**
92 * @return bool|mixed|Title
93 */
94 public function followRedirect() {
95 $this->loadFile();
96 if ( $this->mFile->isLocal() ) {
97 return parent::followRedirect();
98 }
99 $from = $this->mFile->getRedirected();
100 $to = $this->mFile->getName();
101 if ( $from == $to ) {
102 return false;
103 }
104 return Title::makeTitle( NS_FILE, $to );
105 }
106
107 /**
108 * @param bool $text
109 * @return bool
110 */
111 public function isRedirect( $text = false ) {
112 $this->loadFile();
113 if ( $this->mFile->isLocal() ) {
114 return parent::isRedirect( $text );
115 }
116
117 return (bool)$this->mFile->getRedirected();
118 }
119
120 /**
121 * @return bool
122 */
123 public function isLocal() {
124 $this->loadFile();
125 return $this->mFile->isLocal();
126 }
127
128 /**
129 * @return bool|File
130 */
131 public function getFile() {
132 $this->loadFile();
133 return $this->mFile;
134 }
135
136 /**
137 * @return array|null
138 */
139 public function getDuplicates() {
140 $this->loadFile();
141 if ( !is_null( $this->mDupes ) ) {
142 return $this->mDupes;
143 }
144 $hash = $this->mFile->getSha1();
145 if ( !( $hash ) ) {
146 return $this->mDupes = array();
147 }
148 $dupes = RepoGroup::singleton()->findBySha1( $hash );
149 // Remove duplicates with self and non matching file sizes
150 $self = $this->mFile->getRepoName() . ':' . $this->mFile->getName();
151 $size = $this->mFile->getSize();
152
153 /**
154 * @var $file File
155 */
156 foreach ( $dupes as $index => $file ) {
157 $key = $file->getRepoName() . ':' . $file->getName();
158 if ( $key == $self ) {
159 unset( $dupes[$index] );
160 }
161 if ( $file->getSize() != $size ) {
162 unset( $dupes[$index] );
163 }
164 }
165 $this->mDupes = $dupes;
166 return $this->mDupes;
167 }
168
169 /**
170 * Override handling of action=purge
171 * @return bool
172 */
173 public function doPurge() {
174 $this->loadFile();
175 if ( $this->mFile->exists() ) {
176 wfDebug( 'ImagePage::doPurge purging ' . $this->mFile->getName() . "\n" );
177 $update = new HTMLCacheUpdate( $this->mTitle, 'imagelinks' );
178 $update->doUpdate();
179 $this->mFile->upgradeRow();
180 $this->mFile->purgeCache( array( 'forThumbRefresh' => true ) );
181 } else {
182 wfDebug( 'ImagePage::doPurge no image for ' . $this->mFile->getName() . "; limiting purge to cache only\n" );
183 // even if the file supposedly doesn't exist, force any cached information
184 // to be updated (in case the cached information is wrong)
185 $this->mFile->purgeCache( array( 'forThumbRefresh' => true ) );
186 }
187 return parent::doPurge();
188 }
189 }