mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
更新文件上传插件
This commit is contained in:
parent
a158e01605
commit
3426dd0895
@ -47,17 +47,38 @@ class Plugs extends BasicAdmin {
|
|||||||
*/
|
*/
|
||||||
public function upstate() {
|
public function upstate() {
|
||||||
$post = $this->request->post();
|
$post = $this->request->post();
|
||||||
|
// 组装返回数据
|
||||||
$data = array();
|
$data = array();
|
||||||
$data['uptype'] = $post['uptype'];
|
$data['uptype'] = $post['uptype'];
|
||||||
$data['file_url'] = date('Y/md') . "/{$post['md5']}." . pathinfo($post['filename'], 4);
|
$ext = pathinfo($post['filename'], PATHINFO_EXTENSION);
|
||||||
|
$data['file_url'] = join('/', str_split($post['md5'], 16)) . ".{$ext}";
|
||||||
$data['token'] = $this->_getQiniuToken($data['file_url']);
|
$data['token'] = $this->_getQiniuToken($data['file_url']);
|
||||||
$data['server'] = url('admin/plugs/upload');
|
$data['server'] = url('admin/plugs/upload');
|
||||||
$file = Db::name('SystemFile')->where(['uptype' => $post['uptype'], 'md5' => $post['md5']])->find();
|
// 检查文件是否已经上传
|
||||||
|
$fileinfo = Db::name('SystemFile')->where(['uptype' => $post['uptype'], 'md5' => $post['md5']])->find();
|
||||||
|
// 七牛云文件写入处理
|
||||||
|
if (sysconf('storage_type') === 'qiniu') {
|
||||||
|
$data['server'] = sysconf('storage_qiniu_is_https') ? 'https://up.qbox.me' : 'http://upload.qiniu.com';
|
||||||
|
if (empty($fileinfo)) {
|
||||||
|
$file = [];
|
||||||
|
$file['uptype'] = 'qiniu';
|
||||||
|
$file['md5'] = $post['md5'];
|
||||||
|
$file['real_name'] = $post['filename'];
|
||||||
|
$file['file_name'] = pathinfo($data['file_url'], PATHINFO_BASENAME);
|
||||||
|
$file['file_path'] = $data['file_url'];
|
||||||
|
$file['full_path'] = $data['file_url'];
|
||||||
|
$file['file_ext'] = $ext;
|
||||||
|
$file['file_url'] = $data['file_url'];
|
||||||
|
$file['site_url'] = (sysconf('storage_qiniu_is_https') ? 'https' : 'http') . '://' . sysconf('storage_qiniu_domain') . '/' . $data['file_url'];
|
||||||
|
$file['create_by'] = session('user.id');
|
||||||
|
Data::save('SystemFile', $file, 'md5', ['uptype' => $post['uptype']]);
|
||||||
|
}
|
||||||
|
}
|
||||||
// 本地上传或文件不存在
|
// 本地上传或文件不存在
|
||||||
if (empty($file) || ($file['uptype'] === 'local' && !file_exists($file['full_path']))) {
|
if (empty($fileinfo) || ($fileinfo['uptype'] === 'local' && !file_exists($fileinfo['full_path']))) {
|
||||||
return $this->result($data, 'NOT_FOUND');
|
return $this->result($data, 'NOT_FOUND');
|
||||||
}
|
}
|
||||||
return $this->result($file, 'IS_FOUND');
|
return $this->result($fileinfo, 'IS_FOUND');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -91,20 +112,21 @@ class Plugs extends BasicAdmin {
|
|||||||
*/
|
*/
|
||||||
public function upload() {
|
public function upload() {
|
||||||
if ($this->request->isPost()) {
|
if ($this->request->isPost()) {
|
||||||
$filepath = 'upload' . DS . date('Y/md');
|
$md5s = str_split($this->request->post('md5'), 16);
|
||||||
$file = $this->request->file('file');
|
$filepath = 'upload' . DS . array_shift($md5s);
|
||||||
if (($info = $file->move($filepath))) {
|
$savename = array_shift($md5s);
|
||||||
|
if (($info = $this->request->file('file')->move($filepath, $savename, true))) {
|
||||||
$data = [];
|
$data = [];
|
||||||
$data['uptype'] = 'local';
|
$data['uptype'] = 'local';
|
||||||
$data['md5'] = $this->request->post('md5', $info->md5());
|
$data['md5'] = $this->request->post('md5', $info->md5());
|
||||||
$data['real_name'] = $info->getInfo('name');
|
$data['real_name'] = $this->replacePath($info->getInfo('name'));
|
||||||
$data['file_name'] = $info->getFilename();
|
$data['file_name'] = $this->replacePath($info->getFilename());
|
||||||
$data['file_path'] = $info->getPathname();
|
$data['file_path'] = $this->replacePath($info->getPathname());
|
||||||
$data['full_path'] = $info->getRealPath();
|
$data['full_path'] = $this->replacePath($info->getRealPath());
|
||||||
$data['file_ext'] = $info->getExtension();
|
$data['file_ext'] = $info->getExtension();
|
||||||
$data['file_size'] = $info->getSize();
|
$data['file_size'] = $info->getSize();
|
||||||
$data['file_url'] = str_replace('\\', '/', $filepath . '/' . $info->getSaveName());
|
$data['file_url'] = $this->replacePath($filepath . '/' . $info->getSaveName());
|
||||||
$data['site_url'] = pathinfo($this->request->baseFile(true), PATHINFO_DIRNAME) . '/' . $data['file_url'];
|
$data['site_url'] = $this->replacePath(pathinfo($this->request->baseFile(true), PATHINFO_DIRNAME) . '/' . $data['file_url']);
|
||||||
$data['create_by'] = session('user.id');
|
$data['create_by'] = session('user.id');
|
||||||
Data::save('SystemFile', $data, 'md5', ['uptype' => 'local']);
|
Data::save('SystemFile', $data, 'md5', ['uptype' => 'local']);
|
||||||
return json(['data' => $data, 'code' => 'SUCCESS']);
|
return json(['data' => $data, 'code' => 'SUCCESS']);
|
||||||
@ -113,6 +135,15 @@ class Plugs extends BasicAdmin {
|
|||||||
return json(['code' => 'ERROR']);
|
return json(['code' => 'ERROR']);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 路径替换
|
||||||
|
* @param type $path
|
||||||
|
* @return type
|
||||||
|
*/
|
||||||
|
protected function replacePath($path) {
|
||||||
|
return str_replace('\\', '/', $path);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 字体图标
|
* 字体图标
|
||||||
*/
|
*/
|
||||||
|
@ -24,6 +24,7 @@
|
|||||||
<div class="layui-form-item layui-box" data-storage-type="qiniu">
|
<div class="layui-form-item layui-box" data-storage-type="qiniu">
|
||||||
<label class="layui-form-label">https</label>
|
<label class="layui-form-label">https</label>
|
||||||
<div class="layui-input-inline" style='width:50px'>
|
<div class="layui-input-inline" style='width:50px'>
|
||||||
|
<input type="hidden" name="storage_qiniu_is_https" value="0">
|
||||||
{if sysconf('storage_qiniu_is_https')==1}
|
{if sysconf('storage_qiniu_is_https')==1}
|
||||||
<input type="checkbox" name="storage_qiniu_is_https" lay-skin="switch" checked required="required" title="https" value="1">
|
<input type="checkbox" name="storage_qiniu_is_https" lay-skin="switch" checked required="required" title="https" value="1">
|
||||||
{else/}
|
{else/}
|
||||||
@ -59,7 +60,7 @@
|
|||||||
<div class="layui-form-item layui-box" data-storage-type="qiniu">
|
<div class="layui-form-item layui-box" data-storage-type="qiniu">
|
||||||
<label class="layui-form-label">secret key</label>
|
<label class="layui-form-label">secret key</label>
|
||||||
<div class="layui-input-block">
|
<div class="layui-input-block">
|
||||||
<input type="text" name="storage_qiniu_secret_key" required="required" title="请输入七牛云 SecretKey" placeholder="请输入七牛云 SecretKey" value="{:sysconf('storage_qiniu_secret_key')}" class="layui-input">
|
<input type="password" name="storage_qiniu_secret_key" required="required" title="请输入七牛云 SecretKey" placeholder="请输入七牛云 SecretKey" value="{:sysconf('storage_qiniu_secret_key')}" class="layui-input">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -240,8 +240,6 @@
|
|||||||
fileSingleSizeLimit: 200 * 1024 * 1024 // 200 M
|
fileSingleSizeLimit: 200 * 1024 * 1024 // 200 M
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 处理上传后的结果
|
* 处理上传后的结果
|
||||||
* @param {type} file
|
* @param {type} file
|
||||||
@ -495,58 +493,6 @@
|
|||||||
updateStatus();
|
updateStatus();
|
||||||
}
|
}
|
||||||
|
|
||||||
// function setState(val) {
|
|
||||||
// var file, stats;
|
|
||||||
// if (val === state) {
|
|
||||||
// return;
|
|
||||||
// }
|
|
||||||
// $upload.removeClass('state-' + state);
|
|
||||||
// $upload.addClass('state-' + val);
|
|
||||||
// state = val;
|
|
||||||
// switch (state) {
|
|
||||||
// case 'pedding':
|
|
||||||
// $placeHolder.removeClass('element-invisible');
|
|
||||||
// $queue.hide();
|
|
||||||
// $statusBar.addClass('element-invisible');
|
|
||||||
// uploader.refresh();
|
|
||||||
// break;
|
|
||||||
// case 'ready':
|
|
||||||
// $placeHolder.addClass('element-invisible');
|
|
||||||
// $queue.show();
|
|
||||||
// $statusBar.removeClass('element-invisible');
|
|
||||||
// uploader.refresh();
|
|
||||||
// break;
|
|
||||||
// case 'uploading':
|
|
||||||
// $progress.show();
|
|
||||||
// $upload.text('暂停上传');
|
|
||||||
// break;
|
|
||||||
// case 'paused':
|
|
||||||
// $progress.show();
|
|
||||||
// $upload.text('继续上传');
|
|
||||||
// break;
|
|
||||||
// case 'confirm':
|
|
||||||
// $progress.hide();
|
|
||||||
// $upload.text('开始上传');
|
|
||||||
// stats = uploader.getStats();
|
|
||||||
// if (stats.successNum && !stats.uploadFailNum) {
|
|
||||||
// setState('finish');
|
|
||||||
// return;
|
|
||||||
// }
|
|
||||||
// break;
|
|
||||||
// case 'finish':
|
|
||||||
// stats = uploader.getStats();
|
|
||||||
// if (stats.successNum) {
|
|
||||||
// completed.call(this);
|
|
||||||
// } else {
|
|
||||||
// // 没有成功的文件,重设
|
|
||||||
// state = 'done';
|
|
||||||
// location.reload();
|
|
||||||
// }
|
|
||||||
// break;
|
|
||||||
// }
|
|
||||||
// updateStatus();
|
|
||||||
// }
|
|
||||||
|
|
||||||
uploader.onUploadProgress = function (file, percentage) {
|
uploader.onUploadProgress = function (file, percentage) {
|
||||||
var $li = $('#' + file.id), $percent = $li.find('.progress span');
|
var $li = $('#' + file.id), $percent = $li.find('.progress span');
|
||||||
$percent.css('width', percentage * 100 + '%');
|
$percent.css('width', percentage * 100 + '%');
|
||||||
|
Loading…
x
Reference in New Issue
Block a user