Browse Source

[fix]
1、修改获取点赞数量接口
2、优化通用转换url接口

limeng 4 months ago
parent
commit
6f41591861

+ 2 - 2
application-webadmin/src/main/java/com/tourism/webadmin/app/website/controller/WebsiteTourismProjectTravelNotesController.java

@@ -286,8 +286,8 @@ public class WebsiteTourismProjectTravelNotesController {
     @SaIgnore
     public ResponseResult<Integer> getLikeCount(@RequestParam(required = true) Long travelNotesId) {
 
-        TourTourismProjectTravelNotes tourTourismProjectTravelNotes = tourTourismProjectTravelNotesService.getById(travelNotesId);
-        Integer likeCount = tourTourismProjectTravelNotes.getLikeCount();
+        TourismProjectTravelNotesWrite writeDto = tourismProjectTravelNotesWriteService.getById(travelNotesId);
+        Integer likeCount = writeDto.getLikeCount() == null ? 0 : writeDto.getLikeCount();
         return ResponseResult.success(likeCount);
     }
 }

+ 12 - 8
common/common-additional/src/main/java/com/tourism/common/additional/utils/UrlConvertUtils.java

@@ -12,14 +12,18 @@ public class UrlConvertUtils {
 
     public static List<String> urlConvert(String hostIpPort, String url){
         ArrayList<String> arrayList = new ArrayList<>();
-        if (StringUtils.isNotEmpty(url)) {
-            List<FileUrlObject> fileUrlObjectList = JsonUtils.parseFileUrlArray(url, FileUrlObject.class);
-            if (!CollectionUtils.isEmpty(fileUrlObjectList)) {
-                //遍历每个元素的数组对象,对元素的url对象进行拼接
-                for (FileUrlObject y : fileUrlObjectList) {
-                    String hotPictureUrlsAfterConvert =
-                            hostIpPort + "/" + y.getUploadPath() + "/" + y.getFilename();
-                    arrayList.add(hotPictureUrlsAfterConvert);
+        if(url.contains("https")){
+            arrayList.add(url);
+        }else {
+            if (StringUtils.isNotEmpty(url)) {
+                List<FileUrlObject> fileUrlObjectList = JsonUtils.parseFileUrlArray(url, FileUrlObject.class);
+                if (!CollectionUtils.isEmpty(fileUrlObjectList)) {
+                    //遍历每个元素的数组对象,对元素的url对象进行拼接
+                    for (FileUrlObject y : fileUrlObjectList) {
+                        String hotPictureUrlsAfterConvert =
+                                hostIpPort + "/" + y.getUploadPath() + "/" + y.getFilename();
+                        arrayList.add(hotPictureUrlsAfterConvert);
+                    }
                 }
             }
         }