mirror of
https://gitee.com/yadong.zhang/JustAuth.git
synced 2026-01-07 19:31:48 +08:00
84 lines
3.4 KiB
Java
84 lines
3.4 KiB
Java
package me.zhyd.oauth.request;
|
|
|
|
import cn.hutool.http.HttpRequest;
|
|
import cn.hutool.http.HttpResponse;
|
|
import com.alibaba.fastjson.JSONObject;
|
|
import me.zhyd.oauth.config.AuthConfig;
|
|
import me.zhyd.oauth.config.AuthSource;
|
|
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.model.AuthUserGender;
|
|
import me.zhyd.oauth.url.WeiboUrlBuilder;
|
|
import me.zhyd.oauth.url.entity.AuthAccessTokenEntity;
|
|
import me.zhyd.oauth.url.entity.AuthUserInfoEntity;
|
|
import me.zhyd.oauth.utils.IpUtils;
|
|
import me.zhyd.oauth.utils.StringUtils;
|
|
|
|
|
|
/**
|
|
* 微博登录
|
|
*
|
|
* @author yadong.zhang (yadong.zhang0415(a)gmail.com)
|
|
* @version 1.0
|
|
* @since 1.8
|
|
*/
|
|
public class AuthWeiboRequest extends BaseAuthRequest {
|
|
|
|
public AuthWeiboRequest(AuthConfig config) {
|
|
super(config, AuthSource.WEIBO, new WeiboUrlBuilder());
|
|
}
|
|
|
|
@Override
|
|
protected AuthToken getAccessToken(AuthCallback authCallback) {
|
|
String accessTokenUrl = this.urlBuilder.getAccessTokenUrl(AuthAccessTokenEntity.builder()
|
|
.config(config)
|
|
.code(authCallback.getCode())
|
|
.build());
|
|
HttpResponse response = HttpRequest.post(accessTokenUrl).execute();
|
|
String accessTokenStr = response.body();
|
|
JSONObject accessTokenObject = JSONObject.parseObject(accessTokenStr);
|
|
if (accessTokenObject.containsKey("error")) {
|
|
throw new AuthException("Unable to get token from weibo using code [" + authCallback.getCode() + "]:" + accessTokenObject.getString("error_description"));
|
|
}
|
|
return AuthToken.builder()
|
|
.accessToken(accessTokenObject.getString("access_token"))
|
|
.uid(accessTokenObject.getString("uid"))
|
|
.openId(accessTokenObject.getString("uid"))
|
|
.expireIn(accessTokenObject.getIntValue("expires_in"))
|
|
.build();
|
|
}
|
|
|
|
@Override
|
|
protected AuthUser getUserInfo(AuthToken authToken) {
|
|
String accessToken = authToken.getAccessToken();
|
|
String uid = authToken.getUid();
|
|
String oauthParam = String.format("uid=%s&access_token=%s", uid, accessToken);
|
|
HttpResponse response = HttpRequest.get(this.urlBuilder.getUserInfoUrl(AuthUserInfoEntity.builder()
|
|
.extra(oauthParam)
|
|
.build()))
|
|
.header("Authorization", "OAuth2 " + oauthParam)
|
|
.header("API-RemoteIP", IpUtils.getIp())
|
|
.execute();
|
|
String userInfo = response.body();
|
|
JSONObject object = JSONObject.parseObject(userInfo);
|
|
if (object.containsKey("error")) {
|
|
throw new AuthException(object.getString("error"));
|
|
}
|
|
return AuthUser.builder()
|
|
.uuid(object.getString("id"))
|
|
.username(object.getString("name"))
|
|
.avatar(object.getString("profile_image_url"))
|
|
.blog(StringUtils.isEmpty(object.getString("url")) ? "https://weibo.com/" + object.getString("profile_url") : object
|
|
.getString("url"))
|
|
.nickname(object.getString("screen_name"))
|
|
.location(object.getString("location"))
|
|
.remark(object.getString("description"))
|
|
.gender(AuthUserGender.getRealGender(object.getString("gender")))
|
|
.token(authToken)
|
|
.source(AuthSource.WEIBO)
|
|
.build();
|
|
}
|
|
}
|