diff --git a/application/admin/controller/Plugs.php b/application/admin/controller/Plugs.php index 02e359d63..dec36ad14 100644 --- a/application/admin/controller/Plugs.php +++ b/application/admin/controller/Plugs.php @@ -3,6 +3,7 @@ namespace app\admin\controller; use controller\BasicAdmin; +use library\File; /** * 插件助手控制器 @@ -29,14 +30,85 @@ class Plugs extends BasicAdmin { * 文件上传 */ public function upfile() { - $this->assign('field', $this->request->get('field', 'file')); - $this->assign('types', ''); - $this->assign('mimes', ''); + $types = $this->request->get('type', 'jpg,png'); + $field = $this->request->get('field', 'file'); + $this->assign('field', $field); + $this->assign('types', $types); + $this->assign('mimes', File::getMine($types)); $this->assign('uptype', ''); return view(); } - - public function upload(){ + + /** + * 检查文件上传状态 + */ + public function upstate() { + $data = $this->request->post(); + + $this->result($data, 'IS_UPLOADED'); + $this->result($data, 'NOT_FOUND'); + } + + /** + * 生成七牛文件上传Token + * @param string $key + * @return string + */ + protected function _getToken($key) { + $accessKey = sysconf('qiniu_accesskey'); + $secretKey = sysconf('qiniu_secretkey'); + $bucket = sysconf('qiniu_bucket'); + $host = sysconf('qiniu_domain'); + $protocol = sysconf('qiniu_protocol'); + $time = time() + 3600; + if (empty($key)) { + exit('param error'); + } else { + $data = array( + "scope" => "{$bucket}:{$key}", + "deadline" => $time, + "returnBody" => "{\"data\":{\"site_url\":\"{$protocol}://{$host}/$(key)\",\"file_url\":\"$(key)\"}, \"code\": \"SUCCESS\"}", + ); + } + $find = array('+', '/'); + $replace = array('-', '_'); + $data = str_replace($find, $replace, base64_encode(json_encode($data))); + $sign = hash_hmac('sha1', $data, $secretKey, true); + return $accessKey . ':' . str_replace($find, $replace, base64_encode($sign)) . ':' . $data; + } + + /** + * 文件上传 + * @return string + */ + public function upload() { + if (request()->isPost()) { + $filepath = 'upload/' . date('Y/md'); + $file = request()->file('file'); + $info = $file->move($filepath); + if ($info) { + $data = []; + $data['uptype'] = 'local'; + $data['md5'] = input('post.md5', $info->md5()); + $data['file_name'] = $info->getFilename(); +// $data['file_type'] = $info->getInfo('type'); + $data['file_path'] = $info->getPathname(); + $data['full_path'] = $info->getRealPath(); + $data['orig_name'] = $info->getInfo('name'); + $data['client_name'] = $info->getInfo('name'); + $data['file_ext'] = $info->getExtension(); + $data['file_url'] = $filepath . '/' . $info->getSaveName(); + $data['site_url'] = pathinfo(request()->baseFile(true), PATHINFO_DIRNAME) . '/' . $data['file_url']; + $data['file_size'] = $info->getSize(); + $data['create_by'] = get_user_id(); + Db::table('system_file')->insert($data); + return json(['code' => 'SUCCESS', 'data' => $data]); + } + } + return json([]); + } + + public function upload() { } diff --git a/application/admin/view/plugs.upfile.html b/application/admin/view/plugs.upfile.html index 6c53c740d..6585010ac 100644 --- a/application/admin/view/plugs.upfile.html +++ b/application/admin/view/plugs.upfile.html @@ -1,7 +1,7 @@
-