| | |
| | | package com.ruoyi.account.controller; |
| | | |
| | | import com.alibaba.fastjson2.JSON; |
| | | import com.alibaba.fastjson2.JSONObject; |
| | | import com.ruoyi.account.api.model.AppUser; |
| | | import com.ruoyi.account.api.model.UserClickLog; |
| | | import com.ruoyi.account.service.AppUserService; |
| | | import com.ruoyi.account.service.UserClickLogService; |
| | | import com.ruoyi.account.service.VipCenterService; |
| | | import com.ruoyi.account.service.VipSettingService; |
| | | import com.ruoyi.account.vo.vip.Level; |
| | | import com.ruoyi.account.vo.vip.VipLevel; |
| | | import com.ruoyi.common.core.domain.R; |
| | | import com.ruoyi.common.core.exception.ServiceException; |
| | | import com.ruoyi.common.core.utils.StringUtils; |
| | | import com.ruoyi.common.core.utils.bean.BeanUtils; |
| | | import com.ruoyi.common.security.service.TokenService; |
| | | import com.ruoyi.other.api.domain.*; |
| | |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import javax.annotation.Resource; |
| | | import java.time.LocalDateTime; |
| | | import java.util.ArrayList; |
| | | import java.util.HashMap; |
| | | import java.util.List; |
| | |
| | | private VipGoodClient vipGoodClient; |
| | | @Resource |
| | | private GoodsClient goodsClient; |
| | | @Resource |
| | | private AppUserService appUserService; |
| | | @Resource |
| | | private UserClickLogService userClickLogService; |
| | | |
| | | |
| | | @GetMapping("getVipLevelList") |
| | |
| | | VipLevel vipLevel = new VipLevel(); |
| | | List<Level> levelList = new ArrayList<>(); |
| | | |
| | | // 批量获取 goodsVip 和 vipGoods |
| | | List<Integer> vipIds = vipSettingList.stream().map(VipSetting::getId).collect(Collectors.toList()); |
| | | Map<Integer, R<List<VipGood>>> vipGoodsMap = getVipGoods(vipIds); |
| | | |
| | | vipSettingList.forEach(vipSetting -> { |
| | | Level level = new Level(); |
| | | level.setName(vipSetting.getVipName()); |
| | | BeanUtils.copyBeanProp(level, vipSetting); |
| | | level.setVipDesc(baseSetting.getContent()); |
| | | |
| | | R<List<VipGood>> vipGoodR = vipGoodsMap.get(vipSetting.getId()); |
| | | if (R.isError(vipGoodR)) { |
| | | throw new ServiceException("会员商品获取失败"); |
| | | } |
| | | List<VipGood> vipGoodList = vipGoodR.getData(); |
| | | if (vipGoodList != null && !vipGoodList.isEmpty()) { |
| | | List<String> goodsNames = new ArrayList<>(); |
| | | vipGoodList.forEach(vipGood -> { |
| | | Integer goodId = vipGood.getGoodId(); |
| | | R<Goods> goodsR = goodsClient.getGoodsById(goodId); |
| | | if (R.isError(goodsR)) { |
| | | throw new ServiceException("商品信息获取失败"); |
| | | |
| | | List<String> goodsNames = new ArrayList<>(); |
| | | if (StringUtils.isNotEmpty(vipSetting.getGoodIds())){ |
| | | String[] goodsIds = vipSetting.getGoodIds().split(","); |
| | | List<Goods> goodsList = goodsClient.getGoodsById(goodsIds).getData(); |
| | | if (goodsList != null) { |
| | | for (Goods goods : goodsList) { |
| | | if (goods.getDelFlag().equals(0)){ |
| | | goodsNames.add(goods.getName()); |
| | | } |
| | | } |
| | | Goods goods = goodsR.getData(); |
| | | goodsNames.add(goods.getName()); |
| | | }); |
| | | level.setGoodsNames(goodsNames); |
| | | } |
| | | } |
| | | |
| | | level.setGoodsNames(goodsNames); |
| | | levelList.add(level); |
| | | }); |
| | | |
| | | vipLevel.setLevelList(levelList); |
| | | vipLevel.setCurrentLevel(loginUserVipSetting.getId()); |
| | | |
| | | //添加操作记录 |
| | | AppUser appUser = appUserService.getById(userid); |
| | | UserClickLog userClickLog = new UserClickLog(); |
| | | userClickLog.setDelFlag(0); |
| | | userClickLog.setCreateTime(LocalDateTime.now()); |
| | | userClickLog.setAppUserId(userid); |
| | | userClickLog.setVipId(appUser.getVipId()); |
| | | userClickLogService.save(userClickLog); |
| | | |
| | | return R.ok(vipLevel); |
| | | } catch (Exception e) { |
| | | log.error("会员等级获取失败", e); |
| | |
| | | @GetMapping("/check") |
| | | @ApiOperation(value = "会员申请检查", tags = {"会员中心-小程序"}) |
| | | public R<Boolean> check(@ApiParam("4:准代理,5:代理,6:总代理,7:合伙人") @RequestParam Integer type) { |
| | | return R.ok(vipCenterService.check(type)); |
| | | return R.ok(vipCenterService.checkEligibility(type)); |
| | | } |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | private Map<Integer, R<GoodsVip>> getGoodsVips(List<Integer> vipIds) { |
| | | Map<Integer, R<GoodsVip>> result = new HashMap<>(); |
| | | for (Integer vipId : vipIds) { |
| | | R<GoodsVip> goodsVipR = goodsVipClient.getGoodsVip(vipId); |
| | | result.put(vipId, goodsVipR); |
| | | } |
| | | return result; |
| | | } |
| | | |
| | | private Map<Integer, R<List<VipGood>>> getVipGoods(List<Integer> vipIds) { |
| | | Map<Integer, R<List<VipGood>>> result = new HashMap<>(); |
| | |
| | | return result; |
| | | } |
| | | |
| | | private boolean isValidJson(String json) { |
| | | try { |
| | | JSONObject.parseObject(json); |
| | | return true; |
| | | } catch (Exception e) { |
| | | return false; |
| | | } |
| | | } |
| | | |
| | | |
| | | } |