mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
156 lines
4.3 KiB
PHP
156 lines
4.3 KiB
PHP
<?php
|
||
|
||
// +----------------------------------------------------------------------
|
||
// | Library for ThinkAdmin
|
||
// +----------------------------------------------------------------------
|
||
// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||
// +----------------------------------------------------------------------
|
||
// | 官方网站: http://demo.thinkadmin.top
|
||
// +----------------------------------------------------------------------
|
||
// | 开源协议 ( https://mit-license.org )
|
||
// +----------------------------------------------------------------------
|
||
// | gitee 仓库地址 :https://gitee.com/zoujingli/ThinkLibrary
|
||
// | github 仓库地址 :https://github.com/zoujingli/ThinkLibrary
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace think\admin\storage;
|
||
|
||
use think\admin\Storage;
|
||
|
||
/**
|
||
* 本地存储支持
|
||
* Class LocalStorage
|
||
* @package think\admin\storage
|
||
*/
|
||
class LocalStorage extends Storage
|
||
{
|
||
/**
|
||
* 存储引擎初始化
|
||
* @return LocalStorage
|
||
*/
|
||
protected function initialize(): Storage
|
||
{
|
||
$this->prefix = rtrim($this->app->getRootPath(), '\\/');
|
||
return $this;
|
||
}
|
||
|
||
/**
|
||
* 获取当前实例对象
|
||
* @param null $name
|
||
* @return static
|
||
* @throws \think\Exception
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public static function instance($name = null): Storage
|
||
{
|
||
return parent::instance('local');
|
||
}
|
||
|
||
/**
|
||
* 文件储存在本地
|
||
* @param string $name 文件名称
|
||
* @param string $file 文件内容
|
||
* @param boolean $safe 安全模式
|
||
* @return array
|
||
*/
|
||
public function set($name, $file, $safe = false)
|
||
{
|
||
try {
|
||
$path = $this->path($name, $safe);
|
||
file_exists(dirname($path)) || mkdir(dirname($path), 0755, true);
|
||
if (file_put_contents($path, $file)) {
|
||
return $this->info($name, $safe);
|
||
}
|
||
} catch (\Exception $e) {
|
||
return [];
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 根据文件名读取文件内容
|
||
* @param string $name 文件名称
|
||
* @param boolean $safe 安全模式
|
||
* @return string
|
||
*/
|
||
public function get($name, $safe = false)
|
||
{
|
||
if (!$this->has($name, $safe)) return '';
|
||
return file_get_contents($this->path($name, $safe));
|
||
}
|
||
|
||
/**
|
||
* 删除存储的文件
|
||
* @param string $name 文件名称
|
||
* @param boolean $safe 安全模式
|
||
* @return boolean
|
||
*/
|
||
public function del($name, $safe = false)
|
||
{
|
||
if ($this->has($name, $safe)) {
|
||
return @unlink($this->path($name, $safe));
|
||
} else {
|
||
return false;
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 检查文件是否已经存在
|
||
* @param string $name 文件名称
|
||
* @param boolean $safe 安全模式
|
||
* @return boolean
|
||
*/
|
||
public function has($name, $safe = false)
|
||
{
|
||
return file_exists($this->path($name, $safe));
|
||
}
|
||
|
||
/**
|
||
* 获取文件当前URL地址
|
||
* @param string $name 文件名称
|
||
* @param boolean $safe 安全模式
|
||
* @return string|null
|
||
*/
|
||
public function url($name, $safe = false)
|
||
{
|
||
if ($safe) return null;
|
||
$root = rtrim(dirname($this->app->request->basefile(true)), '\\/');
|
||
return "{$root}/upload/{$name}";
|
||
}
|
||
|
||
/**
|
||
* 获取文件存储路径
|
||
* @param string $name 文件名称
|
||
* @param boolean $safe 安全模式
|
||
* @return string
|
||
*/
|
||
public function path($name, $safe = false)
|
||
{
|
||
$path = $safe ? 'safefile' : 'public/upload';
|
||
return str_replace('\\', '/', "{$this->prefix}/{$path}/{$name}");
|
||
}
|
||
|
||
/**
|
||
* 获取文件存储信息
|
||
* @param string $name 文件名称
|
||
* @param boolean $safe 安全模式
|
||
* @return array
|
||
*/
|
||
public function info($name, $safe = false)
|
||
{
|
||
return $this->has($name, $safe) ? [
|
||
'file' => $this->path($name, $safe), 'url' => $this->url($name, $safe), 'key' => "upload/{$name}",
|
||
] : [];
|
||
}
|
||
|
||
/**
|
||
* 获取文件上传地址
|
||
* @return string
|
||
*/
|
||
public function upload()
|
||
{
|
||
return url('@admin/api.upload/file', [], false, true)->build();
|
||
}
|
||
|
||
} |