You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
117 lines
4.6 KiB
117 lines
4.6 KiB
package com.cweb.controller;
|
|
|
|
import com.hai.common.exception.ErrorCode;
|
|
import com.hai.common.exception.ErrorHelp;
|
|
import com.hai.common.exception.SysCode;
|
|
import com.hai.common.security.SessionObject;
|
|
import com.hai.common.security.UserCenter;
|
|
import com.hai.common.security.VerifyCode;
|
|
import com.hai.common.security.VerifyCodeStorage;
|
|
import com.hai.common.utils.ResponseMsgUtil;
|
|
import com.hai.entity.HighOrder;
|
|
import com.hai.entity.HighUser;
|
|
import com.hai.entity.HighUserCoupon;
|
|
import com.hai.model.HighUserModel;
|
|
import com.hai.model.ResponseData;
|
|
import com.hai.service.HighOrderService;
|
|
import com.hai.service.HighUserCouponService;
|
|
import com.hai.service.HighUserService;
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.ApiOperation;
|
|
import org.apache.commons.lang3.StringUtils;
|
|
import org.apache.poi.util.StringUtil;
|
|
import org.slf4j.Logger;
|
|
import org.slf4j.LoggerFactory;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.stereotype.Controller;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RequestMethod;
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
import org.springframework.web.bind.annotation.ResponseBody;
|
|
|
|
import javax.annotation.Resource;
|
|
import javax.servlet.http.HttpServletRequest;
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
/**
|
|
* @Auther: 袁野
|
|
* @Description:
|
|
* @Date: 2021/3/30 22:50
|
|
*/
|
|
@Controller
|
|
@RequestMapping(value = "/highUser")
|
|
@Api(value = "用户接口")
|
|
public class HighUserController {
|
|
|
|
private static Logger log = LoggerFactory.getLogger(HighMerchantStoreController.class);
|
|
|
|
@Autowired
|
|
private UserCenter userCenter;
|
|
|
|
@Resource
|
|
private HighUserService highUserService;
|
|
|
|
@Resource
|
|
private HighUserCouponService highUserCouponService;
|
|
|
|
@Resource
|
|
private HighOrderService highOrderService;
|
|
|
|
@RequestMapping(value = "/findUser", method = RequestMethod.GET)
|
|
@ResponseBody
|
|
@ApiOperation(value = "根据id查询详情")
|
|
public ResponseData findById( HttpServletRequest request) {
|
|
try {
|
|
|
|
// 用户
|
|
SessionObject sessionObject = userCenter.getSessionObject(request);
|
|
HighUserModel userInfoModel = (HighUserModel) sessionObject.getObject();
|
|
|
|
HighUser highUser = highUserService.findByUserId(userInfoModel.getHighUser().getId());
|
|
if (highUser != null) {
|
|
highUser.setUnusedCouponNum( highUserCouponService.getCouponList(highUser.getId(), 1).size()); //未使用卡卷数量
|
|
highUser.setUnpaid(highOrderService.countOrderByUserId(highUser.getId() , 1));
|
|
highUser.setUnusedDiscount(highOrderService.countUnusedDiscountByUserId(highUser.getId() , 1));
|
|
}
|
|
return ResponseMsgUtil.success(highUser);
|
|
|
|
} catch (Exception e) {
|
|
log.error("HighUserController --> findByUserId() error!", e);
|
|
return ResponseMsgUtil.exception(e);
|
|
}
|
|
}
|
|
|
|
|
|
@RequestMapping(value = "/bindUserPhone", method = RequestMethod.GET)
|
|
@ResponseBody
|
|
@ApiOperation(value = "绑定用户手机号")
|
|
public ResponseData bindUserPhone(@RequestParam(value = "phone", required = true) String phone,
|
|
@RequestParam(value = "code", required = true) String code,
|
|
HttpServletRequest request, HttpServletResponse response) {
|
|
try {
|
|
VerifyCode verifyCode = VerifyCodeStorage.getDate(phone);
|
|
if(verifyCode == null) {
|
|
log.error("HighUserController --> bindUserPhone() error!", "验证码错误");
|
|
throw ErrorHelp.genException(SysCode.System, ErrorCode.COMMON_ERROR, "验证码错误");
|
|
}
|
|
if(!verifyCode.getObject().equals(code)) {
|
|
log.error("HighUserController --> bindUserPhone() error!", "验证码错误");
|
|
throw ErrorHelp.genException(SysCode.System, ErrorCode.COMMON_ERROR, "验证码错误");
|
|
}
|
|
|
|
HighUser highUser = highUserService.bindUserPhone(phone, request);
|
|
|
|
HighUserModel highUserModel = new HighUserModel();
|
|
highUser.setPassword(null);
|
|
highUserModel.setHighUser(highUser);
|
|
SessionObject so = new SessionObject(highUser.getUnionId(), 1 , highUserModel);
|
|
userCenter.save(request, response, so);
|
|
return ResponseMsgUtil.success(so);
|
|
|
|
} catch (Exception e) {
|
|
log.error("HighUserController --> bindUserPhone() error!", e);
|
|
return ResponseMsgUtil.exception(e);
|
|
}
|
|
}
|
|
|
|
}
|
|
|