This repository has been archived on 2024-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
yoshop/source/application/common/library/storage/Driver.php
2020-04-25 22:20:29 +08:00

113 lines
2.4 KiB
PHP

<?php
namespace app\common\library\storage;
use think\Exception;
/**
* 存储模块驱动
* Class driver
* @package app\common\library\storage
*/
class Driver
{
private $config; // upload 配置
private $engine; // 当前存储引擎类
/**
* 构造方法
* Driver constructor.
* @param $config
* @param null|string $storage 指定存储方式,如不指定则为系统默认
* @throws Exception
*/
public function __construct($config, $storage = null)
{
$this->config = $config;
// 实例化当前存储引擎
$this->engine = $this->getEngineClass($storage);
}
/**
* 设置上传的文件信息
* @param string $name
* @return mixed
*/
public function setUploadFile($name = 'iFile')
{
return $this->engine->setUploadFile($name);
}
/**
* 设置上传的文件信息
* @param string $filePath
* @return mixed
*/
public function setUploadFileByReal($filePath)
{
return $this->engine->setUploadFileByReal($filePath);
}
/**
* 执行文件上传
*/
public function upload()
{
return $this->engine->upload();
}
/**
* 执行文件删除
* @param $fileName
* @return mixed
*/
public function delete($fileName)
{
return $this->engine->delete($fileName);
}
/**
* 获取错误信息
* @return mixed
*/
public function getError()
{
return $this->engine->getError();
}
/**
* 获取文件路径
* @return mixed
*/
public function getFileName()
{
return $this->engine->getFileName();
}
/**
* 返回文件信息
* @return mixed
*/
public function getFileInfo()
{
return $this->engine->getFileInfo();
}
/**
* 获取当前的存储引擎
* @param null|string $storage 指定存储方式,如不指定则为系统默认
* @return mixed
* @throws Exception
*/
private function getEngineClass($storage = null)
{
$engineName = is_null($storage) ? $this->config['default'] : $storage;
$classSpace = __NAMESPACE__ . '\\engine\\' . ucfirst($engineName);
if (!class_exists($classSpace)) {
throw new Exception('未找到存储引擎类: ' . $engineName);
}
return new $classSpace($this->config['engine'][$engineName]);
}
}