AuthAlipayRequest.java 3.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
package me.zhyd.oauth.request;

import com.alipay.api.AlipayApiException;
import com.alipay.api.AlipayClient;
import com.alipay.api.DefaultAlipayClient;
import com.alipay.api.request.AlipaySystemOauthTokenRequest;
import com.alipay.api.request.AlipayUserInfoShareRequest;
import com.alipay.api.response.AlipaySystemOauthTokenResponse;
import com.alipay.api.response.AlipayUserInfoShareResponse;
import me.zhyd.oauth.config.AuthConfig;
11
import me.zhyd.oauth.config.AuthSource;
12
import me.zhyd.oauth.exception.AuthException;
13
import me.zhyd.oauth.model.AuthCallback;
14
import me.zhyd.oauth.model.AuthToken;
15 16 17
import me.zhyd.oauth.model.AuthUser;
import me.zhyd.oauth.model.AuthUserGender;
import me.zhyd.oauth.utils.StringUtils;
18
import me.zhyd.oauth.utils.UrlBuilder;
19 20

/**
21 22
 * 支付宝登录
 *
23 24 25 26 27 28 29 30 31 32
 * @author yadong.zhang (yadong.zhang0415(a)gmail.com)
 * @version 1.0
 * @since 1.8
 */
public class AuthAlipayRequest extends BaseAuthRequest {

    private AlipayClient alipayClient;

    public AuthAlipayRequest(AuthConfig config) {
        super(config, AuthSource.ALIPAY);
33 34
        this.alipayClient = new DefaultAlipayClient(AuthSource.ALIPAY.accessToken(), config.getClientId(), config.getClientSecret(), "json", "UTF-8", config
                .getAlipayPublicKey(), "RSA2");
35 36 37
    }

    @Override
38
    protected AuthToken getAccessToken(AuthCallback authCallback) {
39 40
        AlipaySystemOauthTokenRequest request = new AlipaySystemOauthTokenRequest();
        request.setGrantType("authorization_code");
41
        request.setCode(authCallback.getCode());
42 43 44 45
        AlipaySystemOauthTokenResponse response = null;
        try {
            response = this.alipayClient.execute(request);
        } catch (Exception e) {
46
            throw new AuthException("Unable to get token from alipay using code [" + authCallback.getCode() + "]", e);
47 48 49 50
        }
        if (!response.isSuccess()) {
            throw new AuthException(response.getSubMsg());
        }
51 52
        return AuthToken.builder()
                .accessToken(response.getAccessToken())
智布道's avatar
智布道 已提交
53 54 55
                .uid(response.getUserId())
                .expireIn(Integer.parseInt(response.getExpiresIn()))
                .refreshToken(response.getRefreshToken())
56
                .build();
57 58 59
    }

    @Override
60 61
    protected AuthUser getUserInfo(AuthToken authToken) {
        String accessToken = authToken.getAccessToken();
62 63 64 65 66 67 68 69 70 71
        AlipayUserInfoShareRequest request = new AlipayUserInfoShareRequest();
        AlipayUserInfoShareResponse response = null;
        try {
            response = this.alipayClient.execute(request, accessToken);
        } catch (AlipayApiException e) {
            throw new AuthException(e.getErrMsg(), e);
        }
        if (!response.isSuccess()) {
            throw new AuthException(response.getSubMsg());
        }
智布道's avatar
智布道 已提交
72

73 74
        String province = response.getProvince(),
                city = response.getCity();
智布道's avatar
智布道 已提交
75 76
        String location = String.format("%s %s", StringUtils.isEmpty(province) ? "" : province, StringUtils.isEmpty(city) ? "" : city);

77
        return AuthUser.builder()
智布道's avatar
智布道 已提交
78
                .uuid(response.getUserId())
79
                .username(StringUtils.isEmpty(response.getUserName()) ? response.getNickName() : response.getUserName())
80 81
                .nickname(response.getNickName())
                .avatar(response.getAvatar())
智布道's avatar
智布道 已提交
82
                .location(location)
83
                .gender(AuthUserGender.getRealGender(response.getGender()))
84
                .token(authToken)
85 86 87
                .source(AuthSource.ALIPAY)
                .build();
    }
88 89 90 91 92 93 94 95 96 97

    /**
     * 返回认证url,可自行跳转页面
     *
     * @return 返回授权地址
     */
    @Override
    public String authorize() {
        return UrlBuilder.getAlipayAuthorizeUrl(config.getClientId(), config.getRedirectUri());
    }
98
}