From f991c73f56f35665bcbe8ce2252c04ea82032b10 Mon Sep 17 00:00:00 2001
From: hjl <1657978663@qq.com>
Date: 星期一, 27 五月 2024 18:06:31 +0800
Subject: [PATCH] feat: 修复登录bug;数据校验规则优化

---
 ruoyi-service/ruoyi-goods/src/main/java/com/ruoyi/goods/service/impl/TGoodsServiceImpl.java |  110 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 110 insertions(+), 0 deletions(-)

diff --git a/ruoyi-service/ruoyi-goods/src/main/java/com/ruoyi/goods/service/impl/TGoodsServiceImpl.java b/ruoyi-service/ruoyi-goods/src/main/java/com/ruoyi/goods/service/impl/TGoodsServiceImpl.java
index 834cdda..ab3061e 100644
--- a/ruoyi-service/ruoyi-goods/src/main/java/com/ruoyi/goods/service/impl/TGoodsServiceImpl.java
+++ b/ruoyi-service/ruoyi-goods/src/main/java/com/ruoyi/goods/service/impl/TGoodsServiceImpl.java
@@ -1,10 +1,30 @@
 package com.ruoyi.goods.service.impl;
 
 import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import com.ruoyi.common.core.constant.Constants;
+import com.ruoyi.common.core.constant.RedisConstants;
+import com.ruoyi.common.core.exception.GlobalException;
+import com.ruoyi.common.security.service.TokenService;
+import com.ruoyi.goods.domain.Recipient;
 import com.ruoyi.goods.domain.TGoods;
+import com.ruoyi.goods.domain.TOrder;
+import com.ruoyi.goods.dto.GoodExchangeDTO;
 import com.ruoyi.goods.mapper.TGoodsMapper;
 import com.ruoyi.goods.service.ITGoodsService;
+import com.ruoyi.goods.service.ITOrderService;
+import com.ruoyi.goods.vo.GoodDetailVO;
+import com.ruoyi.goods.vo.TGoodsVO;
+import com.ruoyi.study.api.domain.TUser;
+import com.ruoyi.study.api.feignClient.StudyClient;
+import org.redisson.api.RSemaphore;
+import org.redisson.api.RedissonClient;
 import org.springframework.stereotype.Service;
+import org.springframework.transaction.annotation.Transactional;
+
+import javax.annotation.Resource;
+import java.util.Date;
+import java.util.List;
+import java.util.stream.Collectors;
 
 /**
  * <p>
@@ -17,4 +37,94 @@
 @Service
 public class TGoodsServiceImpl extends ServiceImpl<TGoodsMapper, TGoods> implements ITGoodsService {
 
+    @Resource
+    private RedissonClient redissonClient;
+    @Resource
+    private StudyClient studyClient;
+    @Resource
+    private ITOrderService orderService;
+    @Resource
+    private TokenService tokenService;
+
+    @Override
+    public List<TGoodsVO> goodRecommend(Integer userId) {
+        return baseMapper.goodRecommend(userId);
+    }
+
+    @Override
+    public GoodDetailVO redeemNow(String goodId, Recipient recipient) {
+        // 商品详情
+        TGoods goods = lambdaQuery().eq(TGoods::getId, goodId).one();
+        // 库存预热,redisson分布式锁
+        String key = String.format(RedisConstants.GOOD_STOCK, goods.getId());
+        RSemaphore semaphore = redissonClient.getSemaphore(key);
+        semaphore.trySetPermits(goods.getSurplus());
+        return new GoodDetailVO(goods, recipient);
+    }
+
+    @Override
+    @Transactional(rollbackFor = Exception.class)
+    public Boolean goodExchange(GoodExchangeDTO goodExchange, Recipient recipient) {
+        Integer number = goodExchange.getNumber();
+        Integer goodId = goodExchange.getGoodId();
+        TGoods good = this.getById(goodId);
+        if (null == good) {
+            throw new GlobalException("商品不存在,请稍后重试!");
+        }
+        // 校验用户积分是否足够兑换
+        TUser user = studyClient.userInfo().getData();
+        int needIntegral = good.getIntegral() * number;
+        if (user.getIntegral() < needIntegral) {
+            throw new GlobalException("兑换失败,当前剩余积分不足!");
+        }
+        // 检查用户兑换数量是否超过单用户最大兑换数量
+        List<TOrder> orderList = orderService.lambdaQuery().eq(TOrder::getUserId, user.getId()).eq(TOrder::getGoodsId, goodId).list();
+        // 该商品订单为空、订单数量未超过商品的单个用户兑换上限数量时,可以进行兑换
+        int totalNumber = orderList.stream().map(TOrder::getCount).collect(Collectors.toList()).stream().mapToInt(Integer::intValue).sum();
+        boolean canExchange = orderList.isEmpty() || null == good.getUserCount() || (totalNumber + number) <= good.getUserCount();
+        if (!canExchange) {
+            throw new GlobalException("兑换失败,当前兑换数量已超过最大兑换数量,剩余兑换数量为: " + (good.getUserCount() - totalNumber) + "!");
+        }
+        // redisson分布式锁,防止超卖
+        String key = String.format(RedisConstants.GOOD_STOCK, good.getId());
+        RSemaphore semaphore = redissonClient.getSemaphore(key);
+        // 请求超时时间 单位:毫秒
+        semaphore.trySetPermits(1000);
+        boolean tried = semaphore.tryAcquire(number);
+        // 兑换失败,库存不足
+        if (!tried) {
+            semaphore.release(number);
+            throw new GlobalException("当前商品库存不足!");
+        }
+        // 兑换成功,生成订单信息、生成积分明细(积分明细需要远程调用rouyi-study服务)
+        TOrder order = orderInfo(goodExchange, recipient, number, goodId, needIntegral);
+        boolean result = orderService.save(order);
+        // 远程调用,生成积分明细
+        result = result && studyClient.addIntegralDetail(Constants.BURDEN + needIntegral, Constants.SHOPPING_CONSUME).getData();
+        // 扣除用户积分
+        result = result && studyClient.exchangeIntegral(needIntegral, Constants.BURDEN).getData();
+        // 扣除库存
+        result = result && this.lambdaUpdate().set(TGoods::getSurplus, good.getSurplus() - number).eq(TGoods::getId, good.getId()).update();
+        if (!result) {
+            semaphore.release(number);
+            throw new GlobalException("商品兑换失败!");
+        }
+        return result;
+    }
+
+    private TOrder orderInfo(GoodExchangeDTO goodExchange, Recipient recipient, Integer number, Integer goodId, int needIntegral) {
+        TOrder order = new TOrder();
+        order.setOrderNumber(goodExchange.getOrderNumber());
+        order.setUserId(tokenService.getLoginUserStudy().getUserid());
+        order.setInsertTime(new Date());
+        order.setGoodsId(goodId);
+        order.setCount(number);
+        order.setState(1);
+        order.setIntegral(needIntegral);
+        order.setConsigneeName(recipient.getRecipient());
+        order.setConsigneePhone(recipient.getRecipientPhone());
+        order.setConsigneeAddress(recipient.getAddress());
+        order.setDisabled(Boolean.FALSE);
+        return order;
+    }
 }

--
Gitblit v1.7.1