1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
|
<?php
/**
* Non-directory file on the file system.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* http://www.gnu.org/copyleft/gpl.html
*
* @file
* @ingroup FileBackend
*/
namespace Wikimedia\FileBackend\FSFile;
use Wikimedia\AtEase\AtEase;
use Wikimedia\Timestamp\ConvertibleTimestamp;
/**
* Class representing a non-directory file on the file system
*
* @ingroup FileBackend
*/
class FSFile {
/** @var string Path to file */
protected $path;
/** @var string File SHA-1 in base 36 */
protected $sha1Base36;
/**
* Sets up the file object
*
* @param string $path Path to temporary file on local disk
*/
public function __construct( $path ) {
$this->path = $path;
}
/**
* Returns the file system path
*
* @return string
*/
public function getPath() {
return $this->path;
}
/**
* Checks if the file exists
*
* @return bool
*/
public function exists() {
return is_file( $this->path );
}
/**
* Get the file size in bytes
*
* @return int|bool
*/
public function getSize() {
AtEase::suppressWarnings();
$size = filesize( $this->path );
AtEase::restoreWarnings();
return $size;
}
/**
* Get the file's last-modified timestamp
*
* @return string|bool TS_MW timestamp or false on failure
*/
public function getTimestamp() {
AtEase::suppressWarnings();
$timestamp = filemtime( $this->path );
AtEase::restoreWarnings();
if ( $timestamp !== false ) {
$timestamp = ConvertibleTimestamp::convert( TS_MW, $timestamp );
}
return $timestamp;
}
/**
* Get an associative array containing information about
* a file with the given storage path.
*
* Resulting array fields include:
* - fileExists
* - size (filesize in bytes)
* - mime (as major/minor)
* - file-mime (as major/minor)
* - sha1 (in base 36)
* - major_mime
* - minor_mime
*
* @param string|bool $ext The file extension, or true to extract it from the filename.
* Set it to false to ignore the extension. Currently unused.
* @return array
*/
public function getProps( $ext = true ) {
$info = self::placeholderProps();
$info['fileExists'] = $this->exists();
if ( $info['fileExists'] ) {
$info['size'] = $this->getSize(); // bytes
$info['sha1'] = $this->getSha1Base36();
$mime = mime_content_type( $this->path );
# MIME type according to file contents
$info['file-mime'] = ( $mime === false ) ? 'unknown/unknown' : $mime;
# logical MIME type
$info['mime'] = $mime;
if ( strpos( $mime, '/' ) !== false ) {
[ $info['major_mime'], $info['minor_mime'] ] = explode( '/', $mime, 2 );
} else {
[ $info['major_mime'], $info['minor_mime'] ] = [ $mime, 'unknown' ];
}
}
return $info;
}
/**
* Placeholder file properties to use for files that don't exist
*
* Resulting array fields include:
* - fileExists
* - size (filesize in bytes)
* - mime (as major/minor)
* - file-mime (as major/minor)
* - sha1 (in base 36)
* - major_mime
* - minor_mime
*
* @return array
*/
public static function placeholderProps() {
$info = [];
$info['fileExists'] = false;
$info['size'] = 0;
$info['file-mime'] = null;
$info['major_mime'] = null;
$info['minor_mime'] = null;
$info['mime'] = null;
$info['sha1'] = '';
return $info;
}
/**
* Get a SHA-1 hash of a file in the local filesystem, in base-36 lower case
* encoding, zero padded to 31 digits.
*
* 160 log 2 / log 36 = 30.95, so the 160-bit hash fills 31 digits in base 36
* fairly neatly.
*
* @param bool $recache
* @return bool|string False on failure
*/
public function getSha1Base36( $recache = false ) {
if ( $this->sha1Base36 !== null && !$recache ) {
return $this->sha1Base36;
}
AtEase::suppressWarnings();
$this->sha1Base36 = sha1_file( $this->path );
AtEase::restoreWarnings();
if ( $this->sha1Base36 !== false ) {
$this->sha1Base36 = \Wikimedia\base_convert( $this->sha1Base36, 16, 36, 31 );
}
return $this->sha1Base36;
}
/**
* Get the final file extension from a file system path
*
* @param string $path
* @return string
*/
public static function extensionFromPath( $path ) {
$i = strrpos( $path, '.' );
return strtolower( $i ? substr( $path, $i + 1 ) : '' );
}
/**
* Get an associative array containing information about a file in the local filesystem.
*
* @param string $path Absolute local filesystem path
* @param string|bool $ext The file extension, or true to extract it from the filename.
* Set it to false to ignore the extension.
* @return array
*/
public static function getPropsFromPath( $path, $ext = true ) {
$fsFile = new self( $path );
return $fsFile->getProps( $ext );
}
/**
* Get a SHA-1 hash of a file in the local filesystem, in base-36 lower case
* encoding, zero padded to 31 digits.
*
* 160 log 2 / log 36 = 30.95, so the 160-bit hash fills 31 digits in base 36
* fairly neatly.
*
* @param string $path
* @return false|string False on failure
*/
public static function getSha1Base36FromPath( $path ) {
$fsFile = new self( $path );
return $fsFile->getSha1Base36();
}
}
/** @deprecated class alias since 1.43 */
class_alias( FSFile::class, 'FSFile' );
|