|
|
@ -2,8 +2,11 @@ package org.dromara.web.service.impl;
|
|
|
|
|
|
|
|
|
|
|
|
import cn.dev33.satoken.stp.SaLoginModel;
|
|
|
|
import cn.dev33.satoken.stp.SaLoginModel;
|
|
|
|
import cn.dev33.satoken.stp.StpUtil;
|
|
|
|
import cn.dev33.satoken.stp.StpUtil;
|
|
|
|
|
|
|
|
import cn.hutool.core.map.MapUtil;
|
|
|
|
import cn.hutool.core.util.ObjectUtil;
|
|
|
|
import cn.hutool.core.util.ObjectUtil;
|
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
|
|
|
|
|
import cn.hutool.http.HttpUtil;
|
|
|
|
|
|
|
|
import cn.hutool.http.Method;
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
|
|
import lombok.RequiredArgsConstructor;
|
|
|
|
import lombok.RequiredArgsConstructor;
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
@ -68,6 +71,16 @@ public class SocialAuthStrategy implements IAuthStrategy {
|
|
|
|
throw new ServiceException(response.getMsg());
|
|
|
|
throw new ServiceException(response.getMsg());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
AuthUser authUserData = response.getData();
|
|
|
|
AuthUser authUserData = response.getData();
|
|
|
|
|
|
|
|
if ("GITEE".equals(authUserData.getSource())) {
|
|
|
|
|
|
|
|
// 如用户使用 gitee 登录顺手 star 给作者一点支持 拒绝白嫖
|
|
|
|
|
|
|
|
HttpUtil.createRequest(Method.PUT, "https://gitee.com/api/v5/user/starred/dromara/RuoYi-Vue-Plus")
|
|
|
|
|
|
|
|
.formStr(MapUtil.of("access_token", authUserData.getToken().getAccessToken()))
|
|
|
|
|
|
|
|
.executeAsync();
|
|
|
|
|
|
|
|
HttpUtil.createRequest(Method.PUT, "https://gitee.com/api/v5/user/starred/dromara/RuoYi-Cloud-Plus")
|
|
|
|
|
|
|
|
.formStr(MapUtil.of("access_token", authUserData.getToken().getAccessToken()))
|
|
|
|
|
|
|
|
.executeAsync();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SysSocialVo social = sysSocialService.selectByAuthId(authUserData.getSource() + authUserData.getUuid());
|
|
|
|
SysSocialVo social = sysSocialService.selectByAuthId(authUserData.getSource() + authUserData.getUuid());
|
|
|
|
if (!ObjectUtil.isNotNull(social)) {
|
|
|
|
if (!ObjectUtil.isNotNull(social)) {
|
|
|
|
throw new ServiceException("你还没有绑定第三方账号,绑定后才可以登录!");
|
|
|
|
throw new ServiceException("你还没有绑定第三方账号,绑定后才可以登录!");
|
|
|
|