[]]; foreach (str2arr(sysconf('storage.allow_exts')) as $ext) { $data['exts'][$ext] = Storage::mime($ext); } $template = realpath(__DIR__ . '/../../view/api/upload.js'); $data['exts'] = json_encode($data['exts'], JSON_UNESCAPED_UNICODE); $data['nameType'] = sysconf('storage.name_type') ?: 'xmd5'; return view($template, $data)->contentType('application/x-javascript'); } /** * 文件上传检查 * @login true * @throws \think\admin\Exception * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function state() { [$name, $safe] = [input('name'), $this->getSafe()]; $data = ['uptype' => $this->getType(), 'safe' => intval($safe), 'key' => input('key')]; $file = SystemFile::mk()->data($this->_vali([ 'xkey.value' => $data['key'], 'type.value' => $this->getType(), 'uuid.value' => AdminService::instance()->getUserId(), 'name.require' => '名称不能为空!', 'hash.require' => '哈希不能为空!', 'xext.require' => '后缀不能为空!', 'size.require' => '大小不能为空!', 'mime.require' => "类型不能为空!", 'status.value' => 1 ])); if ($info = Storage::instance($data['uptype'])->info($data['key'], $safe, $name)) { $file->save(['xurl' => $info['url'], 'isfast' => 1, 'issafe' => $data['safe']]); $extr = ['id' => $file->id ?? 0, 'url' => $info['url'], 'key' => $info['key']]; $this->success('文件已经上传', array_merge($data, $extr), 200); } elseif ('local' === $data['uptype']) { $data['url'] = LocalStorage::instance()->url($data['key'], $safe, $name); $data['server'] = LocalStorage::instance()->upload(); } elseif ('qiniu' === $data['uptype']) { $data['url'] = QiniuStorage::instance()->url($data['key'], $safe, $name); $data['token'] = QiniuStorage::instance()->buildUploadToken($data['key'], 3600, $name); $data['server'] = QiniuStorage::instance()->upload(); } elseif ('alioss' === $data['uptype']) { $token = AliossStorage::instance()->buildUploadToken($data['key'], 3600, $name); $data['url'] = $token['siteurl']; $data['policy'] = $token['policy']; $data['signature'] = $token['signature']; $data['OSSAccessKeyId'] = $token['keyid']; $data['server'] = AliossStorage::instance()->upload(); } elseif ('txcos' === $data['uptype']) { $token = TxcosStorage::instance()->buildUploadToken($data['key'], 3600, $name); $data['url'] = $token['siteurl']; $data['q-ak'] = $token['q-ak']; $data['policy'] = $token['policy']; $data['q-key-time'] = $token['q-key-time']; $data['q-signature'] = $token['q-signature']; $data['q-sign-algorithm'] = $token['q-sign-algorithm']; $data['server'] = TxcosStorage::instance()->upload(); } elseif ('upyun' === $data['uptype']) { $token = UpyunStorage::instance()->buildUploadToken($data['key'], 3600, $name, input('size'), input('hash')); $data['url'] = $token['siteurl']; $data['policy'] = $token['policy']; $data['authorization'] = $token['authorization']; $data['server'] = UpyunStorage::instance()->upload(); } $file->save(['xurl' => $data['url'], 'isfast' => 0, 'issafe' => $data['safe']]); $this->success('获取上传授权参数', array_merge($data, ['id' => $file->id ?? 0]), 404); } /** * 更新文件状态 * @login true * @return void */ public function done() { $data = $this->_vali([ 'id.require' => '编号不能为空!', 'hash.require' => '哈希不能为空!', ]); $data['uuid'] = AdminService::instance()->getUserId(); $file = SystemFile::mk()->where($data)->findOrEmpty(); if ($file->isEmpty()) $this->error('文件不存在!'); if ($file->save(['status' => 2])) { $this->success('更新成功!'); } else { $this->error('更新失败!'); } } /** * 文件选择器 * @login true * @return void * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function modal() { SystemFile::mQuery()->layTable(function () { $this->title = '文件选择器'; }, function (QueryHelper $query) { $query->where(['status' => 2])->order('id desc'); $query->like('name,hash')->dateBetween('create_at'); }); } /** * 文件上传入口 * @login true * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function file() { if (!($file = $this->getFile())->isValid()) { $this->error('文件上传异常,文件过大或未上传!'); } $safeMode = $this->getSafe(); $extension = strtolower($file->getOriginalExtension()); $saveName = input('key') ?: Storage::name($file->getPathname(), $extension, '', 'md5_file'); // 检查文件名称是否合法 if (strpos($saveName, '../') !== false) { $this->error('文件路径不能出现跳级操作!'); } // 检查文件后缀是否被恶意修改 if (strtolower(pathinfo(parse_url($saveName, PHP_URL_PATH), PATHINFO_EXTENSION)) !== $extension) { $this->error('文件后缀异常,请重新上传文件!'); } // 屏蔽禁止上传指定后缀的文件 if (!in_array($extension, str2arr(sysconf('storage.allow_exts')))) { $this->error('文件类型受限,请在后台配置规则!'); } if (in_array($extension, ['sh', 'asp', 'bat', 'cmd', 'exe', 'php'])) { $this->error('文件安全保护,禁止上传可执行文件!'); } try { if ($this->getType() === 'local') { $local = LocalStorage::instance(); $distName = $local->path($saveName, $safeMode); $file->move(dirname($distName), basename($distName)); $info = $local->info($saveName, $safeMode, $file->getOriginalName()); if (in_array($extension, ['jpg', 'gif', 'png', 'bmp', 'jpeg', 'wbmp'])) { if ($this->imgNotSafe($distName) && $local->del($saveName)) { $this->error('图片未通过安全检查!'); } [$width, $height] = getimagesize($distName); if (($width < 1 || $height < 1) && $local->del($saveName)) { $this->error('读取图片的尺寸失败!'); } } } else { $bina = file_get_contents($file->getPathname()); $info = Storage::instance($this->getType())->set($saveName, $bina, $safeMode, $file->getOriginalName()); } if (isset($info['url'])) { $this->success('文件上传成功!', ['url' => $safeMode ? $saveName : $info['url']]); } else { $this->error('文件处理失败,请稍候再试!'); } } catch (HttpResponseException $exception) { throw $exception; } catch (\Exception $exception) { $this->error($exception->getMessage()); } } /** * 获取文件上传类型 * @return boolean */ private function getSafe(): bool { return boolval(input('safe', '0')); } /** * 获取文件上传方式 * @return string * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ private function getType(): string { $type = strtolower(input('uptype', '')); if (in_array($type, ['local', 'qiniu', 'alioss', 'txcos', 'uptype'])) { return $type; } else { return strtolower(sysconf('storage.type')); } } /** * 获取本地文件对象 * @return UploadedFile|void */ private function getFile(): UploadedFile { try { $file = $this->request->file('file'); if ($file instanceof UploadedFile) { return $file; } else { $this->error('未获取到上传的文件对象!'); } } catch (HttpResponseException $exception) { throw $exception; } catch (\Exception $exception) { $this->error(lang($exception->getMessage())); } } /** * 检查图片是否安全 * @param string $filename * @return boolean */ private function imgNotSafe(string $filename): bool { $source = fopen($filename, 'rb'); if (($size = filesize($filename)) > 512) { $hexs = bin2hex(fread($source, 512)); fseek($source, $size - 512); $hexs .= bin2hex(fread($source, 512)); } else { $hexs = bin2hex(fread($source, $size)); } if (is_resource($source)) fclose($source); $bins = hex2bin($hexs); /* 匹配十六进制中的 <% ( ) %> 或