From 65208da0549d09ebe448c0225cc21f680809e4be Mon Sep 17 00:00:00 2001 From: chen-xin-zhi <3588068430@qq.com> Date: Wed, 19 Mar 2025 22:59:46 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=87=E4=BB=B6=E4=B8=8A=E4=BC=A0https?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../controller/other/BannerController.java | 31 ++++++++++++++++--- .../controller/wx/WeChatController.java | 21 +++++++++++-- .../heritage/service/other/BannerService.java | 8 +++++ .../service/other/impl/BannerServiceImpl.java | 23 +++++++++++++- .../wx/WeChatOfficialAccountService.java | 8 +++++ .../WeChatOfficialAccountServiceImpl.java | 17 ++++++++-- src/main/resources/application.yml | 10 +++--- 7 files changed, 104 insertions(+), 14 deletions(-) diff --git a/src/main/java/com/cultural/heritage/controller/other/BannerController.java b/src/main/java/com/cultural/heritage/controller/other/BannerController.java index 8c15512..bfcac6a 100644 --- a/src/main/java/com/cultural/heritage/controller/other/BannerController.java +++ b/src/main/java/com/cultural/heritage/controller/other/BannerController.java @@ -25,7 +25,10 @@ import jakarta.annotation.Resource; import lombok.extern.slf4j.Slf4j; import org.apache.commons.lang3.StringUtils; import org.springframework.beans.BeanUtils; -import org.springframework.web.bind.annotation.*; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; import java.util.List; @@ -121,9 +124,7 @@ public class BannerController { if (bannerQueryRequest == null) throw new BusinessException(ErrorCode.PARAMS_ERROR); long current = bannerQueryRequest.getCurrent(); long pageSize = bannerQueryRequest.getPageSize(); - String type = bannerQueryRequest.getType(); - QueryWrapper queryWrapper = new QueryWrapper<>(); - queryWrapper.eq(StringUtils.isNotBlank(type), "type", type); + QueryWrapper queryWrapper = bannerService.getQueryWrapper(bannerQueryRequest); Page page = bannerService.page(new Page<>(current, pageSize),queryWrapper); List bannerList = page.getRecords(); List bannerVOList = commonService.convertList(bannerList, BannerVO.class); @@ -138,6 +139,28 @@ public class BannerController { + + /** + * Web端管理员根据id查询轮播图 + * @param commonRequest 轮播图id + * @return 轮播图 + */ + @PostMapping("/query/id") + @Operation(summary = "Web端管理员根据id查询轮播图", description = "参数:无,权限:管理员(boss, admin),方法名:listBannerById") + @AuthCheck(mustRole = UserConstant.ADMIN_ROLE) + public BaseResponse listBannerById(@RequestBody CommonRequest commonRequest) { + if (commonRequest == null) throw new BusinessException(ErrorCode.PARAMS_ERROR); + Long id = commonRequest.getId(); + Banner banner = bannerService.getById(id); + BannerVO bannerVO = new BannerVO(); + BeanUtils.copyProperties(banner, bannerVO); + return ResultUtils.success(bannerVO); + } + + + + + /** * 小程序用户根据类型查看轮播图 * @return 轮播图列表 diff --git a/src/main/java/com/cultural/heritage/controller/wx/WeChatController.java b/src/main/java/com/cultural/heritage/controller/wx/WeChatController.java index ffe13c5..6efcc03 100644 --- a/src/main/java/com/cultural/heritage/controller/wx/WeChatController.java +++ b/src/main/java/com/cultural/heritage/controller/wx/WeChatController.java @@ -3,6 +3,7 @@ package com.cultural.heritage.controller.wx; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.cultural.heritage.annotation.AuthCheck; import com.cultural.heritage.common.BaseResponse; @@ -128,7 +129,8 @@ public class WeChatController { if (officialAccountArticleQueryRequest == null) throw new BusinessException(ErrorCode.PARAMS_ERROR); long current = officialAccountArticleQueryRequest.getCurrent(); long pageSize = officialAccountArticleQueryRequest.getPageSize(); - Page page = weChatOfficialAccountService.page(new Page<>(current, pageSize),null); + QueryWrapper queryWrapper = weChatOfficialAccountService.getQueryWrapper(officialAccountArticleQueryRequest); + Page page = weChatOfficialAccountService.page(new Page<>(current, pageSize),queryWrapper); List officialAccountArticleList = page.getRecords(); List officialAccountArticleVOS = commonService.convertList(officialAccountArticleList, OfficialAccountArticleVO.class); Page voPage = new Page<>(); @@ -159,7 +161,22 @@ public class WeChatController { - + /** + * Web端管理员根据id查询文章 + * @param commonRequest 文章id + * @return 文章 + */ + @PostMapping("/query/id") + @Operation(summary = "Web端管理员根据id查询文章", description = "参数:文章id,权限:管理员(boss, admin),方法名:listArticleById") + @AuthCheck(mustRole = UserConstant.ADMIN_ROLE) + public BaseResponse listArticleById(@RequestBody CommonRequest commonRequest) { + if (commonRequest == null) throw new BusinessException(ErrorCode.PARAMS_ERROR); + Long id = commonRequest.getId(); + OfficialAccountArticle officialAccountArticle = weChatOfficialAccountService.getById(id); + OfficialAccountArticleVO officialAccountArticleVO = new OfficialAccountArticleVO(); + BeanUtils.copyProperties(officialAccountArticle, officialAccountArticleVO); + return ResultUtils.success(officialAccountArticleVO); + } diff --git a/src/main/java/com/cultural/heritage/service/other/BannerService.java b/src/main/java/com/cultural/heritage/service/other/BannerService.java index 2b1a6da..8fae1ba 100644 --- a/src/main/java/com/cultural/heritage/service/other/BannerService.java +++ b/src/main/java/com/cultural/heritage/service/other/BannerService.java @@ -1,6 +1,8 @@ package com.cultural.heritage.service.other; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.extension.service.IService; +import com.cultural.heritage.model.dto.banner.BannerQueryRequest; import com.cultural.heritage.model.entity.Banner; public interface BannerService extends IService { @@ -10,4 +12,10 @@ public interface BannerService extends IService { * 校验参数 */ void validBanner(Banner banner, boolean update); + + + /** + * 获取查询条件 + */ + QueryWrapper getQueryWrapper(BannerQueryRequest bannerQueryRequest); } diff --git a/src/main/java/com/cultural/heritage/service/other/impl/BannerServiceImpl.java b/src/main/java/com/cultural/heritage/service/other/impl/BannerServiceImpl.java index 97f127d..13d72c3 100644 --- a/src/main/java/com/cultural/heritage/service/other/impl/BannerServiceImpl.java +++ b/src/main/java/com/cultural/heritage/service/other/impl/BannerServiceImpl.java @@ -1,11 +1,15 @@ package com.cultural.heritage.service.other.impl; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.cultural.heritage.common.ErrorCode; +import com.cultural.heritage.constant.CommonConstant; import com.cultural.heritage.exception.ThrowUtils; import com.cultural.heritage.mapper.BannerMapper; +import com.cultural.heritage.model.dto.banner.BannerQueryRequest; import com.cultural.heritage.model.entity.Banner; import com.cultural.heritage.service.other.BannerService; +import com.cultural.heritage.utils.SqlUtils; import org.apache.commons.lang3.StringUtils; import org.springframework.stereotype.Service; @@ -13,7 +17,9 @@ import org.springframework.stereotype.Service; public class BannerServiceImpl extends ServiceImpl implements BannerService { - + /** + * 校验 + */ @Override public void validBanner(Banner banner, boolean update) { Long id = banner.getId(); @@ -22,4 +28,19 @@ public class BannerServiceImpl extends ServiceImpl impleme ThrowUtils.throwIf(update && id == null, ErrorCode.OPERATION_ERROR, "id参数错误"); ThrowUtils.throwIf(StringUtils.isAnyBlank(type, url), ErrorCode.OPERATION_ERROR, "存在参数为空"); } + + + /** + * 获取查询条件 + */ + @Override + public QueryWrapper getQueryWrapper(BannerQueryRequest bannerQueryRequest) { + QueryWrapper queryWrapper = new QueryWrapper<>(); + String type = bannerQueryRequest.getType(); + String sortField = bannerQueryRequest.getSortField(); + String sortOrder = bannerQueryRequest.getSortOrder(); + queryWrapper.eq(StringUtils.isNotBlank(type), "type", type); + queryWrapper.orderBy(SqlUtils.validSortField(sortField), sortOrder.equals(CommonConstant.SORT_ORDER_ASC), sortField); + return queryWrapper; + } } diff --git a/src/main/java/com/cultural/heritage/service/wx/WeChatOfficialAccountService.java b/src/main/java/com/cultural/heritage/service/wx/WeChatOfficialAccountService.java index 3e72cdb..c9650a5 100644 --- a/src/main/java/com/cultural/heritage/service/wx/WeChatOfficialAccountService.java +++ b/src/main/java/com/cultural/heritage/service/wx/WeChatOfficialAccountService.java @@ -1,6 +1,8 @@ package com.cultural.heritage.service.wx; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.extension.service.IService; +import com.cultural.heritage.model.dto.article.OfficialAccountArticleQueryRequest; import com.cultural.heritage.model.entity.OfficialAccountArticle; public interface WeChatOfficialAccountService extends IService { @@ -9,4 +11,10 @@ public interface WeChatOfficialAccountService extends IService getQueryWrapper(OfficialAccountArticleQueryRequest officialAccountArticleQueryRequest); } diff --git a/src/main/java/com/cultural/heritage/service/wx/impl/WeChatOfficialAccountServiceImpl.java b/src/main/java/com/cultural/heritage/service/wx/impl/WeChatOfficialAccountServiceImpl.java index 99a764a..fb5625c 100644 --- a/src/main/java/com/cultural/heritage/service/wx/impl/WeChatOfficialAccountServiceImpl.java +++ b/src/main/java/com/cultural/heritage/service/wx/impl/WeChatOfficialAccountServiceImpl.java @@ -1,11 +1,16 @@ package com.cultural.heritage.service.wx.impl; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.cultural.heritage.common.ErrorCode; +import com.cultural.heritage.constant.CommonConstant; +import com.cultural.heritage.exception.BusinessException; import com.cultural.heritage.exception.ThrowUtils; import com.cultural.heritage.mapper.OfficialAccountArticleMapper; +import com.cultural.heritage.model.dto.article.OfficialAccountArticleQueryRequest; import com.cultural.heritage.model.entity.OfficialAccountArticle; import com.cultural.heritage.service.wx.WeChatOfficialAccountService; +import com.cultural.heritage.utils.SqlUtils; import org.apache.commons.lang3.StringUtils; import org.springframework.stereotype.Service; @@ -25,11 +30,19 @@ public class WeChatOfficialAccountServiceImpl extends ServiceImpl getQueryWrapper(OfficialAccountArticleQueryRequest officialAccountArticleQueryRequest) { + QueryWrapper queryWrapper = new QueryWrapper<>(); + String sortField = officialAccountArticleQueryRequest.getSortField(); + String sortOrder = officialAccountArticleQueryRequest.getSortOrder(); + queryWrapper.orderBy(SqlUtils.validSortField(sortField), sortOrder.equals(CommonConstant.SORT_ORDER_ASC), sortField); + return queryWrapper; + } } diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index f3cae0b..ab1d76b 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -75,11 +75,11 @@ springdoc: server: - port: 8888 - ssl: - key-store: classpath:carboner.cn.jks - key-store-password: 6gsn1hke4m4f7 - key-store-type: JKS + port: 9092 +# ssl: +# key-store: classpath:carboner.cn.jks +# key-store-password: 6gsn1hke4m4f7 +# key-store-type: JKS servlet: context-path: /api