From 8dcf105e052d001906c23ae615a227fcd15673a7 Mon Sep 17 00:00:00 2001
From: chen-xin-zhi <3588068430@qq.com>
Date: Thu, 31 Oct 2024 19:18:10 +0800
Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E6=88=90=E4=BA=86=E6=96=87=E4=BB=B6?=
=?UTF-8?q?=E4=B8=8A=E4=BC=A0?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pom.xml | 1 +
.../heritage/aop/AuthInterceptor.java | 2 +-
.../heritage/config/HweiOBSConfig.java | 70 +++++++
.../heritage/constant/FileConstant.java | 15 ++
.../controller/address/AddressController.java | 121 +++++++++++
.../controller/file/FileController.java | 122 +++++++++++
.../CategoryController.java | 55 ++++-
.../{operategood => good}/GoodController.java | 18 +-
.../{userinfo => user}/UserController.java | 18 +-
.../heritage/mapper/AddressMapper.java | 8 +
.../model/dto/address/AddressAddRequest.java | 48 +++++
.../dto/address/AddressUpdateRequest.java | 53 +++++
.../model/dto/file/UploadFileRequest.java | 19 ++
.../model/dto/good/GoodUpdateRequest.java | 7 +
.../heritage/model/entity/Address.java | 63 ++++++
.../model/enums/FileUploadBizEnum.java | 58 ++++++
.../service/address/AddressService.java | 8 +
.../address/impl/AddressServiceImpl.java | 12 ++
.../service/file/IHweiYunOBSService.java | 42 ++++
.../file/impl/HweiYunOBSServiceImpl.java | 190 ++++++++++++++++++
.../service/good/CategoryService.java | 22 ++
.../{operategood => good}/GoodService.java | 10 +-
.../good/impl/CategoryServiceImpl.java | 43 ++++
.../impl/GoodServiceImpl.java | 27 ++-
.../service/operategood/CategoryService.java | 9 -
.../operategood/impl/CategoryServiceImpl.java | 11 -
.../{userinfo => user}/UserService.java | 2 +-
.../impl/UserServiceImpl.java | 5 +-
src/main/resources/application.yml | 18 +-
src/main/resources/mapper/AddressMapper.xml | 7 +
30 files changed, 1017 insertions(+), 67 deletions(-)
create mode 100644 src/main/java/com/cultural/heritage/config/HweiOBSConfig.java
create mode 100644 src/main/java/com/cultural/heritage/constant/FileConstant.java
create mode 100644 src/main/java/com/cultural/heritage/controller/address/AddressController.java
create mode 100644 src/main/java/com/cultural/heritage/controller/file/FileController.java
rename src/main/java/com/cultural/heritage/controller/{operategood => good}/CategoryController.java (58%)
rename src/main/java/com/cultural/heritage/controller/{operategood => good}/GoodController.java (90%)
rename src/main/java/com/cultural/heritage/controller/{userinfo => user}/UserController.java (95%)
create mode 100644 src/main/java/com/cultural/heritage/mapper/AddressMapper.java
create mode 100644 src/main/java/com/cultural/heritage/model/dto/address/AddressAddRequest.java
create mode 100644 src/main/java/com/cultural/heritage/model/dto/address/AddressUpdateRequest.java
create mode 100644 src/main/java/com/cultural/heritage/model/dto/file/UploadFileRequest.java
create mode 100644 src/main/java/com/cultural/heritage/model/entity/Address.java
create mode 100644 src/main/java/com/cultural/heritage/model/enums/FileUploadBizEnum.java
create mode 100644 src/main/java/com/cultural/heritage/service/address/AddressService.java
create mode 100644 src/main/java/com/cultural/heritage/service/address/impl/AddressServiceImpl.java
create mode 100644 src/main/java/com/cultural/heritage/service/file/IHweiYunOBSService.java
create mode 100644 src/main/java/com/cultural/heritage/service/file/impl/HweiYunOBSServiceImpl.java
create mode 100644 src/main/java/com/cultural/heritage/service/good/CategoryService.java
rename src/main/java/com/cultural/heritage/service/{operategood => good}/GoodService.java (69%)
create mode 100644 src/main/java/com/cultural/heritage/service/good/impl/CategoryServiceImpl.java
rename src/main/java/com/cultural/heritage/service/{operategood => good}/impl/GoodServiceImpl.java (74%)
delete mode 100644 src/main/java/com/cultural/heritage/service/operategood/CategoryService.java
delete mode 100644 src/main/java/com/cultural/heritage/service/operategood/impl/CategoryServiceImpl.java
rename src/main/java/com/cultural/heritage/service/{userinfo => user}/UserService.java (95%)
rename src/main/java/com/cultural/heritage/service/{userinfo => user}/impl/UserServiceImpl.java (97%)
create mode 100644 src/main/resources/mapper/AddressMapper.xml
diff --git a/pom.xml b/pom.xml
index de6c7a6..c875b77 100644
--- a/pom.xml
+++ b/pom.xml
@@ -142,6 +142,7 @@
1.6.2
+
cn.hutool
hutool-all
diff --git a/src/main/java/com/cultural/heritage/aop/AuthInterceptor.java b/src/main/java/com/cultural/heritage/aop/AuthInterceptor.java
index 1dc384e..6541263 100644
--- a/src/main/java/com/cultural/heritage/aop/AuthInterceptor.java
+++ b/src/main/java/com/cultural/heritage/aop/AuthInterceptor.java
@@ -6,7 +6,7 @@ import com.cultural.heritage.constant.UserConstant;
import com.cultural.heritage.exception.BusinessException;
import com.cultural.heritage.model.entity.User;
import com.cultural.heritage.model.enums.UserRoleEnum;
-import com.cultural.heritage.service.userinfo.UserService;
+import com.cultural.heritage.service.user.UserService;
import io.micrometer.common.util.StringUtils;
import jakarta.annotation.Resource;
import jakarta.servlet.http.HttpServletRequest;
diff --git a/src/main/java/com/cultural/heritage/config/HweiOBSConfig.java b/src/main/java/com/cultural/heritage/config/HweiOBSConfig.java
new file mode 100644
index 0000000..ae4a740
--- /dev/null
+++ b/src/main/java/com/cultural/heritage/config/HweiOBSConfig.java
@@ -0,0 +1,70 @@
+package com.cultural.heritage.config;
+
+import com.obs.services.ObsClient;
+import com.obs.services.exception.ObsException;
+import lombok.Data;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.context.annotation.Configuration;
+
+import java.text.SimpleDateFormat;
+import java.util.Date;
+
+@Data
+@Configuration
+public class HweiOBSConfig {
+
+
+ /**
+ * 访问密钥AK
+ */
+ @Value("${hwyun.obs.accessKey}")
+ private String accessKey;
+
+ /**
+ * 访问密钥SK
+ */
+ @Value("${hwyun.obs.securityKey}")
+ private String securityKey;
+
+ /**
+ * 终端节点
+ */
+ @Value("${hwyun.obs.endPoint}")
+ private String endPoint;
+
+ /**
+ * 桶
+ */
+ @Value("${hwyun.obs.bucketName}")
+ private String bucketName;
+
+ /**
+ * @Description 获取OBS客户端实例
+ * @return: com.obs.services.ObsClient
+ */
+ public ObsClient getInstance() {
+ return new ObsClient(accessKey, securityKey, endPoint);
+ }
+
+ /**
+ * @Description 销毁OBS客户端实例
+ * @param: obsClient
+ */
+ public void destroy(ObsClient obsClient){
+ try {
+ obsClient.close();
+ } catch (ObsException e) {
+ } catch (Exception e) {
+ }
+ }
+
+ /**
+ * @Description 微服务文件存放路径
+ * @return: java.lang.String
+ */
+ public static String getObjectKey() {
+ // 项目或者服务名称 + 日期存储方式
+ return "Hwei" + "/" + new SimpleDateFormat("yyyy-MM-dd").format(new Date() )+ "/";
+ }
+}
+
diff --git a/src/main/java/com/cultural/heritage/constant/FileConstant.java b/src/main/java/com/cultural/heritage/constant/FileConstant.java
new file mode 100644
index 0000000..02fa61f
--- /dev/null
+++ b/src/main/java/com/cultural/heritage/constant/FileConstant.java
@@ -0,0 +1,15 @@
+package com.cultural.heritage.constant;
+
+public interface FileConstant {
+
+ /**
+ * 服务器访问地址
+ */
+ String SERVER_HOST = "/static/img";
+
+
+ /**
+ * 服务器上传路径
+ */
+ String SERVER_UPLOAD_DIR = "D:\\匠承非遗文件上传\\img";
+}
diff --git a/src/main/java/com/cultural/heritage/controller/address/AddressController.java b/src/main/java/com/cultural/heritage/controller/address/AddressController.java
new file mode 100644
index 0000000..a462f14
--- /dev/null
+++ b/src/main/java/com/cultural/heritage/controller/address/AddressController.java
@@ -0,0 +1,121 @@
+package com.cultural.heritage.controller.address;
+
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
+import com.cultural.heritage.common.BaseResponse;
+import com.cultural.heritage.common.ErrorCode;
+import com.cultural.heritage.common.ResultUtils;
+import com.cultural.heritage.exception.BusinessException;
+import com.cultural.heritage.exception.ThrowUtils;
+import com.cultural.heritage.model.dto.CommonRequest;
+import com.cultural.heritage.model.dto.address.AddressAddRequest;
+import com.cultural.heritage.model.dto.address.AddressUpdateRequest;
+import com.cultural.heritage.model.entity.Address;
+import com.cultural.heritage.service.address.AddressService;
+import io.swagger.v3.oas.annotations.tags.Tag;
+import jakarta.annotation.Resource;
+import lombok.extern.slf4j.Slf4j;
+import org.springframework.beans.BeanUtils;
+import org.springframework.util.CollectionUtils;
+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.ArrayList;
+import java.util.List;
+
+@RestController
+@RequestMapping("/address")
+@Slf4j
+@Tag(name = "地址接口")
+public class AddressController {
+
+
+ @Resource
+ private AddressService addressService;
+
+
+ /**
+ * 添加地址信息
+ * @param addressAddRequest 地址添加请求体
+ * @return 是否添加成功
+ */
+ @PostMapping("/add")
+ public BaseResponse addAddress(@RequestBody AddressAddRequest addressAddRequest) {
+ if (addressAddRequest == null) {
+ throw new BusinessException(ErrorCode.PARAMS_ERROR);
+ }
+ Address address = new Address();
+ BeanUtils.copyProperties(addressAddRequest, address);
+ boolean save = addressService.save(address);
+ if (!save) {
+ throw new BusinessException(ErrorCode.OPERATION_ERROR);
+ }
+ return ResultUtils.success(true);
+ }
+
+
+
+ /**
+ * 删除地址信息
+ * @param deleteRequest 地址删除请求体
+ * @return 是否成功删除
+ */
+ @PostMapping("/delete")
+ public BaseResponse delAddress(@RequestBody CommonRequest deleteRequest) {
+ if (deleteRequest == null || deleteRequest.getId() == null) {
+ throw new BusinessException(ErrorCode.PARAMS_ERROR);
+ }
+ Long id = deleteRequest.getId();
+ boolean result = addressService.removeById(id);
+ ThrowUtils.throwIf(!result, ErrorCode.OPERATION_ERROR);
+ return ResultUtils.success(true);
+ }
+
+
+
+
+ /**
+ * 更新地址信息
+ * @param addressUpdateRequest 地址更新请求体
+ * @return 是否更新成功
+ */
+ @PostMapping("/update")
+ public BaseResponse updateAddress(@RequestBody AddressUpdateRequest addressUpdateRequest) {
+ if (addressUpdateRequest == null || addressUpdateRequest.getId() == null) {
+ throw new BusinessException(ErrorCode.PARAMS_ERROR);
+ }
+ Address address = new Address();
+ BeanUtils.copyProperties(addressUpdateRequest, address);
+ System.out.println(address);
+ boolean result = addressService.updateById(address);
+ ThrowUtils.throwIf(!result, ErrorCode.OPERATION_ERROR);
+ return ResultUtils.success(true);
+ }
+
+
+
+
+ /**
+ * 查询用户地址信息
+ * @param addressQueryRequest 地址查询请求体
+ * @return 用户地址列表
+ */
+ @PostMapping("/list")
+ public BaseResponse> listAddress(@RequestBody CommonRequest addressQueryRequest) {
+ if (addressQueryRequest == null || addressQueryRequest.getId() == null) {
+ throw new BusinessException(ErrorCode.PARAMS_ERROR);
+ }
+ Long id = addressQueryRequest.getId();
+ QueryWrapper addressQueryWrapper = new QueryWrapper<>();
+ addressQueryWrapper.eq("userId", id);
+ List list = addressService.list(addressQueryWrapper);
+ if (CollectionUtils.isEmpty(list)) {
+ list = new ArrayList<>();
+ }
+ return ResultUtils.success(list);
+ }
+
+
+
+}
diff --git a/src/main/java/com/cultural/heritage/controller/file/FileController.java b/src/main/java/com/cultural/heritage/controller/file/FileController.java
new file mode 100644
index 0000000..4892f58
--- /dev/null
+++ b/src/main/java/com/cultural/heritage/controller/file/FileController.java
@@ -0,0 +1,122 @@
+package com.cultural.heritage.controller.file;
+
+import cn.hutool.core.io.FileUtil;
+import com.cultural.heritage.common.BaseResponse;
+import com.cultural.heritage.common.ErrorCode;
+import com.cultural.heritage.common.ResultUtils;
+import com.cultural.heritage.constant.FileConstant;
+import com.cultural.heritage.exception.BusinessException;
+import com.cultural.heritage.model.dto.file.UploadFileRequest;
+import com.cultural.heritage.model.entity.User;
+import com.cultural.heritage.model.enums.FileUploadBizEnum;
+import com.cultural.heritage.service.file.IHweiYunOBSService;
+import com.cultural.heritage.service.user.UserService;
+import io.swagger.v3.oas.annotations.tags.Tag;
+import jakarta.annotation.Resource;
+import jakarta.servlet.http.HttpServletRequest;
+import lombok.Data;
+import lombok.extern.slf4j.Slf4j;
+import org.apache.commons.lang3.RandomStringUtils;
+import org.springframework.web.bind.annotation.*;
+import org.springframework.web.multipart.MultipartFile;
+
+import java.io.File;
+import java.io.IOException;
+import java.util.Arrays;
+import java.util.Random;
+
+@RestController
+@RequestMapping("/file")
+@Slf4j
+@Tag(name = "文件上传接口")
+public class FileController {
+
+
+ @Resource
+ private UserService userService;
+
+
+ @Resource
+ private IHweiYunOBSService iHweiYunOBSService;
+
+
+ /**
+ * 未登录的情况下的文件上传
+ * @param multipartFile 文件上传参数
+ * @param uploadFileRequest 文件业务类型请求体
+ * @return 图片可访问地址
+ */
+ @PostMapping("/upload/server/not_login")
+ private BaseResponse uploadServerFileNotLogin(@RequestPart("file")MultipartFile multipartFile, UploadFileRequest uploadFileRequest) {
+ //获取业务名称
+ String biz = uploadFileRequest.getBiz();
+ FileUploadBizEnum fileUploadBizEnum = FileUploadBizEnum.getEnumByValue(biz);
+ if (fileUploadBizEnum == null) {
+ throw new BusinessException(ErrorCode.PARAMS_ERROR, "业务名称错误");
+ }
+ // 校验文件
+ validFile(multipartFile, fileUploadBizEnum);
+ //文件目录:根据业务、用户来划分
+ String uuid = RandomStringUtils.randomAlphabetic(8);
+ String filename = uuid + "-" + multipartFile.getOriginalFilename();
+ String filepath = String.format("/%s/%s", fileUploadBizEnum.getValue(), filename);
+
+ // 判断目录是否存在
+ File file = new File(FileConstant.SERVER_UPLOAD_DIR, filepath);
+ if (!file.exists()) {
+ // 创建目录
+ boolean mkdirs = file.mkdirs();
+ if (!mkdirs) {
+ throw new BusinessException(ErrorCode.SYSTEM_ERROR, "创建目录失败");
+ }
+ }
+ //返回可访问地址
+ String test = iHweiYunOBSService.fileUpload(multipartFile, "feiyi" + filepath);
+ return ResultUtils.success(test);
+ }
+
+
+ @PostMapping("/upload/server")
+ public BaseResponse uploadServerFile(@RequestPart MultipartFile multipartFile, UploadFileRequest uploadFileRequest, HttpServletRequest request) {
+ //获取业务名称
+ String biz = uploadFileRequest.getBiz();
+ FileUploadBizEnum fileUploadBizEnum = FileUploadBizEnum.getEnumByValue(biz);
+ if (fileUploadBizEnum == null) {
+ throw new BusinessException(ErrorCode.PARAMS_ERROR, "业务名称错误");
+ }
+ // 校验文件
+ validFile(multipartFile, fileUploadBizEnum);
+ // 校验用户是否登录
+ User loginUser = userService.getLoginUser(request);
+ if (loginUser == null) {
+ throw new BusinessException(ErrorCode.NOT_LOGIN_ERROR, "未登录");
+ }
+ // 文件目录:根据业务、用户来划分
+ String uuid = RandomStringUtils.randomAlphabetic(8);
+ String s = uuid + "-" + multipartFile.getOriginalFilename();
+ return null;
+ }
+
+
+ /**
+ * 校验文件
+ *
+ * @param multipartFile 文件
+ * @param fileUploadBizEnum 业务类型
+ */
+ private void validFile(MultipartFile multipartFile, FileUploadBizEnum fileUploadBizEnum) {
+ //文件大小
+ long fileSize = multipartFile.getSize();
+ //文件后缀
+ String fileSuffix = FileUtil.getSuffix(multipartFile.getOriginalFilename());
+ final long LIMIT = 512 * 1024L;
+ if (fileSize > LIMIT) {
+ throw new BusinessException(ErrorCode.PARAMS_ERROR, "文件大小不能超过512K");
+ }
+ if (!Arrays.asList("jpeg", "jpg", "svg", "png", "webp").contains(fileSuffix)) {
+ throw new BusinessException(ErrorCode.PARAMS_ERROR, "文件类型错误");
+ }
+ }
+
+
+}
diff --git a/src/main/java/com/cultural/heritage/controller/operategood/CategoryController.java b/src/main/java/com/cultural/heritage/controller/good/CategoryController.java
similarity index 58%
rename from src/main/java/com/cultural/heritage/controller/operategood/CategoryController.java
rename to src/main/java/com/cultural/heritage/controller/good/CategoryController.java
index fa447c1..9bbeeb3 100644
--- a/src/main/java/com/cultural/heritage/controller/operategood/CategoryController.java
+++ b/src/main/java/com/cultural/heritage/controller/good/CategoryController.java
@@ -1,7 +1,6 @@
-package com.cultural.heritage.controller.operategood;
+package com.cultural.heritage.controller.good;
-import com.cultural.heritage.annotation.AuthCheck;
import com.cultural.heritage.common.BaseResponse;
import com.cultural.heritage.common.ErrorCode;
import com.cultural.heritage.common.ResultUtils;
@@ -10,17 +9,22 @@ import com.cultural.heritage.exception.ThrowUtils;
import com.cultural.heritage.model.dto.CommonRequest;
import com.cultural.heritage.model.dto.category.CategoryAddRequest;
import com.cultural.heritage.model.entity.Category;
-import com.cultural.heritage.service.operategood.CategoryService;
+import com.cultural.heritage.model.entity.Good;
+import com.cultural.heritage.service.good.CategoryService;
+import com.cultural.heritage.service.good.GoodService;
import io.swagger.v3.oas.annotations.tags.Tag;
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.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.HashMap;
import java.util.List;
+import java.util.Map;
@RestController
@RequestMapping("/category")
@@ -32,6 +36,12 @@ public class CategoryController {
private CategoryService categoryService;
+
+ @Resource
+ private GoodService goodService;
+
+
+
/**
* 添加商品类别
* @param categoryAddRequest 类别添加请求体
@@ -42,6 +52,11 @@ public class CategoryController {
if (categoryAddRequest == null) {
throw new BusinessException(ErrorCode.PARAMS_ERROR);
}
+ String typeName = categoryAddRequest.getTypeName();
+ List typeNameList = categoryService.getTypeNameList();
+ if (typeNameList.contains(typeName)) {
+ throw new BusinessException(ErrorCode.OPERATION_ERROR, "已存在该类别");
+ }
Category category = new Category();
BeanUtils.copyProperties(categoryAddRequest, category);
boolean save = categoryService.save(category);
@@ -59,7 +74,7 @@ public class CategoryController {
*/
@PostMapping("/delete")
public BaseResponse deleteCategory(@RequestBody CommonRequest deleteCategoryRequest) {
- if (deleteCategoryRequest == null) {
+ if (deleteCategoryRequest == null || deleteCategoryRequest.getId() == null) {
throw new BusinessException(ErrorCode.PARAMS_ERROR);
}
Long id = deleteCategoryRequest.getId();
@@ -77,9 +92,14 @@ public class CategoryController {
*/
@PostMapping("/update")
public BaseResponse updateCategory(@RequestBody Category category) {
- if (category == null) {
+ if (category == null || category.getId() == null) {
throw new BusinessException(ErrorCode.PARAMS_ERROR);
}
+ String typeName = category.getTypeName();
+ List typeNameList = categoryService.getTypeNameList();
+ if (typeNameList.contains(typeName)) {
+ throw new BusinessException(ErrorCode.OPERATION_ERROR, "已存在该类别");
+ }
boolean result = categoryService.updateById(category);
ThrowUtils.throwIf(!result, ErrorCode.OPERATION_ERROR);
return ResultUtils.success(true, "类别更新成功");
@@ -87,14 +107,27 @@ public class CategoryController {
/**
- * 查询商品类别
- * @return 类别列表
+ * 根据类别查询商品列表
+ * @param categoryQueryRequest 类别查询请求体
+ * @return 当前类别的商品列表
*/
- @PostMapping("/list")
- public BaseResponse> listCategory() {
- List list = categoryService.list();
- return ResultUtils.success(list);
+ @PostMapping("/list/type")
+ public BaseResponse