123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250 |
- package com.fuint.module.backendApi.controller;
- import com.fuint.common.Constants;
- import com.fuint.common.dto.AccountInfo;
- import com.fuint.common.dto.GoodsCateDto;
- import com.fuint.common.enums.StatusEnum;
- import com.fuint.common.service.AccountService;
- import com.fuint.common.service.CateService;
- import com.fuint.common.service.SettingService;
- import com.fuint.common.service.StoreService;
- import com.fuint.common.util.CommonUtil;
- import com.fuint.common.util.TokenUtil;
- import com.fuint.framework.exception.BusinessCheckException;
- import com.fuint.framework.pagination.PaginationRequest;
- import com.fuint.framework.pagination.PaginationResponse;
- import com.fuint.framework.web.BaseController;
- import com.fuint.framework.web.ResponseObject;
- import com.fuint.repository.model.MtGoodsCate;
- import com.fuint.repository.model.MtStore;
- import com.fuint.repository.model.TAccount;
- import com.fuint.utils.StringUtil;
- import io.swagger.annotations.Api;
- import io.swagger.annotations.ApiOperation;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.web.bind.annotation.*;
- import javax.servlet.http.HttpServletRequest;
- import java.util.HashMap;
- import java.util.List;
- import java.util.Map;
- /**
- * 商品分类管理controller
- *
- * Created by FSQ
- * CopyRight https://www.fuint.cn
- */
- @Api(tags="管理端-商品分类相关接口")
- @RestController
- @RequestMapping(value = "/backendApi/goods/cate")
- public class BackendCateController extends BaseController {
- /**
- * 商品分类服务接口
- */
- @Autowired
- private CateService cateService;
- /**
- * 配置服务接口
- * */
- @Autowired
- private SettingService settingService;
- /**
- * 后台账户服务接口
- */
- @Autowired
- private AccountService accountService;
- /**
- * 店铺服务接口
- */
- @Autowired
- private StoreService storeService;
- /**
- * 获取商品分类列表
- *
- * @param request
- * @return
- * @throws BusinessCheckException
- */
- @ApiOperation(value = "获取商品分类列表")
- @RequestMapping(value = "/list", method = RequestMethod.GET)
- @CrossOrigin
- public ResponseObject list(HttpServletRequest request) throws BusinessCheckException {
- String token = request.getHeader("Access-Token");
- Integer page = request.getParameter("page") == null ? Constants.PAGE_NUMBER : Integer.parseInt(request.getParameter("page"));
- Integer pageSize = request.getParameter("pageSize") == null ? Constants.PAGE_SIZE : Integer.parseInt(request.getParameter("pageSize"));
- String name = request.getParameter("name");
- String status = request.getParameter("status");
- String searchStoreId = request.getParameter("storeId");
- AccountInfo accountInfo = TokenUtil.getAccountInfoByToken(token);
- if (accountInfo == null) {
- return getFailureResult(1001, "请先登录");
- }
- TAccount account = accountService.getAccountInfoById(accountInfo.getId());
- Integer storeId = account.getStoreId() == null ? 0 : account.getStoreId();
- PaginationRequest paginationRequest = new PaginationRequest();
- paginationRequest.setCurrentPage(page);
- paginationRequest.setPageSize(pageSize);
- Map<String, Object> params = new HashMap<>();
- if (StringUtil.isNotEmpty(name)) {
- params.put("name", name);
- }
- if (StringUtil.isNotEmpty(status)) {
- params.put("status", status);
- }
- if (StringUtil.isNotEmpty(searchStoreId)) {
- params.put("storeId", searchStoreId);
- }
- if (storeId > 0) {
- params.put("storeId", storeId);
- }
- if (accountInfo.getMerchantId() != null && accountInfo.getMerchantId() > 0) {
- params.put("merchantId", accountInfo.getMerchantId());
- }
- paginationRequest.setSearchParams(params);
- paginationRequest.setSortColumn(new String[]{"sort asc", "status asc"});
- PaginationResponse<GoodsCateDto> paginationResponse = cateService.queryCateListByPagination(paginationRequest);
- Map<String, Object> paramsStore = new HashMap<>();
- paramsStore.put("status", StatusEnum.ENABLED.getKey());
- if (storeId != null && storeId > 0) {
- paramsStore.put("storeId", storeId.toString());
- }
- if (accountInfo.getMerchantId() != null && accountInfo.getMerchantId() > 0) {
- paramsStore.put("merchantId", accountInfo.getMerchantId());
- }
- List<MtStore> storeList = storeService.queryStoresByParams(paramsStore);
- String imagePath = settingService.getUploadBasePath();
- Map<String, Object> result = new HashMap<>();
- result.put("imagePath", imagePath);
- result.put("storeList", storeList);
- result.put("paginationResponse", paginationResponse);
- return getSuccessResult(result);
- }
- /**
- * 更新商品分类状态
- *
- * @return
- */
- @ApiOperation(value = "更新商品分类状态")
- @RequestMapping(value = "/updateStatus", method = RequestMethod.POST)
- @CrossOrigin
- public ResponseObject updateStatus(HttpServletRequest request, @RequestBody Map<String, Object> params) throws BusinessCheckException {
- String token = request.getHeader("Access-Token");
- String status = params.get("status") != null ? params.get("status").toString() : StatusEnum.ENABLED.getKey();
- Integer id = params.get("id") == null ? 0 : Integer.parseInt(params.get("id").toString());
- AccountInfo accountInfo = TokenUtil.getAccountInfoByToken(token);
- if (accountInfo == null) {
- return getFailureResult(1001, "请先登录");
- }
- MtGoodsCate mtCate = cateService.queryCateById(id);
- if (mtCate == null) {
- return getFailureResult(201, "该类别不存在");
- }
- String operator = accountInfo.getAccountName();
- MtGoodsCate cate = new MtGoodsCate();
- cate.setOperator(operator);
- cate.setId(id);
- cate.setStatus(status);
- try {
- cateService.updateCate(cate);
- } catch (BusinessCheckException e) {
- return getFailureResult(201, e.getMessage() == null ? "操作失败" : e.getMessage());
- }
- return getSuccessResult(true);
- }
- /**
- * 保存商品分类
- *
- * @param request HttpServletRequest对象
- * @return
- */
- @ApiOperation(value = "保存商品分类")
- @RequestMapping(value = "/save", method = RequestMethod.POST)
- public ResponseObject save(HttpServletRequest request, @RequestBody Map<String, Object> params) throws BusinessCheckException {
- String token = request.getHeader("Access-Token");
- String id = params.get("id") == null ? "" : params.get("id").toString();
- String name = params.get("name") == null ? "" : CommonUtil.replaceXSS(params.get("name").toString());
- String description = params.get("description") == null ? "" : CommonUtil.replaceXSS(params.get("description").toString());
- String logo = params.get("logo") == null ? "" : CommonUtil.replaceXSS(params.get("logo").toString());
- String sort = params.get("sort") == null ? "0" : params.get("sort").toString();
- String status = params.get("status") == null ? StatusEnum.ENABLED.getKey() : params.get("status").toString();
- Integer storeId = (params.get("storeId") == null || StringUtil.isEmpty(params.get("storeId").toString())) ? 0 : Integer.parseInt(params.get("storeId").toString());
- AccountInfo accountDto = TokenUtil.getAccountInfoByToken(token);
- if (accountDto == null) {
- return getFailureResult(1001, "请先登录");
- }
- Integer myStoreId = accountDto.getStoreId();
- if (myStoreId > 0) {
- storeId = myStoreId;
- }
- MtGoodsCate info = new MtGoodsCate();
- info.setName(name);
- info.setDescription(description);
- info.setLogo(logo);
- info.setSort(Integer.parseInt(sort));
- info.setStatus(status);
- info.setMerchantId(accountDto.getMerchantId());
- info.setStoreId(storeId);
- String operator = accountDto.getAccountName();
- info.setOperator(operator);
- if (StringUtil.isNotEmpty(id)) {
- info.setId(Integer.parseInt(id));
- cateService.updateCate(info);
- } else {
- cateService.addCate(info);
- }
- return getSuccessResult(true);
- }
- /**
- * 商品分类详情
- *
- * @param request
- * @return
- */
- @ApiOperation(value = "商品分类详情")
- @RequestMapping(value = "/info/{id}", method = RequestMethod.GET)
- @CrossOrigin
- public ResponseObject info(HttpServletRequest request, @PathVariable("id") Integer id) throws BusinessCheckException {
- String token = request.getHeader("Access-Token");
- AccountInfo accountDto = TokenUtil.getAccountInfoByToken(token);
- if (accountDto == null) {
- return getFailureResult(1001, "请先登录");
- }
- MtGoodsCate mtCate = cateService.queryCateById(id);
- String imagePath = settingService.getUploadBasePath();
- Map<String, Object> result = new HashMap<>();
- result.put("cateInfo", mtCate);
- result.put("imagePath", imagePath);
- return getSuccessResult(result);
- }
- }
|