MediaWiki REL1_30
WikiFilePage.php
Go to the documentation of this file.
1<?php
24
30class WikiFilePage extends WikiPage {
32 protected $mFile = false;
34 protected $mRepo = null;
36 protected $mFileLoaded = false;
38 protected $mDupes = null;
39
40 public function __construct( $title ) {
41 parent::__construct( $title );
42 $this->mDupes = null;
43 $this->mRepo = null;
44 }
45
49 public function setFile( $file ) {
50 $this->mFile = $file;
51 $this->mFileLoaded = true;
52 }
53
57 protected function loadFile() {
58 if ( $this->mFileLoaded ) {
59 return true;
60 }
61 $this->mFileLoaded = true;
62
63 $this->mFile = wfFindFile( $this->mTitle );
64 if ( !$this->mFile ) {
65 $this->mFile = wfLocalFile( $this->mTitle ); // always a File
66 }
67 $this->mRepo = $this->mFile->getRepo();
68 return true;
69 }
70
74 public function getRedirectTarget() {
75 $this->loadFile();
76 if ( $this->mFile->isLocal() ) {
77 return parent::getRedirectTarget();
78 }
79 // Foreign image page
80 $from = $this->mFile->getRedirected();
81 $to = $this->mFile->getName();
82 if ( $from == $to ) {
83 return null;
84 }
85 $this->mRedirectTarget = Title::makeTitle( NS_FILE, $to );
87 }
88
92 public function followRedirect() {
93 $this->loadFile();
94 if ( $this->mFile->isLocal() ) {
95 return parent::followRedirect();
96 }
97 $from = $this->mFile->getRedirected();
98 $to = $this->mFile->getName();
99 if ( $from == $to ) {
100 return false;
101 }
102 return Title::makeTitle( NS_FILE, $to );
103 }
104
108 public function isRedirect() {
109 $this->loadFile();
110 if ( $this->mFile->isLocal() ) {
111 return parent::isRedirect();
112 }
113
114 return (bool)$this->mFile->getRedirected();
115 }
116
120 public function isLocal() {
121 $this->loadFile();
122 return $this->mFile->isLocal();
123 }
124
128 public function getFile() {
129 $this->loadFile();
130 return $this->mFile;
131 }
132
136 public function getDuplicates() {
137 $this->loadFile();
138 if ( !is_null( $this->mDupes ) ) {
139 return $this->mDupes;
140 }
141 $hash = $this->mFile->getSha1();
142 if ( !( $hash ) ) {
143 $this->mDupes = [];
144 return $this->mDupes;
145 }
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();
150
154 foreach ( $dupes as $index => $file ) {
155 $key = $file->getRepoName() . ':' . $file->getName();
156 if ( $key == $self ) {
157 unset( $dupes[$index] );
158 }
159 if ( $file->getSize() != $size ) {
160 unset( $dupes[$index] );
161 }
162 }
163 $this->mDupes = $dupes;
164 return $this->mDupes;
165 }
166
171 public function doPurge() {
172 $this->loadFile();
173
174 if ( $this->mFile->exists() ) {
175 wfDebug( 'ImagePage::doPurge purging ' . $this->mFile->getName() . "\n" );
176 DeferredUpdates::addUpdate( new HTMLCacheUpdate( $this->mTitle, 'imagelinks' ) );
177 } else {
178 wfDebug( 'ImagePage::doPurge no image for '
179 . $this->mFile->getName() . "; limiting purge to cache only\n" );
180 }
181
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
185 // Purge current version and its thumbnails
186 $this->mFile->purgeCache( [ 'forThumbRefresh' => true ] );
187
188 // Purge the old versions and their thumbnails
189 foreach ( $this->mFile->getHistory() as $oldFile ) {
190 $oldFile->purgeCache( [ 'forThumbRefresh' => true ] );
191 }
192
193 if ( $this->mRepo ) {
194 // Purge redirect cache
195 $this->mRepo->invalidateImageRedirect( $this->mTitle );
196 }
197
198 return parent::doPurge();
199 }
200
210 public function getForeignCategories() {
211 $this->loadFile();
212 $title = $this->mTitle;
213 $file = $this->mFile;
214
215 if ( !$file instanceof LocalFile ) {
216 wfDebug( __CLASS__ . '::' . __METHOD__ . " is not supported for this file\n" );
218 }
219
221 $repo = $file->getRepo();
222 $dbr = $repo->getReplicaDB();
223
224 $res = $dbr->select(
225 [ 'page', 'categorylinks' ],
226 [
227 'page_title' => 'cl_to',
228 'page_namespace' => NS_CATEGORY,
229 ],
230 [
231 'page_namespace' => $title->getNamespace(),
232 'page_title' => $title->getDBkey(),
233 ],
234 __METHOD__,
235 [],
236 [ 'categorylinks' => [ 'INNER JOIN', 'page_id = cl_from' ] ]
237 );
238
240 }
241
246 public function getWikiDisplayName() {
247 return $this->getFile()->getRepo()->getDisplayName();
248 }
249
254 public function getSourceURL() {
255 return $this->getFile()->getDescriptionUrl();
256 }
257}
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
wfLocalFile( $title)
Get an object referring to a locally registered file.
wfFindFile( $title, $options=[])
Find a file.
Implements some public methods and some protected utility functions which are required by multiple ch...
Definition File.php:51
Class to invalidate the HTML cache of all the pages linking to a given title.
Class to represent a local file in the wiki's own database.
Definition LocalFile.php:45
A repository that stores files in the local filesystem and registers them in the wiki's own database.
Definition LocalRepo.php:35
static singleton()
Get a RepoGroup instance.
Definition RepoGroup.php:59
static newFromResult( $res)
Special handling for file pages.
setFile( $file)
__construct( $title)
doPurge()
Override handling of action=purge.
getForeignCategories()
Get the categories this file is a member of on the wiki where it was uploaded.
LocalRepo $mRepo
Class representing a MediaWiki article and history.
Definition WikiPage.php:37
Title $mTitle
Definition WikiPage.php:43
Title $mRedirectTarget
Definition WikiPage.php:69
Overloads the relevant methods of the real ResultsWrapper so it doesn't go anywhere near an actual da...
if(! $regexes) $dbr
Definition cleanup.php:94
$res
Definition database.txt:21
const NS_FILE
Definition Defines.php:71
const NS_CATEGORY
Definition Defines.php:79