mirror of
https://gitee.com/yadong.zhang/JustAuth.git
synced 2025-12-06 08:48:27 +08:00
97 lines
3.3 KiB
Java
97 lines
3.3 KiB
Java
package me.zhyd.oauth.request;
|
||
|
||
import com.alibaba.fastjson.JSONObject;
|
||
import com.xkcoding.http.support.HttpHeader;
|
||
import me.zhyd.oauth.cache.AuthStateCache;
|
||
import me.zhyd.oauth.config.AuthConfig;
|
||
import me.zhyd.oauth.config.AuthDefaultSource;
|
||
import me.zhyd.oauth.enums.AuthUserGender;
|
||
import me.zhyd.oauth.enums.scope.AuthGithubScope;
|
||
import me.zhyd.oauth.exception.AuthException;
|
||
import me.zhyd.oauth.model.AuthCallback;
|
||
import me.zhyd.oauth.model.AuthToken;
|
||
import me.zhyd.oauth.model.AuthUser;
|
||
import me.zhyd.oauth.utils.AuthScopeUtils;
|
||
import me.zhyd.oauth.utils.GlobalAuthUtils;
|
||
import me.zhyd.oauth.utils.HttpUtils;
|
||
import me.zhyd.oauth.utils.UrlBuilder;
|
||
|
||
import java.util.Map;
|
||
|
||
/**
|
||
* Github登录
|
||
*
|
||
* @author yadong.zhang (yadong.zhang0415(a)gmail.com)
|
||
* @since 1.0.0
|
||
*/
|
||
public class AuthGithubRequest extends AuthDefaultRequest {
|
||
|
||
public AuthGithubRequest(AuthConfig config) {
|
||
super(config, AuthDefaultSource.GITHUB);
|
||
}
|
||
|
||
public AuthGithubRequest(AuthConfig config, AuthStateCache authStateCache) {
|
||
super(config, AuthDefaultSource.GITHUB, authStateCache);
|
||
}
|
||
|
||
@Override
|
||
public AuthToken getAccessToken(AuthCallback authCallback) {
|
||
String response = doPostAuthorizationCode(authCallback.getCode());
|
||
Map<String, String> res = GlobalAuthUtils.parseStringToMap(response);
|
||
|
||
this.checkResponse(res.containsKey("error"), res.get("error_description"));
|
||
|
||
return AuthToken.builder()
|
||
.accessToken(res.get("access_token"))
|
||
.scope(res.get("scope"))
|
||
.tokenType(res.get("token_type"))
|
||
.build();
|
||
}
|
||
|
||
@Override
|
||
public AuthUser getUserInfo(AuthToken authToken) {
|
||
HttpHeader header = new HttpHeader();
|
||
header.add("Authorization", "token " + authToken.getAccessToken());
|
||
String response = new HttpUtils(config.getHttpConfig()).get(UrlBuilder.fromBaseUrl(source.userInfo()).build(), null, header, false).getBody();
|
||
JSONObject object = JSONObject.parseObject(response);
|
||
|
||
this.checkResponse(object.containsKey("error"), object.getString("error_description"));
|
||
|
||
return AuthUser.builder()
|
||
.rawUserInfo(object)
|
||
.uuid(object.getString("id"))
|
||
.username(object.getString("login"))
|
||
.avatar(object.getString("avatar_url"))
|
||
.blog(object.getString("blog"))
|
||
.nickname(object.getString("name"))
|
||
.company(object.getString("company"))
|
||
.location(object.getString("location"))
|
||
.email(object.getString("email"))
|
||
.remark(object.getString("bio"))
|
||
.gender(AuthUserGender.UNKNOWN)
|
||
.token(authToken)
|
||
.source(source.toString())
|
||
.build();
|
||
}
|
||
|
||
private void checkResponse(boolean error, String errorDescription) {
|
||
if (error) {
|
||
throw new AuthException(errorDescription);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 返回带{@code state}参数的授权url,授权回调时会带上这个{@code state}
|
||
*
|
||
* @param state state 验证授权流程的参数,可以防止csrf
|
||
* @return 返回授权地址
|
||
*/
|
||
@Override
|
||
public String authorize(String state) {
|
||
return UrlBuilder.fromBaseUrl(super.authorize(state))
|
||
.queryParam("scope", this.getScopes(" ", true, AuthScopeUtils.getDefaultScopes(AuthGithubScope.values())))
|
||
.build();
|
||
}
|
||
|
||
}
|