AuthAlipayRequest.java 3.5 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
import me.zhyd.oauth.model.AuthUser;
import me.zhyd.oauth.model.AuthUserGender;
智布道's avatar
智布道 已提交
17
import me.zhyd.oauth.url.AuthAlipayUrlBuilder;
18 19 20
import me.zhyd.oauth.utils.StringUtils;

/**
21 22
 * 支付宝登录
 *
23 24 25 26
 * @author yadong.zhang (yadong.zhang0415(a)gmail.com)
 * @version 1.0
 * @since 1.8
 */
智布道's avatar
智布道 已提交
27
public class AuthAlipayRequest extends AuthDefaultRequest {
28 29 30 31

    private AlipayClient alipayClient;

    public AuthAlipayRequest(AuthConfig config) {
智布道's avatar
智布道 已提交
32
        super(config, AuthSource.ALIPAY, new AuthAlipayUrlBuilder());
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");
智布道's avatar
智布道 已提交
41
        request.setCode(authCallback.getAuth_code());
42 43 44 45
        AlipaySystemOauthTokenResponse response = null;
        try {
            response = this.alipayClient.execute(request);
        } catch (Exception e) {
智布道's avatar
智布道 已提交
46
            throw new AuthException("Unable to get token from alipay using code [" + authCallback.getAuth_code() + "]", 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 88
                .source(AuthSource.ALIPAY)
                .build();
    }
}