release- 修改头像自动判断老用户

release-2024-04-25
pikaqiudeshujia 4 days ago
parent d6f2a83d43
commit 8e99457934

@ -4,36 +4,24 @@ import annotation.GlobalInterceptor;
import api.PageResult;
import api.Result;
import com.luoo.user.dto.point.*;
import com.luoo.user.pojo.*;
import com.luoo.user.pojo.Lottery;
import com.luoo.user.pojo.LotteryRegion;
import com.luoo.user.pojo.TaskPoint;
import com.luoo.user.service.DrawLotteryService;
import com.luoo.user.service.LotteryService;
import com.luoo.user.service.TaskPointService;
import com.luoo.user.service.UserPointLogService;
import com.luoo.user.vo.point.*;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiImplicitParam;
import io.swagger.annotations.ApiImplicitParams;
import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiParam;
import java.util.List;
import javax.annotation.Nullable;
import javax.validation.constraints.NotNull;
import io.swagger.annotations.*;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Required;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.CrossOrigin;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestHeader;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.bind.annotation.*;
import javax.annotation.Nullable;
import javax.validation.constraints.NotNull;
import java.util.List;
/**
* @program: luoo_parent
@ -440,5 +428,12 @@ public class PointController {
return Result.success();
}
@ApiOperation(value = "4.1. 老用户已更换头像的直接发放积分", notes = "")
@PostMapping("/avatar/old")
public Result<Void> avatarOld() {
lotteryService.avatarOld();
return Result.success();
}
}

@ -57,4 +57,7 @@ public interface UserInfoDao extends JpaRepository<UserInfo, String>, JpaSpecifi
@Query(value = "select * from tb_user_info where nick_name like ?1 limit 50", nativeQuery = true)
public List<UserInfo> getUserInfosByNickNameLikeLimit50(String nickName);
@Query(value = "select * from tb_user_info where avatar != 'user/avatar/default.png'", nativeQuery = true)
public List<UserInfo> getOldUserListWhoIsAlreadyNewAvatar();
}

@ -28,27 +28,12 @@ import enums.PointEnums;
import enums.UserTypeEnum;
import enums.UserVipStatusEnum;
import exception.BizException;
import java.io.IOException;
import java.time.LocalDateTime;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Objects;
import javax.persistence.criteria.CriteriaBuilder;
import javax.persistence.criteria.CriteriaQuery;
import javax.persistence.criteria.Predicate;
import javax.persistence.criteria.Root;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang.StringUtils;
import org.springframework.amqp.rabbit.core.RabbitTemplate;
import org.springframework.beans.BeanUtils;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.PageRequest;
import org.springframework.data.domain.Pageable;
import org.springframework.data.domain.Sort;
import org.springframework.data.domain.Sort.Direction;
import org.springframework.data.jpa.domain.Specification;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
@ -56,6 +41,17 @@ import util.IdWorker;
import util.JwtUtil;
import util.RedisLockUtil;
import javax.persistence.criteria.CriteriaBuilder;
import javax.persistence.criteria.CriteriaQuery;
import javax.persistence.criteria.Predicate;
import javax.persistence.criteria.Root;
import java.io.IOException;
import java.time.LocalDateTime;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Objects;
/**
* @program: luoo_parent
* @description:
@ -94,7 +90,9 @@ public class LotteryService {
private final UserinfoShippingAddressService userinfoShippingAddressService;
public LotteryService(LotteryDao lotteryDao, JwtUtil jwtUtil, IdWorker idWorker, RedisLockUtil redisLockUtil, RegionService regionService, LotteryRegionDao lotteryRegionDao, UserInfoDao userInfoDao, RabbitTemplate rabbitTemplate, LotteryUserDao lotteryUserDao, DrawLotteryScheduler drawLotteryScheduler, JPAQueryFactory jpaQueryFactory, EnvConfig envConfig, UserinfoShippingAddressService userinfoShippingAddressService) {
private final UserPointLogService userPointLogService;
public LotteryService(LotteryDao lotteryDao, JwtUtil jwtUtil, IdWorker idWorker, RedisLockUtil redisLockUtil, RegionService regionService, LotteryRegionDao lotteryRegionDao, UserInfoDao userInfoDao, RabbitTemplate rabbitTemplate, LotteryUserDao lotteryUserDao, DrawLotteryScheduler drawLotteryScheduler, JPAQueryFactory jpaQueryFactory, EnvConfig envConfig, UserinfoShippingAddressService userinfoShippingAddressService, UserPointLogService userPointLogService) {
this.lotteryDao = lotteryDao;
this.jwtUtil = jwtUtil;
this.idWorker = idWorker;
@ -108,6 +106,7 @@ public class LotteryService {
this.jpaQueryFactory = jpaQueryFactory;
this.envConfig = envConfig;
this.userinfoShippingAddressService = userinfoShippingAddressService;
this.userPointLogService = userPointLogService;
}
@ -905,4 +904,13 @@ public class LotteryService {
}
}
@Transactional(rollbackFor = Exception.class)
public void avatarOld() {
List<UserInfo> oldUserListWhoIsAlreadyNewAvatar = userInfoDao.getOldUserListWhoIsAlreadyNewAvatar();
oldUserListWhoIsAlreadyNewAvatar.forEach(userInfo -> {
log.info("用户:{},积分增加:{}", userInfo.getNickName(), TaskPointIdConstants.MODIFY_AVATAR);
userPointLogService.addByTaskDailyAndUserId(TaskPointIdConstants.MODIFY_AVATAR, userInfo.getId());
});
}
}

@ -172,6 +172,7 @@ public class MemberShipService {
* @param one
*/
private void dealUserVipCalc(MembershipOrder one) {
try {
// 处理用户表
UserInfo userInfo = userInfoDao.findById(one.getUserId()).get();
@ -200,6 +201,10 @@ public class MemberShipService {
userInfo.setVipStatus(UserVipStatusEnum.ACTIVE.getCode());
}
userInfoDao.save(userInfo);
} catch (Exception e) {
e.printStackTrace();
log.error("会员开通失败", e);
}
}
/**

Loading…
Cancel
Save