|
@@ -1,15 +1,20 @@
|
|
|
package com.tourism.webadmin.app.website.service.impl;
|
|
|
|
|
|
import com.github.pagehelper.page.PageMethod;
|
|
|
-import com.tourism.common.additional.model.FileUrlObject;
|
|
|
-import com.tourism.common.additional.utils.JsonUtils;
|
|
|
import com.tourism.common.additional.utils.StringUtils;
|
|
|
-import com.tourism.common.core.object.*;
|
|
|
+import com.tourism.common.additional.utils.UrlConvertUtils;
|
|
|
+import com.tourism.common.core.object.MyOrderParam;
|
|
|
+import com.tourism.common.core.object.MyPageData;
|
|
|
+import com.tourism.common.core.object.MyRelationParam;
|
|
|
+import com.tourism.common.core.object.TokenData;
|
|
|
import com.tourism.common.core.util.MyModelUtil;
|
|
|
import com.tourism.common.core.util.MyPageUtil;
|
|
|
import com.tourism.webadmin.app.website.dto.TourismProjectTravelNotesToWebDto;
|
|
|
import com.tourism.webadmin.app.website.service.BasicToWebService;
|
|
|
-import com.tourism.webadmin.back.model.*;
|
|
|
+import com.tourism.webadmin.back.model.BannerInfo;
|
|
|
+import com.tourism.webadmin.back.model.DirectoryInfo;
|
|
|
+import com.tourism.webadmin.back.model.TourTourismProjectTravelNotes;
|
|
|
+import com.tourism.webadmin.back.model.TourUserLikeTravelNotes;
|
|
|
import com.tourism.webadmin.back.service.BannerInfoService;
|
|
|
import com.tourism.webadmin.back.service.DirectoryInfoService;
|
|
|
import com.tourism.webadmin.back.service.TourTourismProjectTravelNotesService;
|
|
@@ -19,14 +24,10 @@ import com.tourism.webadmin.back.vo.DirectoryInfoVo;
|
|
|
import com.tourism.webadmin.back.vo.TourTourismProjectTravelNotesVo;
|
|
|
import com.tourism.webadmin.config.ApplicationConfig;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
-import org.junit.Test;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
-import org.springframework.util.CollectionUtils;
|
|
|
-import org.springframework.util.ObjectUtils;
|
|
|
|
|
|
-import java.util.ArrayList;
|
|
|
import java.util.List;
|
|
|
import java.util.Random;
|
|
|
import java.util.stream.Collectors;
|
|
@@ -69,22 +70,11 @@ public class BasicToWebServiceImpl implements BasicToWebService
|
|
|
|
|
|
List<BannerInfoVo> dataList = bannerInfoVoMyPageData.getDataList();
|
|
|
//先把imgUrl由jaon转换为List<FileUrlObject>
|
|
|
- dataList.stream().forEach(item ->
|
|
|
- {
|
|
|
- if (StringUtils.isNotEmpty(item.getImgUrl())) {
|
|
|
- List<FileUrlObject> fileUrlObjectList = JsonUtils.parseFileUrlArray(item.getImgUrl(), FileUrlObject.class);
|
|
|
- if (!CollectionUtils.isEmpty(fileUrlObjectList)) {
|
|
|
- ArrayList<String> arrayList = new ArrayList<>();
|
|
|
- //遍历每个元素的数组对象,对元素的url对象进行拼接
|
|
|
- for (FileUrlObject y : fileUrlObjectList) {
|
|
|
- String imgUrlAfterConvert =
|
|
|
- applicationConfig.getHostIpPort() + y.getDownloadUri() + "?id=" + item.getId() + "&fieldName=imgUrl&asImage=true&filename=" + y.getFilename();
|
|
|
- arrayList.add(imgUrlAfterConvert);
|
|
|
- }
|
|
|
- item.setImgUrlsAfterConvert(arrayList);
|
|
|
- }
|
|
|
- }
|
|
|
- });
|
|
|
+ dataList.stream().forEach(item ->{
|
|
|
+ if (StringUtils.isNotEmpty(item.getImgUrl())) {
|
|
|
+ item.setImgUrlsAfterConvert(UrlConvertUtils.urlConvert(applicationConfig.getHostIpPort(), item.getImgUrl()));
|
|
|
+ }
|
|
|
+ });
|
|
|
|
|
|
return bannerInfoVoMyPageData;
|
|
|
}
|
|
@@ -126,20 +116,9 @@ public class BasicToWebServiceImpl implements BasicToWebService
|
|
|
|
|
|
List<DirectoryInfoVo> dataList = directoryInfoVoMyPageData.getDataList();
|
|
|
//先把imgUrl由jaon转换为List<FileUrlObject>
|
|
|
- dataList.stream().forEach(item ->
|
|
|
- {
|
|
|
+ dataList.stream().forEach(item ->{
|
|
|
if (StringUtils.isNotEmpty(item.getHotPictureUrl())) {
|
|
|
- List<FileUrlObject> fileUrlObjectList = JsonUtils.parseFileUrlArray(item.getHotPictureUrl(), FileUrlObject.class);
|
|
|
- if (!CollectionUtils.isEmpty(fileUrlObjectList)) {
|
|
|
- ArrayList<String> arrayList = new ArrayList<>();
|
|
|
- //遍历每个元素的数组对象,对元素的url对象进行拼接
|
|
|
- for (FileUrlObject y : fileUrlObjectList) {
|
|
|
- String hotPictureUrlsAfterConvert =
|
|
|
- applicationConfig.getHostIpPort() + y.getDownloadUri() + "?id=" + item.getId() + "&fieldName=hotPictureUrl&asImage=true&filename=" + y.getFilename();
|
|
|
- arrayList.add(hotPictureUrlsAfterConvert);
|
|
|
- }
|
|
|
- item.setHotPictureUrlsAfterConvert(arrayList);
|
|
|
- }
|
|
|
+ item.setHotPictureUrlsAfterConvert(UrlConvertUtils.urlConvert(applicationConfig.getHostIpPort(), item.getHotPictureUrl()));
|
|
|
}
|
|
|
});
|
|
|
return directoryInfoVoMyPageData;
|
|
@@ -162,17 +141,7 @@ public class BasicToWebServiceImpl implements BasicToWebService
|
|
|
List<TourTourismProjectTravelNotesVo> dataList = tourTourismProjectTravelNotesVoMyPageData.getDataList();
|
|
|
dataList.stream().forEach(item->{
|
|
|
if (StringUtils.isNotEmpty(item.getHomeHotPicture())) {
|
|
|
- List<FileUrlObject> fileUrlObjectList = JsonUtils.parseFileUrlArray(item.getHomeHotPicture(), FileUrlObject.class);
|
|
|
- if (!CollectionUtils.isEmpty(fileUrlObjectList)) {
|
|
|
- ArrayList<String> arrayList = new ArrayList<>();
|
|
|
- //遍历每个元素的数组对象,对元素的url对象进行拼接
|
|
|
- for (FileUrlObject y : fileUrlObjectList) {
|
|
|
- String imgUrlAfterConvert =
|
|
|
- applicationConfig.getHostIpPort() + y.getDownloadUri() + "?id=" + item.getId() + "&fieldName=homeHotPicture&asImage=true&filename=" + y.getFilename();
|
|
|
- arrayList.add(imgUrlAfterConvert);
|
|
|
- }
|
|
|
- item.setHomeHotPicturesAfterConvert(arrayList);
|
|
|
- }
|
|
|
+ item.setHomeHotPicturesAfterConvert(UrlConvertUtils.urlConvert(applicationConfig.getHostIpPort(), item.getHomeHotPicture()));
|
|
|
}
|
|
|
});
|
|
|
|
|
@@ -225,17 +194,7 @@ public class BasicToWebServiceImpl implements BasicToWebService
|
|
|
|
|
|
dataList.stream().forEach(item->{
|
|
|
if(StringUtils.isNotEmpty(item.getTourismUrl())){
|
|
|
- List<FileUrlObject> fileUrlObjectList = JsonUtils.parseFileUrlArray(item.getTourismUrl(), FileUrlObject.class);
|
|
|
- if (!CollectionUtils.isEmpty(fileUrlObjectList)) {
|
|
|
- ArrayList<String> arrayList = new ArrayList<>();
|
|
|
- //遍历每个元素的数组对象,对元素的url对象进行拼接
|
|
|
- for (FileUrlObject y : fileUrlObjectList) {
|
|
|
- String imgUrlAfterConvert =
|
|
|
- applicationConfig.getHostIpPort() + y.getDownloadUri() + "?id=" + item.getId() + "&fieldName=tourismUrl&asImage=true&filename=" + y.getFilename();
|
|
|
- arrayList.add(imgUrlAfterConvert);
|
|
|
- }
|
|
|
- item.setTourismUrlsAfterConvert(arrayList);
|
|
|
- }
|
|
|
+ item.setTourismUrlsAfterConvert(UrlConvertUtils.urlConvert(applicationConfig.getHostIpPort(), item.getTourismUrl()));
|
|
|
}
|
|
|
});
|
|
|
|
|
@@ -252,47 +211,16 @@ public class BasicToWebServiceImpl implements BasicToWebService
|
|
|
|
|
|
if(tourTourismProjectTravelNotesVo != null) {
|
|
|
if (StringUtils.isNotEmpty(tourTourismProjectTravelNotesVo.getTourismUrl())) {
|
|
|
- List<FileUrlObject> fileUrlObjectList = JsonUtils.parseFileUrlArray(tourTourismProjectTravelNotesVo.getTourismUrl(), FileUrlObject.class);
|
|
|
- if (!CollectionUtils.isEmpty(fileUrlObjectList)) {
|
|
|
- ArrayList<String> arrayList = new ArrayList<>();
|
|
|
- //遍历每个元素的数组对象,对元素的url对象进行拼接
|
|
|
- for (FileUrlObject y : fileUrlObjectList) {
|
|
|
- String imgUrlAfterConvert =
|
|
|
- applicationConfig.getHostIpPort() + y.getDownloadUri() + "?id=" + tourTourismProjectTravelNotesVo.getId() + "&fieldName=tourismUrl&asImage=true&filename=" + y.getFilename();
|
|
|
- arrayList.add(imgUrlAfterConvert);
|
|
|
- }
|
|
|
- tourTourismProjectTravelNotesVo.setTourismUrlsAfterConvert(arrayList);
|
|
|
- }
|
|
|
+ tourTourismProjectTravelNotesVo.setTourismUrlsAfterConvert(UrlConvertUtils.urlConvert(applicationConfig.getHostIpPort(), tourTourismProjectTravelNotesVo.getTourismUrl()));
|
|
|
}
|
|
|
|
|
|
if (StringUtils.isNotEmpty(tourTourismProjectTravelNotesVo.getHomeHotPicture())) {
|
|
|
- List<FileUrlObject> fileUrlObjectList = JsonUtils.parseFileUrlArray(tourTourismProjectTravelNotesVo.getHomeHotPicture(), FileUrlObject.class);
|
|
|
- if (!CollectionUtils.isEmpty(fileUrlObjectList)) {
|
|
|
- ArrayList<String> arrayList = new ArrayList<>();
|
|
|
- //遍历每个元素的数组对象,对元素的url对象进行拼接
|
|
|
- for (FileUrlObject y : fileUrlObjectList) {
|
|
|
- String hotPictureUrlsAfterConvert =
|
|
|
- applicationConfig.getHostIpPort() + y.getDownloadUri() + "?id=" + tourTourismProjectTravelNotesVo.getId() + "&fieldName=homeHotPicturesAfterConvert&asImage=true&filename=" + y.getFilename();
|
|
|
- arrayList.add(hotPictureUrlsAfterConvert);
|
|
|
- }
|
|
|
- tourTourismProjectTravelNotesVo.setHomeHotPicturesAfterConvert(arrayList);
|
|
|
- }
|
|
|
+ tourTourismProjectTravelNotesVo.setHomeHotPicturesAfterConvert(UrlConvertUtils.urlConvert(applicationConfig.getHostIpPort(), tourTourismProjectTravelNotesVo.getHomeHotPicture()));
|
|
|
}
|
|
|
|
|
|
if (StringUtils.isNotEmpty(tourTourismProjectTravelNotesVo.getTravelNotesBanner())) {
|
|
|
- List<FileUrlObject> fileUrlObjectList = JsonUtils.parseFileUrlArray(tourTourismProjectTravelNotesVo.getTravelNotesBanner(), FileUrlObject.class);
|
|
|
- if (!CollectionUtils.isEmpty(fileUrlObjectList)) {
|
|
|
- ArrayList<String> arrayList = new ArrayList<>();
|
|
|
- //遍历每个元素的数组对象,对元素的url对象进行拼接
|
|
|
- for (FileUrlObject y : fileUrlObjectList) {
|
|
|
- String hotPictureUrlsAfterConvert =
|
|
|
- applicationConfig.getHostIpPort() + y.getDownloadUri() + "?id=" + tourTourismProjectTravelNotesVo.getId() + "&fieldName=travelNotesBanner&asImage=true&filename=" + y.getFilename();
|
|
|
- arrayList.add(hotPictureUrlsAfterConvert);
|
|
|
- }
|
|
|
- tourTourismProjectTravelNotesVo.setTravelNotesBannerAfterConvert(arrayList);
|
|
|
- }
|
|
|
+ tourTourismProjectTravelNotesVo.setTravelNotesBannerAfterConvert(UrlConvertUtils.urlConvert(applicationConfig.getHostIpPort(), tourTourismProjectTravelNotesVo.getTravelNotesBanner()));
|
|
|
}
|
|
|
-
|
|
|
}
|
|
|
return tourTourismProjectTravelNotesVo;
|
|
|
}
|
|
@@ -303,7 +231,6 @@ public class BasicToWebServiceImpl implements BasicToWebService
|
|
|
|
|
|
TourUserLikeTravelNotes tourUserLikeTravelNotes =
|
|
|
new TourUserLikeTravelNotes();
|
|
|
-
|
|
|
tourUserLikeTravelNotes.setTravelNotesId(travelNotesId);
|
|
|
tourUserLikeTravelNotes.setUserId(TokenData.takeFromRequest().getUserId());
|
|
|
TourTourismProjectTravelNotes tourTourismProjectTravelNotes = tourTourismProjectTravelNotesService.getById(travelNotesId);
|
|
@@ -331,9 +258,7 @@ public class BasicToWebServiceImpl implements BasicToWebService
|
|
|
|
|
|
@Override
|
|
|
public Boolean isLikeTravelNotes(Long travelNotesId){
|
|
|
-
|
|
|
TourUserLikeTravelNotes tourUserLikeTravelNotes = new TourUserLikeTravelNotes();
|
|
|
-
|
|
|
tourUserLikeTravelNotes.setTravelNotesId(travelNotesId);
|
|
|
tourUserLikeTravelNotes.setUserId(TokenData.takeFromRequest().getUserId());
|
|
|
return tourUserLikeTravelNotesService.existByFilter(tourUserLikeTravelNotes);
|