3 * Non-directory file on the file system.
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
21 * @ingroup FileBackend
25 * Class representing a non-directory file on the file system
27 * @ingroup FileBackend
30 /** @var string Path to file */
33 /** @var string File SHA-1 in base 36 */
34 protected $sha1Base36;
37 * Sets up the file object
39 * @param string $path Path to temporary file on local disk
41 public function __construct( $path ) {
46 * Returns the file system path
50 public function getPath() {
55 * Checks if the file exists
59 public function exists() {
60 return is_file( $this->path
);
64 * Get the file size in bytes
68 public function getSize() {
69 return filesize( $this->path
);
73 * Get the file's last-modified timestamp
75 * @return string|bool TS_MW timestamp or false on failure
77 public function getTimestamp() {
78 MediaWiki\
suppressWarnings();
79 $timestamp = filemtime( $this->path
);
80 MediaWiki\restoreWarnings
();
81 if ( $timestamp !== false ) {
82 $timestamp = wfTimestamp( TS_MW
, $timestamp );
89 * Get an associative array containing information about
90 * a file with the given storage path.
92 * Resulting array fields include:
94 * - size (filesize in bytes)
95 * - mime (as major/minor)
96 * - file-mime (as major/minor)
101 * @param string|bool $ext The file extension, or true to extract it from the filename.
102 * Set it to false to ignore the extension. Currently unused.
105 public function getProps( $ext = true ) {
106 $info = self
::placeholderProps();
107 $info['fileExists'] = $this->exists();
109 if ( $info['fileExists'] ) {
110 $info['size'] = $this->getSize(); // bytes
111 $info['sha1'] = $this->getSha1Base36();
113 $mime = mime_content_type( $this->path
);
114 # MIME type according to file contents
115 $info['file-mime'] = ( $mime === false ) ?
'unknown/unknown' : $mime;
117 $info['mime'] = $mime;
119 if ( strpos( $mime, '/' ) !== false ) {
120 list( $info['major_mime'], $info['minor_mime'] ) = explode( '/', $mime, 2 );
122 list( $info['major_mime'], $info['minor_mime'] ) = [ $mime, 'unknown' ];
130 * Placeholder file properties to use for files that don't exist
132 * Resulting array fields include:
134 * - size (filesize in bytes)
135 * - mime (as major/minor)
136 * - file-mime (as major/minor)
137 * - sha1 (in base 36)
143 public static function placeholderProps() {
145 $info['fileExists'] = false;
147 $info['file-mime'] = null;
148 $info['major_mime'] = null;
149 $info['minor_mime'] = null;
150 $info['mime'] = null;
157 * Get a SHA-1 hash of a file in the local filesystem, in base-36 lower case
158 * encoding, zero padded to 31 digits.
160 * 160 log 2 / log 36 = 30.95, so the 160-bit hash fills 31 digits in base 36
163 * @param bool $recache
164 * @return bool|string False on failure
166 public function getSha1Base36( $recache = false ) {
167 if ( $this->sha1Base36
!== null && !$recache ) {
168 return $this->sha1Base36
;
171 MediaWiki\
suppressWarnings();
172 $this->sha1Base36
= sha1_file( $this->path
);
173 MediaWiki\restoreWarnings
();
175 if ( $this->sha1Base36
!== false ) {
176 $this->sha1Base36
= Wikimedia\base_convert
( $this->sha1Base36
, 16, 36, 31 );
179 return $this->sha1Base36
;
183 * Get the final file extension from a file system path
185 * @param string $path
188 public static function extensionFromPath( $path ) {
189 $i = strrpos( $path, '.' );
191 return strtolower( $i ?
substr( $path, $i +
1 ) : '' );
195 * Get an associative array containing information about a file in the local filesystem.
197 * @param string $path Absolute local filesystem path
198 * @param string|bool $ext The file extension, or true to extract it from the filename.
199 * Set it to false to ignore the extension.
202 public static function getPropsFromPath( $path, $ext = true ) {
203 $fsFile = new self( $path );
205 return $fsFile->getProps( $ext );
209 * Get a SHA-1 hash of a file in the local filesystem, in base-36 lower case
210 * encoding, zero padded to 31 digits.
212 * 160 log 2 / log 36 = 30.95, so the 160-bit hash fills 31 digits in base 36
215 * @param string $path
216 * @return bool|string False on failure
218 public static function getSha1Base36FromPath( $path ) {
219 $fsFile = new self( $path );
221 return $fsFile->getSha1Base36();