2024-03-18 12:29:16 +08:00
|
|
|
package com.sky.controller.user;
|
|
|
|
|
|
|
|
import com.sky.common.constant.JwtClaimsConstant;
|
2024-03-18 18:45:35 +08:00
|
|
|
import com.sky.common.properties.RedisTokenProperties;
|
2024-03-18 12:29:16 +08:00
|
|
|
import com.sky.common.result.Result;
|
|
|
|
import com.sky.common.utils.JwtUtil;
|
|
|
|
import com.sky.pojo.dto.UserLoginDTO;
|
|
|
|
import com.sky.pojo.entity.User;
|
|
|
|
import com.sky.pojo.vo.UserLoginVO;
|
|
|
|
import com.sky.service.UserService;
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
|
|
import java.util.HashMap;
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
@RestController
|
|
|
|
@RequestMapping("/user/user")
|
|
|
|
@Api(tags = "C端用户相关接口")
|
|
|
|
@Slf4j
|
|
|
|
public class UserController {
|
|
|
|
@Autowired
|
|
|
|
private UserService userService;
|
|
|
|
@Autowired
|
2024-03-18 18:45:35 +08:00
|
|
|
private RedisTokenProperties redisTokenProperties;
|
2024-03-18 12:29:16 +08:00
|
|
|
|
|
|
|
@PostMapping("/login")
|
|
|
|
@ApiOperation("微信登录")
|
|
|
|
public Result<UserLoginVO> login(@RequestBody UserLoginDTO userLoginDTO) {
|
|
|
|
log.info("微信用户登录:{}", userLoginDTO.getCode());
|
|
|
|
|
|
|
|
// 微信登录
|
|
|
|
User user = userService.wxLogin(userLoginDTO);// 后绪步骤实现
|
|
|
|
|
|
|
|
// 为微信用户生成jwt令牌
|
|
|
|
Map<String, Object> claims = new HashMap<>();
|
|
|
|
claims.put(JwtClaimsConstant.USER_ID, user.getId());
|
2024-03-18 18:45:35 +08:00
|
|
|
String token = JwtUtil.createJWT(redisTokenProperties.getUserSecretKey(), redisTokenProperties.getUserTtl(), claims);
|
2024-03-18 12:29:16 +08:00
|
|
|
|
|
|
|
UserLoginVO userLoginVO = UserLoginVO.builder()
|
|
|
|
.id(user.getId())
|
|
|
|
.openid(user.getOpenid())
|
|
|
|
.token(token)
|
|
|
|
.build();
|
|
|
|
return Result.success(userLoginVO);
|
|
|
|
}
|
|
|
|
|
|
|
|
@PostMapping("logout")
|
|
|
|
@ApiOperation("退出登录")
|
|
|
|
public Result logout() {
|
|
|
|
return Result.success();
|
|
|
|
}
|
|
|
|
}
|