You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
137 lines
5.1 KiB
137 lines
5.1 KiB
<?php |
|
/** |
|
* Filesystem helper class file. |
|
* |
|
* @link http://www.yiiframework.com/ |
|
* @copyright Copyright © 2008-2012 Yii Software LLC |
|
* @license http://www.yiiframework.com/license/ |
|
*/ |
|
|
|
namespace yii\util; |
|
|
|
use yii\base\Exception; |
|
|
|
/** |
|
* Filesystem helper |
|
* |
|
* @author Qiang Xue <qiang.xue@gmail.com> |
|
* @author Alex Makarov <sam@rmcreative.ru> |
|
* @since 2.0 |
|
*/ |
|
class FileHelper |
|
{ |
|
/** |
|
* Returns the extension name of a file path. |
|
* For example, the path "path/to/something.php" would return "php". |
|
* @param string $path the file path |
|
* @return string the extension name without the dot character. |
|
*/ |
|
public static function getExtension($path) |
|
{ |
|
return pathinfo($path, PATHINFO_EXTENSION); |
|
} |
|
|
|
/** |
|
* Checks the given path and ensures it is a directory. |
|
* This method will call `realpath()` to "normalize" the given path. |
|
* If the given path does not refer to an existing directory, an exception will be thrown. |
|
* @param string $path the given path. This can also be a path alias. |
|
* @return string the normalized path |
|
* @throws Exception if the path does not refer to an existing directory. |
|
*/ |
|
public static function ensureDirectory($path) |
|
{ |
|
$p = \Yii::getAlias($path); |
|
if ($p !== false && ($p = realpath($p)) !== false && is_dir($p)) { |
|
return $p; |
|
} else { |
|
throw new Exception('Directory does not exist: ' . $path); |
|
} |
|
} |
|
|
|
/** |
|
* Returns the localized version of a specified file. |
|
* |
|
* The searching is based on the specified language code. In particular, |
|
* a file with the same name will be looked for under the subdirectory |
|
* whose name is same as the language code. For example, given the file "path/to/view.php" |
|
* and language code "zh_cn", the localized file will be looked for as |
|
* "path/to/zh_cn/view.php". If the file is not found, the original file |
|
* will be returned. |
|
* |
|
* If the target and the source language codes are the same, |
|
* the original file will be returned. |
|
* |
|
* For consistency, it is recommended that the language code is given |
|
* in lower case and in the format of LanguageID_RegionID (e.g. "en_us"). |
|
* |
|
* @param string $file the original file |
|
* @param string $language the target language that the file should be localized to. |
|
* If not set, the value of [[\yii\base\Application::language]] will be used. |
|
* @param string $sourceLanguage the language that the original file is in. |
|
* If not set, the value of [[\yii\base\Application::sourceLanguage]] will be used. |
|
* @return string the matching localized file, or the original file if the localized version is not found. |
|
* If the target and the source language codes are the same, the original file will be returned. |
|
*/ |
|
public static function localize($file, $language = null, $sourceLanguage = null) |
|
{ |
|
if ($language === null) { |
|
$language = \Yii::$application->getLanguage(); |
|
} |
|
if ($sourceLanguage === null) { |
|
$sourceLanguage = \Yii::$application->sourceLanguage; |
|
} |
|
if ($language === $sourceLanguage) { |
|
return $file; |
|
} |
|
$desiredFile = dirname($file) . DIRECTORY_SEPARATOR . $sourceLanguage . DIRECTORY_SEPARATOR . basename($file); |
|
return is_file($desiredFile) ? $desiredFile : $file; |
|
} |
|
|
|
/** |
|
* Determines the MIME type of the specified file. |
|
* This method will first try to determine the MIME type based on |
|
* [finfo_open](http://php.net/manual/en/function.finfo-open.php). If this doesn't work, it will |
|
* fall back to [[getMimeTypeByExtension()]]. |
|
* @param string $file the file name. |
|
* @param string $magicFile name of the optional magic database file, usually something like `/path/to/magic.mime`. |
|
* This will be passed as the second parameter to [finfo_open](http://php.net/manual/en/function.finfo-open.php). |
|
* @param boolean $checkExtension whether to use the file extension to determine the MIME type in case |
|
* `finfo_open()` cannot determine it. |
|
* @return string the MIME type (e.g. `text/plain`). Null is returned if the MIME type cannot be determined. |
|
*/ |
|
public static function getMimeType($file, $magicFile = null, $checkExtension = true) |
|
{ |
|
if (function_exists('finfo_open')) { |
|
$info = finfo_open(FILEINFO_MIME_TYPE, $magicFile); |
|
if ($info && ($result = finfo_file($info, $file)) !== false) { |
|
return $result; |
|
} |
|
} |
|
|
|
return $checkExtension ? self::getMimeTypeByExtension($file) : null; |
|
} |
|
|
|
/** |
|
* Determines the MIME type based on the extension name of the specified file. |
|
* This method will use a local map between extension names and MIME types. |
|
* @param string $file the file name. |
|
* @param string $magicFile the path of the file that contains all available MIME type information. |
|
* If this is not set, the default file aliased by `@yii/util/mimeTypes.php` will be used. |
|
* @return string the MIME type. Null is returned if the MIME type cannot be determined. |
|
*/ |
|
public static function getMimeTypeByExtension($file, $magicFile = null) |
|
{ |
|
if ($magicFile === null) { |
|
$magicFile = \Yii::getAlias('@yii/util/mimeTypes.php'); |
|
} |
|
$mimeTypes = require($magicFile); |
|
if (($ext = pathinfo($file, PATHINFO_EXTENSION)) !== '') { |
|
$ext = strtolower($ext); |
|
if (isset($mimeTypes[$ext])) { |
|
return $mimeTypes[$ext]; |
|
} |
|
} |
|
return null; |
|
} |
|
}
|
|
|