更新导入
This commit is contained in:
parent
5d706254df
commit
5c5dc50bc0
@ -52,6 +52,9 @@ class Demo extends BaseController
|
|||||||
if ($file === '.' || $file === '..' ||$file ==='__MACOSX') {
|
if ($file === '.' || $file === '..' ||$file ==='__MACOSX') {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
if(!is_dir($directory . '/' . $file)){
|
||||||
|
continue;
|
||||||
|
}
|
||||||
$files_two = scandir($directory . '/' . $file);
|
$files_two = scandir($directory . '/' . $file);
|
||||||
|
|
||||||
$image_extensions = array('jpg', 'jpeg', 'png');
|
$image_extensions = array('jpg', 'jpeg', 'png');
|
||||||
@ -59,26 +62,26 @@ class Demo extends BaseController
|
|||||||
$slider_image = [];
|
$slider_image = [];
|
||||||
$details = [];
|
$details = [];
|
||||||
$sku_arr = [];
|
$sku_arr = [];
|
||||||
/**清洗图片
|
/**清洗图片 */
|
||||||
* file_two 商品名对应目录
|
|
||||||
*/
|
|
||||||
foreach ($files_two as $file_two) {
|
foreach ($files_two as $file_two) {
|
||||||
$arr = $file_two;
|
if ($file_two === '.' || $file_two === '..' ||$file_two ==='__MACOSX') {
|
||||||
|
continue;
|
||||||
if (in_array($arr, $image_extensions)) {
|
}
|
||||||
|
$arr = explode('.', $file_two);
|
||||||
|
if (in_array($arr[1], $image_extensions)) {
|
||||||
/**首图 */
|
/**首图 */
|
||||||
$images[] = $file_two;
|
$images[] = $file_two;
|
||||||
if ($image == '' && is_int((int)$arr[0])) {
|
if ($image == '' && is_numeric($arr[0])) {
|
||||||
$image = $directory . '/' . $file . '/' . $file_two;
|
$image = $directory . '/' . $file . '/' . $file_two;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
/**轮播图 */
|
/**轮播图 */
|
||||||
if (is_int((int)$arr[0]) && count($slider_image) < 4) {
|
if (is_numeric($arr[0]) && count($slider_image) < 4) {
|
||||||
$slider_image[] = $directory . '/' . $file . '/' . $file_two;
|
$slider_image[] = $directory . '/' . $file . '/' . $file_two;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
/**详情图 */
|
/**详情图 */
|
||||||
if (is_int((int)$arr[0])) {
|
if (is_numeric($arr[0])) {
|
||||||
$details[] = $directory . '/' . $file_two;
|
$details[] = $directory . '/' . $file_two;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@ -87,9 +90,8 @@ 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;
|
||||||
|
|
||||||
}
|
}
|
||||||
}else{
|
|
||||||
continue;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$where = ['mer_id' => $mer_id, 'is_del' => 0];
|
$where = ['mer_id' => $mer_id, 'is_del' => 0];
|
||||||
|
@ -171,7 +171,9 @@ class StoreImport extends BaseController
|
|||||||
$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;
|
$mer_id = $this->request->merId();
|
||||||
|
$dir=date('Y-m-d_H-i-s').'_'.$mer_id;
|
||||||
|
$destination_path = public_path('uploads/pic/'.$dir) . $zip_name;
|
||||||
$zip = new ZipArchive;
|
$zip = new ZipArchive;
|
||||||
if ($zip->open(public_path('uploads').$savename) === true) {
|
if ($zip->open(public_path('uploads').$savename) === true) {
|
||||||
$zip->extractTo($destination_path);
|
$zip->extractTo($destination_path);
|
||||||
@ -179,10 +181,8 @@ class StoreImport extends BaseController
|
|||||||
} else {
|
} else {
|
||||||
throw new \think\exception\HttpException(404, '解压失败');
|
throw new \think\exception\HttpException(404, '解压失败');
|
||||||
}
|
}
|
||||||
$mer_id = $this->request->merId();
|
|
||||||
Queue::push(ImportPicJob::class,['mer_id'=>$mer_id,'path'=>$destination_path]);
|
Queue::push(ImportPicJob::class,['mer_id'=>$mer_id,'path'=>$destination_path]);
|
||||||
return app('json')->success('开始导入数据,请稍后在列表中查看!');
|
return app('json')->success('开始导入数据,请稍后在列表中查看!,如果未导入请检查格式');
|
||||||
|
|
||||||
}
|
}
|
||||||
public function getXlsList($type_id,$path){
|
public function getXlsList($type_id,$path){
|
||||||
if($type_id==12){
|
if($type_id==12){
|
||||||
|
@ -29,33 +29,36 @@ class ImportPicJob implements JobInterface
|
|||||||
if ($file === '.' || $file === '..' ||$file ==='__MACOSX') {
|
if ($file === '.' || $file === '..' ||$file ==='__MACOSX') {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
if(!is_dir($directory . '/' . $file)){
|
||||||
|
continue;
|
||||||
|
}
|
||||||
$files_two = scandir($directory . '/' . $file);
|
$files_two = scandir($directory . '/' . $file);
|
||||||
|
|
||||||
$image_extensions = array('jpg', 'jpeg', 'png');
|
$image_extensions = array('jpg', 'jpeg', 'png');
|
||||||
$image = '';
|
$image = '';
|
||||||
$slider_image = [];
|
$slider_image = [];
|
||||||
$details = [];
|
$details = [];
|
||||||
$sku_arr = [];
|
$sku_arr = [];
|
||||||
|
/**清洗图片 */
|
||||||
/**清洗图片
|
|
||||||
* file_two 商品名对应目录
|
|
||||||
*/
|
|
||||||
foreach ($files_two as $file_two) {
|
foreach ($files_two as $file_two) {
|
||||||
$arr = $file_two;
|
if ($file_two === '.' || $file_two === '..' ||$file_two ==='__MACOSX') {
|
||||||
|
continue;
|
||||||
if (in_array($arr, $image_extensions)) {
|
}
|
||||||
|
$arr = explode('.', $file_two);
|
||||||
|
if (in_array($arr[1], $image_extensions)) {
|
||||||
/**首图 */
|
/**首图 */
|
||||||
$images[] = $file_two;
|
$images[] = $file_two;
|
||||||
if ($image == '' && is_int((int)$arr[0])) {
|
if ($image == '' && is_numeric($arr[0])) {
|
||||||
$image = $directory . '/' . $file . '/' . $file_two;
|
$image = $directory . '/' . $file . '/' . $file_two;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
/**轮播图 */
|
/**轮播图 */
|
||||||
if (is_int((int)$arr[0]) && count($slider_image) < 4) {
|
if (is_numeric($arr[0]) && count($slider_image) < 4) {
|
||||||
$slider_image[] = $directory . '/' . $file . '/' . $file_two;
|
$slider_image[] = $directory . '/' . $file . '/' . $file_two;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
/**详情图 */
|
/**详情图 */
|
||||||
if (is_int((int)$arr[0])) {
|
if (is_numeric($arr[0])) {
|
||||||
$details[] = $directory . '/' . $file_two;
|
$details[] = $directory . '/' . $file_two;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@ -64,16 +67,14 @@ class ImportPicJob implements JobInterface
|
|||||||
if ($sku) {
|
if ($sku) {
|
||||||
$sku = implode(',', $sku);
|
$sku = implode(',', $sku);
|
||||||
$sku_arr[$sku] = $directory . '/' . $file . '/' . $file_two;
|
$sku_arr[$sku] = $directory . '/' . $file . '/' . $file_two;
|
||||||
|
|
||||||
}
|
}
|
||||||
}else{
|
|
||||||
continue;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$where = ['mer_id' => $mer_id, 'is_del' => 0];
|
$where = ['mer_id' => $mer_id, 'is_del' => 0];
|
||||||
$update = [];
|
$update = [];
|
||||||
$update_content['title'] = '';
|
$update_content['title'] = '';
|
||||||
$update_content['image'] = [];
|
$update_content['image'] = [];
|
||||||
$update_content['type'] = 1;
|
|
||||||
$find = Db::name('store_product')->where($where)->where('store_name', 'like', '%' . $file . '%')->find();
|
$find = Db::name('store_product')->where($where)->where('store_name', 'like', '%' . $file . '%')->find();
|
||||||
if ($find) {
|
if ($find) {
|
||||||
try {
|
try {
|
||||||
@ -105,14 +106,14 @@ class ImportPicJob implements JobInterface
|
|||||||
if ($store_product_content) {
|
if ($store_product_content) {
|
||||||
Db::name('store_product_content')
|
Db::name('store_product_content')
|
||||||
->where(['product_id' => $find['product_id']])
|
->where(['product_id' => $find['product_id']])
|
||||||
->update(json_encode($update_content));
|
->update();
|
||||||
} 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(json_encode($update_content));
|
->insert(['product_id'=>$find['product_id'],'type'=>1,'content'=>json_encode($update_content)]);
|
||||||
}
|
}
|
||||||
} catch (Exception $e) {
|
} catch (Exception $e) {
|
||||||
Log::error('导入商品图片失败'.$e->getMessage().'line:'.$e->getLine());
|
halt($e->getMessage(), $e->getLine());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user