|
|
|
@ -1,10 +1,15 @@
|
|
|
|
|
package cn.iocoder.yudao.module.system.controller.admin.auth; |
|
|
|
|
|
|
|
|
|
import cn.binarywang.wx.miniapp.constant.WxMaApiUrlConstants; |
|
|
|
|
import cn.hutool.core.collection.CollUtil; |
|
|
|
|
import cn.hutool.core.util.ObjUtil; |
|
|
|
|
import cn.hutool.core.util.StrUtil; |
|
|
|
|
import cn.hutool.json.JSONUtil; |
|
|
|
|
import cn.iocoder.yudao.framework.common.enums.CommonStatusEnum; |
|
|
|
|
import cn.iocoder.yudao.framework.common.enums.UserTypeEnum; |
|
|
|
|
import cn.iocoder.yudao.framework.common.pojo.CommonResult; |
|
|
|
|
import cn.iocoder.yudao.framework.common.pojo.PageResult; |
|
|
|
|
import cn.iocoder.yudao.framework.common.util.json.JsonUtils; |
|
|
|
|
import cn.iocoder.yudao.framework.datapermission.core.annotation.DataPermission; |
|
|
|
|
import cn.iocoder.yudao.framework.security.config.SecurityProperties; |
|
|
|
|
import cn.iocoder.yudao.framework.security.core.util.SecurityFrameworkUtils; |
|
|
|
@ -12,11 +17,14 @@ import cn.iocoder.yudao.module.system.api.social.dto.SocialWxQrcodeReqDTO;
|
|
|
|
|
import cn.iocoder.yudao.module.system.api.social.dto.SocialUserBindReqDTO; |
|
|
|
|
import cn.iocoder.yudao.module.system.controller.admin.auth.vo.*; |
|
|
|
|
import cn.iocoder.yudao.module.system.convert.auth.AuthConvert; |
|
|
|
|
import cn.iocoder.yudao.module.system.dal.dataobject.oauth2.OAuth2AccessTokenDO; |
|
|
|
|
import cn.iocoder.yudao.module.system.dal.dataobject.permission.MenuDO; |
|
|
|
|
import cn.iocoder.yudao.module.system.dal.dataobject.permission.RoleDO; |
|
|
|
|
import cn.iocoder.yudao.module.system.dal.dataobject.social.SocialUserDO; |
|
|
|
|
import cn.iocoder.yudao.module.system.dal.dataobject.user.AdminUserDO; |
|
|
|
|
import cn.iocoder.yudao.module.system.enums.logger.LoginLogTypeEnum; |
|
|
|
|
import cn.iocoder.yudao.module.system.service.auth.AdminAuthService; |
|
|
|
|
import cn.iocoder.yudao.module.system.service.oauth2.OAuth2TokenService; |
|
|
|
|
import cn.iocoder.yudao.module.system.service.permission.MenuService; |
|
|
|
|
import cn.iocoder.yudao.module.system.service.permission.PermissionService; |
|
|
|
|
import cn.iocoder.yudao.module.system.service.permission.RoleService; |
|
|
|
@ -28,6 +36,7 @@ import io.swagger.v3.oas.annotations.Parameter;
|
|
|
|
|
import io.swagger.v3.oas.annotations.Parameters; |
|
|
|
|
import io.swagger.v3.oas.annotations.tags.Tag; |
|
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
|
import org.springframework.data.redis.core.StringRedisTemplate; |
|
|
|
|
import org.springframework.validation.annotation.Validated; |
|
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
|
|
|
|
|
@ -38,10 +47,13 @@ import javax.validation.Valid;
|
|
|
|
|
import java.util.Collections; |
|
|
|
|
import java.util.List; |
|
|
|
|
import java.util.Set; |
|
|
|
|
import java.util.concurrent.TimeUnit; |
|
|
|
|
|
|
|
|
|
import static cn.iocoder.yudao.framework.common.pojo.CommonResult.error; |
|
|
|
|
import static cn.iocoder.yudao.framework.common.pojo.CommonResult.success; |
|
|
|
|
import static cn.iocoder.yudao.framework.common.util.collection.CollectionUtils.convertSet; |
|
|
|
|
import static cn.iocoder.yudao.framework.security.core.util.SecurityFrameworkUtils.getLoginUserId; |
|
|
|
|
import static cn.iocoder.yudao.module.system.enums.ErrorCodeConstants.AUTH_THIRD_LOGIN_NOT_BIND; |
|
|
|
|
|
|
|
|
|
@Tag(name = "管理后台 - 认证") |
|
|
|
|
@RestController |
|
|
|
@ -70,6 +82,12 @@ public class AuthController {
|
|
|
|
|
private SocialUserService socialUserService; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Resource |
|
|
|
|
private StringRedisTemplate stringRedisTemplate; |
|
|
|
|
|
|
|
|
|
@Resource |
|
|
|
|
private OAuth2TokenService oAuth2TokenService; |
|
|
|
|
|
|
|
|
|
@PostMapping("/login") |
|
|
|
|
@PermitAll |
|
|
|
|
@Operation(summary = "使用账号密码登录") |
|
|
|
@ -99,7 +117,7 @@ public class AuthController {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@PermitAll |
|
|
|
|
@PostMapping("/web_login") |
|
|
|
|
@PostMapping("/web_code_login") |
|
|
|
|
@Operation(summary = "后台调用小程序微信扫码登录") |
|
|
|
|
public CommonResult<byte[]> webLogin(@RequestBody @Valid SocialWxQrcodeReqDTO reqVO) { |
|
|
|
|
return success(socialClientService.getWxaQrcode(reqVO)); |
|
|
|
@ -198,4 +216,40 @@ public class AuthController {
|
|
|
|
|
return success(authService.socialLogin(reqVO)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@PostMapping("/social-login-openid") |
|
|
|
|
@PermitAll |
|
|
|
|
@Operation(summary = "社交快捷登录,使用 code 授权码", description = "适合未登录的用户,但是社交账号已绑定用户") |
|
|
|
|
public void socialQuickLoginOpenId(@RequestBody AuthSocialLoginReqVO reqVO) { |
|
|
|
|
OAuth2AccessTokenDO accessToken = oAuth2TokenService.getAccessToken(reqVO.getOpenid()); |
|
|
|
|
Long userId = accessToken.getUserId(); |
|
|
|
|
List<SocialUserDO> socialUserList = socialUserService.getSocialUserList(userId, UserTypeEnum.MEMBER.getValue()); |
|
|
|
|
//判断是否为对象空
|
|
|
|
|
if(!CollUtil.isEmpty(socialUserList)){ |
|
|
|
|
stringRedisTemplate.opsForValue().set(reqVO.getCode(), JsonUtils.toJsonString(socialUserList.get(0)),10, TimeUnit.MINUTES); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@PostMapping("/social-qr-login-openid") |
|
|
|
|
@PermitAll |
|
|
|
|
@Operation(summary = "社交快捷登录,使用 code 授权码", description = "适合未登录的用户,但是社交账号已绑定用户") |
|
|
|
|
public CommonResult<AuthLoginRespVO> qrLoginCode(@RequestBody AuthSocialLoginReqVO reqVO) { |
|
|
|
|
String json = stringRedisTemplate.opsForValue().get(reqVO.getCode()); |
|
|
|
|
|
|
|
|
|
//判断是否为对象空
|
|
|
|
|
if(StrUtil.isNotEmpty(json)){ |
|
|
|
|
SocialUserDO socialUserDO = JsonUtils.parseObject(json, SocialUserDO.class); |
|
|
|
|
AuthSocialLoginReqVO authSocialLoginReqVO=new AuthSocialLoginReqVO(); |
|
|
|
|
authSocialLoginReqVO.setCode(socialUserDO.getCode()); |
|
|
|
|
authSocialLoginReqVO.setType(socialUserDO.getType()); |
|
|
|
|
authSocialLoginReqVO.setState(socialUserDO.getState()); |
|
|
|
|
authSocialLoginReqVO.setOpenid(socialUserDO.getOpenid()); |
|
|
|
|
return success(authService.socialLogin(authSocialLoginReqVO)); |
|
|
|
|
} |
|
|
|
|
else{ |
|
|
|
|
return success(null); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|