소스 검색

修复调用相册的BUG

moshaorui 3 주 전
부모
커밋
63ad4fb7cb
4개의 변경된 파일33개의 추가작업 그리고 12개의 파일을 삭제
  1. 1 1
      .env.dev
  2. 3 3
      app/Admin/Controllers/ImportProductController.php
  3. 3 3
      app/Distributor/Controllers/SiteAlbumController.php
  4. 26 5
      app/Libraries/CommonHelper.php

+ 1 - 1
.env.dev

@@ -89,4 +89,4 @@ MAIL_CC_ADDRESS=""
 #相册系统RPC调用配置
 ALBUM_RPC_URL=https://album-prime-control.mietubl.com.cn/rpc
 ALBUM_RPC_SECRET=MtbSecretVBUC
-
+ALBUM_OSS_URL=https://mietublcom.oss-cn-hongkong.aliyuncs.com

+ 3 - 3
app/Admin/Controllers/ImportProductController.php

@@ -169,7 +169,7 @@ class ImportProductController extends AdminController
                 $images = json_decode($images);
                 $html = '<div style="text-align: center">';
                 foreach ($images as $key => $image) {
-                    $url = CommonHelper::ossUrl($image);
+                    $url = CommonHelper::albumUrl($image);
                     $html .= '<img src="' . $url . '" style="max-width:90%;margin-bottom:10px">';
                 }
                 $html .= '</div>';
@@ -180,7 +180,7 @@ class ImportProductController extends AdminController
                 $images = json_decode($images);
                 $html = '<div style="text-align: center">';
                 foreach ($images as $key => $image) {
-                    $url = CommonHelper::ossUrl($image);
+                    $url = CommonHelper::albumUrl($image);
                     $html .= '<img src="' . $url . '" style="max-width:90%;margin-bottom:10px">';
                 }
                 $html .= '</div>';
@@ -216,7 +216,7 @@ class ImportProductController extends AdminController
                     foreach ($items as $item) {
                         $table .= '<tr>';
                         $table .= '<td style="vertical-align: middle !important;width: 20%">' . $item->pdf_title . '</td>';    // 商品名称
-                        $table .= '<td style="vertical-align: middle !important;"><a target="_blank" href="' . CommonHelper::ossUrl($item->pdf_src). '">查看</a></td>'; // 数量
+                        $table .= '<td style="vertical-align: middle !important;"><a target="_blank" href="' . CommonHelper::albumUrl($item->pdf_src). '">查看</a></td>'; // 数量
                         $table .= '</tr>';
                     }
                     $table .= '</table>';

+ 3 - 3
app/Distributor/Controllers/SiteAlbumController.php

@@ -72,7 +72,7 @@ class SiteAlbumController extends AdminController
                 $images = json_decode($images);
                 // 限制最多显示2个缩略图
                 $dataImages = array_slice($images, 0, 1);
-                return CommonHelper::displayImage($dataImages,100);
+                return CommonHelper::displayImage($dataImages,100,1024,2);
             });
             if ($lang == 'en') {
                 $grid->column('title_en');
@@ -158,7 +158,7 @@ class SiteAlbumController extends AdminController
                     $images = json_decode($images);
                     $html = '<div style="text-align: center">';
                     foreach ($images as $key => $image) {
-                        $url = CommonHelper::ossUrl($image);
+                        $url = CommonHelper::albumUrl($image);
                         $html .= '<img src="' . $url . '" style="max-width:90%;margin-bottom:10px">';
                     }
                     $html .= '</div>';
@@ -205,7 +205,7 @@ class SiteAlbumController extends AdminController
                             }
                             $table .= '<tr>';
                             $table .= '<td style="vertical-align: middle !important;width: 20%">' . $pdf_title . '</td>';    // 商品名称
-                            $table .= '<td style="vertical-align: middle !important;"><a target="_blank" href="' . CommonHelper::ossUrl($item->pdf_src). '">查看</a></td>'; // 数量
+                            $table .= '<td style="vertical-align: middle !important;"><a target="_blank" href="' . CommonHelper::albumUrl($item->pdf_src). '">查看</a></td>'; // 数量
                             $table .= '</tr>';
                         }
                         $table .= '</table>';

+ 26 - 5
app/Libraries/CommonHelper.php

@@ -10,9 +10,10 @@ class CommonHelper
 
     /*
      * $images 格式:['image.jpg','image2.jpg']
+     * $ossSource 1:本地 2:相册
      * 返回显示的HTML显示图片
      */
-    public static function displayImage($images,$boxSize=60,$imgSize=1024)
+    public static function displayImage($images,$boxSize=60,$imgSize=1024,$ossSource=1)
     {
         if (empty($images) || empty($images[0])) {
             $html = "";
@@ -20,8 +21,12 @@ class CommonHelper
 
 
             // 默认显示 100x100 的图片
-            $thumbnailImages = array_map(function ($imageUrl) use ($boxSize) {
-                $imageUrl= CommonHelper::ossUrl($imageUrl);
+            $thumbnailImages = array_map(function ($imageUrl) use ($boxSize,$ossSource) {
+                if ($ossSource == 1) {
+                    $imageUrl= CommonHelper::ossUrl($imageUrl);
+                } else {
+                    $imageUrl= CommonHelper::albumUrl($imageUrl);
+                }
                 $extension = pathinfo($imageUrl, PATHINFO_EXTENSION);
                 if ($extension == 'svg') {
                     return $imageUrl;
@@ -32,8 +37,12 @@ class CommonHelper
             }, $images);
 
             // 生成点击查看大图的链接
-            $largeImages = array_map(function ($imageUrl) use ($imgSize) {
-                $imageUrl= CommonHelper::ossUrl($imageUrl);
+            $largeImages = array_map(function ($imageUrl) use ($imgSize,$ossSource) {
+                if ($ossSource == 1) {
+                    $imageUrl= CommonHelper::ossUrl($imageUrl);
+                } else {
+                    $imageUrl= CommonHelper::albumUrl($imageUrl);
+                }
                 $extension = pathinfo($imageUrl, PATHINFO_EXTENSION);
                 if ($extension == 'svg') {
                     return $imageUrl;
@@ -69,6 +78,18 @@ class CommonHelper
         return "http://".env('OSS_BUCKET').'.'.env('OSS_ENDPOINT').'/'.$imageUrl;
     }
 
+    /*
+     * 图库图片URL
+     */
+    public static function albumUrl($imageUrl)
+    {
+        if (strpos($imageUrl, 'http:') === 0 || strpos($imageUrl, 'https:') === 0) {
+            return  $imageUrl;
+        }
+
+        return env('ALBUM_OSS_URL').'/'.$imageUrl;
+    }
+
 
 
     /*