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.
104 lines
3.4 KiB
104 lines
3.4 KiB
<?php
|
|
|
|
// +----------------------------------------------------------------------
|
|
// | ThinkAdmin
|
|
// +----------------------------------------------------------------------
|
|
// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
|
// +----------------------------------------------------------------------
|
|
// | 官方网站: http://demo.thinkadmin.top
|
|
// +----------------------------------------------------------------------
|
|
// | 开源协议 ( https://mit-license.org )
|
|
// +----------------------------------------------------------------------
|
|
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
|
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace app\index\controller;
|
|
|
|
|
|
use library\Controller;
|
|
use library\File;
|
|
|
|
/**
|
|
* 后台插件管理
|
|
* Class Plugs
|
|
* @package app\admin\controller\api
|
|
*/
|
|
class Upload extends Controller
|
|
{
|
|
|
|
public function index()
|
|
{
|
|
return $this->fetch();
|
|
}
|
|
|
|
/**
|
|
* 系统选择器图标
|
|
*/
|
|
public function icon()
|
|
{
|
|
$this->title = '图标选择器';
|
|
$this->field = input('field', 'icon');
|
|
$this->fetch();
|
|
}
|
|
|
|
/**
|
|
* Plupload 插件上传文件
|
|
* @return \think\response\Json
|
|
* @throws \think\Exception
|
|
* @throws \think\exception\PDOException
|
|
*/
|
|
public function plupload()
|
|
{
|
|
|
|
if (!($file = $this->getUploadFile()) || empty($file)) {
|
|
return json(['uploaded' => false, 'error' => ['message' => '文件上传异常,文件可能过大或未上传']]);
|
|
}
|
|
if (!$file->checkExt(strtolower(sysconf('storage_local_exts')))) {
|
|
return json(['uploaded' => false, 'error' => ['message' => '文件上传类型受限,请在后台配置']]);
|
|
}
|
|
if ($file->checkExt('php,sh')) {
|
|
return json(['uploaded' => false, 'error' => ['message' => '可执行文件禁止上传到本地服务器']]);
|
|
}
|
|
$this->safe = boolval(input('safe'));
|
|
$this->uptype = 'local';
|
|
$this->extend = pathinfo($file->getInfo('name'), PATHINFO_EXTENSION);
|
|
$pre = date('Y-m') . '/' . date('d');
|
|
$name = File::name($file->getPathname(), $this->extend, $pre, 'md5_file');
|
|
$info = File::instance($this->uptype)->save($name, file_get_contents($file->getRealPath()), $this->safe);
|
|
if (is_array($info) && isset($info['url'])) {
|
|
return json(['uploaded' => true, 'filename' => $name, 'url' => $this->safe ? $name : $info['url']]);
|
|
} else {
|
|
return json(['uploaded' => false, 'error' => ['message' => '文件处理失败,请稍候再试!']]);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 获取文件上传方式
|
|
* @return string
|
|
* @throws \think\Exception
|
|
* @throws \think\exception\PDOException
|
|
*/
|
|
private function getUploadType()
|
|
{
|
|
$this->uptype = input('uptype');
|
|
if (!in_array($this->uptype, ['local', 'oss', 'qiniu'])) {
|
|
$this->uptype = sysconf('storage_type');
|
|
}
|
|
return $this->uptype;
|
|
}
|
|
|
|
/**
|
|
* 获取本地文件对象
|
|
* @return \think\File
|
|
*/
|
|
private function getUploadFile()
|
|
{
|
|
try {
|
|
return $this->request->file('file');
|
|
} catch (\Exception $e) {
|
|
$this->error(lang($e->getMessage()));
|
|
}
|
|
}
|
|
|
|
}
|
|
|