Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
introducer
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
sugar
introducer
Commits
05e01093
Commit
05e01093
authored
Jun 16, 2023
by
sugar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
易购商家后台
parent
e6957435
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
92 additions
and
0 deletions
+92
-0
application/admin/controller/Ajax.php
application/admin/controller/Ajax.php
+92
-0
No files found.
application/admin/controller/Ajax.php
View file @
05e01093
...
@@ -5,6 +5,7 @@ namespace app\admin\controller;
...
@@ -5,6 +5,7 @@ namespace app\admin\controller;
use
app\common\controller\Backend
;
use
app\common\controller\Backend
;
use
app\common\exception\UploadException
;
use
app\common\exception\UploadException
;
use
app\common\library\Upload
;
use
app\common\library\Upload
;
use
app\lib\utils\FileUpload
;
use
fast\Random
;
use
fast\Random
;
use
think\addons\Service
;
use
think\addons\Service
;
use
think\Cache
;
use
think\Cache
;
...
@@ -53,6 +54,97 @@ class Ajax extends Backend
...
@@ -53,6 +54,97 @@ class Ajax extends Backend
return
jsonp
(
Lang
::
get
(),
200
,
$header
,
[
'json_encode_param'
=>
JSON_FORCE_OBJECT
|
JSON_UNESCAPED_UNICODE
]);
return
jsonp
(
Lang
::
get
(),
200
,
$header
,
[
'json_encode_param'
=>
JSON_FORCE_OBJECT
|
JSON_UNESCAPED_UNICODE
]);
}
}
/**
* OSS上传文件
*/
/*public function upload()
{
Config::set('default_return_type', 'json');
$file = $this->request->file('file');
if (empty($file)) {
$this->error(__('No file upload or server upload limit exceeded'));
}
//判断是否已经存在附件
$sha1 = $file->hash();
$extparam = $this->request->post();
unset($extparam['name']);
$upload = Config::get('upload');
$multipart=$upload['multiparameter'];
$url='';
if($extparam){
foreach ($extparam as $key=>$val){
if(is_numeric($key)){
$multipart =$multipart.$val;
$url = $url.$val;
}
}
// $multipart =$multipart."/";
$url=$upload['cdnurl'].$url;
}
preg_match('/(\d+)(\w+)/', $upload['maxsize'], $matches);
$type = strtolower($matches[2]);
$typeDict = ['b' => 0, 'k' => 1, 'kb' => 1, 'm' => 2, 'mb' => 2, 'gb' => 3, 'g' => 3];
$size = (int)$upload['maxsize'] * pow(1024, isset($typeDict[$type]) ? $typeDict[$type] : 0);
$fileInfo = $file->getInfo();
$suffix = strtolower(pathinfo($fileInfo['name'], PATHINFO_EXTENSION));
$suffix = $suffix && preg_match("/^[a-zA-Z0-9]+$/", $suffix) ? $suffix : 'file';
$mimetypeArr = explode(',', strtolower($upload['mimetype']));
$typeArr = explode('/', $fileInfo['type']);
//禁止上传PHP和HTML文件
if (in_array($fileInfo['type'], ['text/x-php', 'text/html']) || in_array($suffix, ['php', 'html', 'htm'])) {
$this->error(__('Uploaded file format is limited'));
}
//验证文件后缀
if ($upload['mimetype'] !== '*' &&(!in_array($suffix, $mimetypeArr)
|| (stripos($typeArr[0] . '/', $upload['mimetype']) !== false && (!in_array($fileInfo['type'], $mimetypeArr) && !in_array($typeArr[0] . '/*', $mimetypeArr))))) {
$this->error(__('Uploaded file format is limited'));
}
//判断图片是否过大
if($fileInfo['size']>$size){
$this->error("上传文件过大!");
}
//验证是否为图片文件或视频文件
$imagewidth = $imageheight = 0;
if (in_array($fileInfo['type'], ['image/gif', 'image/jpg', 'image/jpeg', 'image/bmp', 'image/png', 'image/webp']) || in_array($suffix, ['gif', 'jpg', 'jpeg', 'bmp', 'png', 'webp', 'swf', 'mp4', 'mp3', 'avi', ',flv', 'wmv'])) {
$imgInfo = getimagesize($fileInfo['tmp_name']);
if (!$imgInfo || !isset($imgInfo[0]) || !isset($imgInfo[1])) {
$this->error(__('Uploaded file is not a valid image'));
}
$imagewidth = isset($imgInfo[0]) ? $imgInfo[0] : $imagewidth;
$imageheight = isset($imgInfo[1]) ? $imgInfo[1] : $imageheight;
}
$replaceArr = [
'{year}' => date("Y"),
'{mon}' => date("m"),
'{day}' => date("d"),
'{hour}' => date("H"),
'{min}' => date("i"),
'{sec}' => date("s"),
'{random}' => Random::alnum(16),
'{random32}' => Random::alnum(32),
'{filename}' => $suffix ? substr($fileInfo['name'], 0, strripos($fileInfo['name'], '.')) : $fileInfo['name'],
'{suffix}' => $suffix,
'{.suffix}' => $suffix ? '.' . $suffix : '',
'{filemd5}' => substr(md5($fileInfo['tmp_name'].time()),-18),
];
$savekey = $upload['savekey'];
$savekey = str_replace(array_keys($replaceArr), array_values($replaceArr), $savekey);
$uploadDir = substr($savekey, 0, strripos($savekey, '/') + 1);
$fileName = substr($savekey, strripos($savekey, '/') + 1);
$res = FileUpload::image($multipart.$uploadDir.$fileName, $fileInfo['tmp_name']);
if($res){
$this->success(__('Upload successful'), null, [
'url' =>$uploadDir.$fileName,
'cdnurl'=>$upload['cdnurl'],
]);
}else{
// 上传失败获取错误信息
$this->error($file->getError());
}
}*/
/**
/**
* 上传文件
* 上传文件
*/
*/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment