Compare commits

...

1 Commits
master ... 1129

Author SHA1 Message Date
mkm
89f9b4b64b 补丁 2023-11-29 22:55:47 +08:00
2 changed files with 134 additions and 26 deletions

View File

@ -30,29 +30,52 @@ class Demo extends BaseController
{ {
public function index() public function index()
{ {
$mer_id = 65;
$file = request()->file('file'); $file = request()->file('file');
$zip_name = explode('.', $file->getOriginalName())[0]; $zip_name = explode('.', $file->getOriginalName())[0];
// 上传到本地服务器 // 上传到本地服务器
$savename = \think\facade\Filesystem::putFile('zippic', $file); $savename = \think\facade\Filesystem::putFile('zippic', $file);
$destination_path = public_path('uploads/pic') . $zip_name; $dir = date('Y-m-d_H-i-s') . '_' . $mer_id;
$path = public_path('uploads/pic').$dir;
try {
$zip = new ZipArchive; $zip = new ZipArchive;
if ($zip->open(public_path('uploads').$savename) === TRUE) { $filePath = public_path('uploads') . $savename;
$zip->extractTo($destination_path); $zip->open($filePath);
$zip->close(); for ($i = 0; $i < $zip->numFiles; $i++) {
} else { $statInfo = $zip->statIndex($i, ZipArchive::FL_ENC_RAW);
throw new \think\exception\HttpException(404, '解压失败'); $filename = $this->transcoding($statInfo['name']);
$mkdFile = explode('/',$filename);
if ($statInfo['crc'] == 0) {
// 新建目录
if (!file_exists($path . '/' . $filename)) {
mkdir($path . '/' . $filename, 0777, true);
}
// $this->createDirectories($path . '/' . $filename);
} else {
// 拷贝文件
if(count($mkdFile)==3){
if (!file_exists($path . '/' . $mkdFile[0].'/'.$mkdFile[1])) {
mkdir($path . '/' .$mkdFile[0].'/'.$mkdFile[1], 0777, true);
}
copy('zip://' . $file . '#' . $zip->getNameIndex($i), $path . '/' . $filename);
}
}
}
$zip->close();
} catch (\Exception $e) {
throw new \think\exception\HttpException(404, $e->getMessage() . '。line:' . $e->getLine());
} }
$mer_id = 48;
$directory = $destination_path; $directory = $destination_path;
$files = scandir($directory); $files = scandir($directory);
$dir = 'def/' . date('Y-m-d'); $dir = 'def/' . date('Y-m-d');
$upload = UploadService::create(); $upload = UploadService::create();
/**循环目录 */ /**循环目录 */
foreach ($files as $file) { foreach ($files as $file) {
if ($file === '.' || $file === '..' ||$file ==='__MACOSX') { if ($file === '.' || $file === '..' || $file === '__MACOSX') {
continue; continue;
} }
if(!is_dir($directory . '/' . $file)){ if (!is_dir($directory . '/' . $file)) {
continue; continue;
} }
$files_two = scandir($directory . '/' . $file); $files_two = scandir($directory . '/' . $file);
@ -64,7 +87,7 @@ class Demo extends BaseController
$sku_arr = []; $sku_arr = [];
/**清洗图片 */ /**清洗图片 */
foreach ($files_two as $file_two) { foreach ($files_two as $file_two) {
if ($file_two === '.' || $file_two === '..' ||$file_two ==='__MACOSX') { if ($file_two === '.' || $file_two === '..' || $file_two === '__MACOSX') {
continue; continue;
} }
$arr = explode('.', $file_two); $arr = explode('.', $file_two);
@ -90,7 +113,6 @@ class Demo extends BaseController
if ($sku) { if ($sku) {
$sku = implode(',', $sku); $sku = implode(',', $sku);
$sku_arr[$sku] = $directory . '/' . $file . '/' . $file_two; $sku_arr[$sku] = $directory . '/' . $file . '/' . $file_two;
} }
} }
} }
@ -99,7 +121,7 @@ class Demo extends BaseController
$update_content['title'] = ''; $update_content['title'] = '';
$update_content['image'] = []; $update_content['image'] = [];
$update_content['type'] = 1; $update_content['type'] = 1;
$find = Db::name('store_product')->where($where)->where('store_name',$file)->find(); $find = Db::name('store_product')->where($where)->where('store_name', $file)->find();
if ($find) { if ($find) {
try { try {
/**更新商品图片 */ /**更新商品图片 */
@ -109,7 +131,7 @@ class Demo extends BaseController
$oss = $upload->to($dir)->stream(file_get_contents($v)); $oss = $upload->to($dir)->stream(file_get_contents($v));
$update['slider_image'][] = $oss->filePath; $update['slider_image'][] = $oss->filePath;
} }
if(isset($update['slider_image'])){ if (isset($update['slider_image'])) {
$update['slider_image'] = implode(',', $update['slider_image']); $update['slider_image'] = implode(',', $update['slider_image']);
} }
Db::name('store_product')->where('product_id', $find['product_id'])->update($update); Db::name('store_product')->where('product_id', $find['product_id'])->update($update);
@ -130,7 +152,7 @@ class Demo extends BaseController
$update_content['image'][] = $oss->filePath; $update_content['image'][] = $oss->filePath;
} }
if ($store_product_content) { if ($store_product_content) {
if(isset($update_content['image']) && !empty($update_content['image'])){ if (isset($update_content['image']) && !empty($update_content['image'])) {
Db::name('store_product_content') Db::name('store_product_content')
->where(['product_id' => $find['product_id']]) ->where(['product_id' => $find['product_id']])
->update(['content' => json_encode($update_content)]); ->update(['content' => json_encode($update_content)]);
@ -138,7 +160,7 @@ class Demo extends BaseController
} else { } else {
$update_content['product_id'] = $find['product_id']; $update_content['product_id'] = $find['product_id'];
Db::name('store_product_content') Db::name('store_product_content')
->insert(['product_id'=>$find['product_id'],'type'=>1,'content'=>json_encode($update_content)]); ->insert(['product_id' => $find['product_id'], 'type' => 1, 'content' => json_encode($update_content)]);
} }
} catch (Exception $e) { } catch (Exception $e) {
// halt($e->getMessage(), $e->getLine()); // halt($e->getMessage(), $e->getLine());
@ -147,4 +169,38 @@ class Demo extends BaseController
} }
halt(1); halt(1);
} }
public function transcoding($fileName)
{
$encoding = mb_detect_encoding($fileName, ['UTF-8', 'GBK', 'BIG5', 'CP936']);
if (DIRECTORY_SEPARATOR == '/') { // linux
$fileName = iconv($encoding, 'UTF-8', $fileName);
} else { // win
$fileName = iconv($encoding, 'GBK', $fileName);
}
return $fileName;
}
function createDirectories($path) {
if (is_dir($path)) {
return true ;
} else {
$parts = explode(DIRECTORY_SEPARATOR, $path);
$part = null;
foreach ($parts as $part) {
if ($part === '' || $part === '.' || $part === '..') {
continue;
}
$dir = dirname($path) . DIRECTORY_SEPARATOR . $part;
if (!file_exists($dir)) {
mkdir($dir, 0777, true);
}
}
return true ;
}
}
} }

View File

@ -172,16 +172,36 @@ class StoreImport extends BaseController
// 上传到本地服务器 // 上传到本地服务器
$savename = \think\facade\Filesystem::putFile('zippic', $file); $savename = \think\facade\Filesystem::putFile('zippic', $file);
$mer_id = $this->request->merId(); $mer_id = $this->request->merId();
$dir=date('Y-m-d_H-i-s').'_'.$mer_id; $dir = date('Y-m-d_H-i-s') . '_' . $mer_id;
$destination_path = public_path('uploads/pic/'.$dir) . $zip_name; $path = public_path('uploads/pic').$dir;
try {
$zip = new ZipArchive; $zip = new ZipArchive;
if ($zip->open(public_path('uploads').$savename) === true) { $filePath = public_path('uploads') . $savename;
$zip->extractTo($destination_path); $zip->open($filePath);
$zip->close(); for ($i = 0; $i < $zip->numFiles; $i++) {
} else { $statInfo = $zip->statIndex($i, ZipArchive::FL_ENC_RAW);
throw new \think\exception\HttpException(404, '解压失败'); $filename = $this->transcoding($statInfo['name']);
$mkdFile = explode('/',$filename);
if ($statInfo['crc'] == 0) {
// 新建目录
if (!file_exists($path . '/' . $filename)) {
mkdir($path . '/' . $filename, 0777, true);
} }
Queue::push(ImportPicJob::class,['mer_id'=>$mer_id,'path'=>$destination_path]); } else {
// 拷贝文件
if(count($mkdFile)==3){
if (!file_exists($path . '/' . $mkdFile[0].'/'.$mkdFile[1])) {
mkdir($path . '/' .$mkdFile[0].'/'.$mkdFile[1], 0777, true);
}
copy('zip://' . $file . '#' . $zip->getNameIndex($i), $path . '/' . $filename);
}
}
}
$zip->close();
} catch (\Exception $e) {
throw new \think\exception\HttpException(404, $e->getMessage() . '。line:' . $e->getLine());
}
Queue::push(ImportPicJob::class,['mer_id'=>$mer_id,'path'=>$path.'/'.$zip_name]);
return app('json')->success('开始导入数据,请稍后在列表中查看!,如果未导入请检查格式'); return app('json')->success('开始导入数据,请稍后在列表中查看!,如果未导入请检查格式');
} }
@ -241,5 +261,37 @@ class StoreImport extends BaseController
app()->make(StoreOrderRepository::class)->setProduct($data['data'],$data['mer_id'],$type_id); app()->make(StoreOrderRepository::class)->setProduct($data['data'],$data['mer_id'],$type_id);
} }
} }
public function transcoding($fileName)
{
$encoding = mb_detect_encoding($fileName, ['UTF-8', 'GBK', 'BIG5', 'CP936']);
if (DIRECTORY_SEPARATOR == '/') { // linux
$fileName = iconv($encoding, 'UTF-8', $fileName);
} else { // win
$fileName = iconv($encoding, 'GBK', $fileName);
}
return $fileName;
}
function createDirectories($path) {
if (is_dir($path)) {
return true ;
} else {
$parts = explode(DIRECTORY_SEPARATOR, $path);
$part = null;
foreach ($parts as $part) {
if ($part === '' || $part === '.' || $part === '..') {
continue;
}
$dir = dirname($path) . DIRECTORY_SEPARATOR . $part;
if (!file_exists($dir)) {
mkdir($dir, 0777, true);
}
}
return true ;
}
}
} }