Merge "Improve error message if check not defined for a password policy."
[mediawiki.git] / includes / filerepo / file / UnregisteredLocalFile.php
blob4c11341b1d312692ff11b17aa44d4a2a0acdfa70
1 <?php
2 /**
3 * File without associated database record.
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
20 * @file
21 * @ingroup FileAbstraction
24 /**
25 * A file object referring to either a standalone local file, or a file in a
26 * local repository with no database, for example an FileRepo repository.
28 * Read-only.
30 * @todo Currently it doesn't really work in the repository role, there are
31 * lots of functions missing. It is used by the WebStore extension in the
32 * standalone role.
34 * @ingroup FileAbstraction
36 class UnregisteredLocalFile extends File {
37 /** @var Title */
38 protected $title;
40 /** @var string */
41 protected $path;
43 /** @var bool|string */
44 protected $mime;
46 /** @var array Dimension data */
47 protected $dims;
49 /** @var bool|string Handler-specific metadata which will be saved in the img_metadata field */
50 protected $metadata;
52 /** @var MediaHandler */
53 public $handler;
55 /**
56 * @param string $path Storage path
57 * @param string $mime
58 * @return UnregisteredLocalFile
60 static function newFromPath( $path, $mime ) {
61 return new self( false, false, $path, $mime );
64 /**
65 * @param Title $title
66 * @param FileRepo $repo
67 * @return UnregisteredLocalFile
69 static function newFromTitle( $title, $repo ) {
70 return new self( $title, $repo, false, false );
73 /**
74 * Create an UnregisteredLocalFile based on a path or a (title,repo) pair.
75 * A FileRepo object is not required here, unlike most other File classes.
77 * @throws MWException
78 * @param Title|bool $title
79 * @param FileRepo|bool $repo
80 * @param string|bool $path
81 * @param string|bool $mime
83 function __construct( $title = false, $repo = false, $path = false, $mime = false ) {
84 if ( !( $title && $repo ) && !$path ) {
85 throw new MWException( __METHOD__ .
86 ': not enough parameters, must specify title and repo, or a full path' );
88 if ( $title instanceof Title ) {
89 $this->title = File::normalizeTitle( $title, 'exception' );
90 $this->name = $repo->getNameFromTitle( $title );
91 } else {
92 $this->name = basename( $path );
93 $this->title = File::normalizeTitle( $this->name, 'exception' );
95 $this->repo = $repo;
96 if ( $path ) {
97 $this->path = $path;
98 } else {
99 $this->assertRepoDefined();
100 $this->path = $repo->getRootDirectory() . '/' .
101 $repo->getHashPath( $this->name ) . $this->name;
103 if ( $mime ) {
104 $this->mime = $mime;
106 $this->dims = array();
110 * @param int $page
111 * @return bool
113 private function cachePageDimensions( $page = 1 ) {
114 if ( !isset( $this->dims[$page] ) ) {
115 if ( !$this->getHandler() ) {
116 return false;
118 $this->dims[$page] = $this->handler->getPageDimensions( $this, $page );
121 return $this->dims[$page];
125 * @param int $page
126 * @return int
128 function getWidth( $page = 1 ) {
129 $dim = $this->cachePageDimensions( $page );
131 return $dim['width'];
135 * @param int $page
136 * @return int
138 function getHeight( $page = 1 ) {
139 $dim = $this->cachePageDimensions( $page );
141 return $dim['height'];
145 * @return bool|string
147 function getMimeType() {
148 if ( !isset( $this->mime ) ) {
149 $magic = MimeMagic::singleton();
150 $this->mime = $magic->guessMimeType( $this->getLocalRefPath() );
153 return $this->mime;
157 * @param string $filename
158 * @return array|bool
160 function getImageSize( $filename ) {
161 if ( !$this->getHandler() ) {
162 return false;
165 return $this->handler->getImageSize( $this, $this->getLocalRefPath() );
169 * @return int
171 function getBitDepth() {
172 $gis = $this->getImageSize( $this->getLocalRefPath() );
174 if ( !$gis || !isset( $gis['bits'] ) ) {
175 return 0;
177 return $gis['bits'];
181 * @return bool
183 function getMetadata() {
184 if ( !isset( $this->metadata ) ) {
185 if ( !$this->getHandler() ) {
186 $this->metadata = false;
187 } else {
188 $this->metadata = $this->handler->getMetadata( $this, $this->getLocalRefPath() );
192 return $this->metadata;
196 * @return bool|string
198 function getURL() {
199 if ( $this->repo ) {
200 return $this->repo->getZoneUrl( 'public' ) . '/' .
201 $this->repo->getHashPath( $this->name ) . rawurlencode( $this->name );
202 } else {
203 return false;
208 * @return bool|int
210 function getSize() {
211 $this->assertRepoDefined();
213 return $this->repo->getFileSize( $this->path );
217 * Optimize getLocalRefPath() by using an existing local reference.
218 * The file at the path of $fsFile should not be deleted (or at least
219 * not until the end of the request). This is mostly a performance hack.
221 * @param FSFile $fsFile
222 * @return void
224 public function setLocalReference( FSFile $fsFile ) {
225 $this->fsFile = $fsFile;