mirror of
https://gitee.com/yadong.zhang/JustAuth.git
synced 2025-12-06 08:48:27 +08:00
67 lines
2.1 KiB
Java
67 lines
2.1 KiB
Java
package me.zhyd.oauth.request;
|
|
|
|
import com.xkcoding.json.JsonUtil;
|
|
import com.xkcoding.json.util.Kv;
|
|
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.exception.AuthException;
|
|
import me.zhyd.oauth.model.AuthCallback;
|
|
import me.zhyd.oauth.model.AuthToken;
|
|
import me.zhyd.oauth.model.AuthUser;
|
|
|
|
/**
|
|
* CSDN登录
|
|
*
|
|
* @author yadong.zhang (yadong.zhang0415(a)gmail.com)
|
|
* @since 1.0.0
|
|
*/
|
|
@Deprecated
|
|
public class AuthCsdnRequest extends AuthDefaultRequest {
|
|
|
|
public AuthCsdnRequest(AuthConfig config) {
|
|
super(config, AuthDefaultSource.CSDN);
|
|
}
|
|
|
|
public AuthCsdnRequest(AuthConfig config, AuthStateCache authStateCache) {
|
|
super(config, AuthDefaultSource.CSDN, authStateCache);
|
|
}
|
|
|
|
@Override
|
|
protected AuthToken getAccessToken(AuthCallback authCallback) {
|
|
String response = doPostAuthorizationCode(authCallback.getCode());
|
|
Kv accessTokenObject = JsonUtil.parseKv(response);
|
|
this.checkResponse(accessTokenObject);
|
|
return AuthToken.builder().accessToken(accessTokenObject.getString("access_token")).build();
|
|
}
|
|
|
|
@Override
|
|
protected AuthUser getUserInfo(AuthToken authToken) {
|
|
String response = doGetUserInfo(authToken);
|
|
Kv object = JsonUtil.parseKv(response);
|
|
this.checkResponse(object);
|
|
return AuthUser.builder()
|
|
.rawUserInfo(object)
|
|
.uuid(object.getString("username"))
|
|
.username(object.getString("username"))
|
|
.remark(object.getString("description"))
|
|
.blog(object.getString("website"))
|
|
.gender(AuthUserGender.UNKNOWN)
|
|
.token(authToken)
|
|
.source(source.toString())
|
|
.build();
|
|
}
|
|
|
|
/**
|
|
* 检查响应内容是否正确
|
|
*
|
|
* @param object 请求响应内容
|
|
*/
|
|
private void checkResponse(Kv object) {
|
|
if (object.containsKey("error_code")) {
|
|
throw new AuthException(object.getString("error"));
|
|
}
|
|
}
|
|
}
|