| | |
| | | |
| | | import com.iailab.sdk.auth.client.dto.TokenDTO; |
| | | import com.iailab.sdk.auth.config.AuthProperties; |
| | | import com.iailab.sdk.auth.constants.ErrorCodeConstants; |
| | | import com.iailab.sdk.auth.constants.SdkErrorCodeConstants; |
| | | import org.springframework.core.ParameterizedTypeReference; |
| | | import org.springframework.http.*; |
| | | import org.springframework.stereotype.Component; |
| | |
| | | Assert.isTrue(exchange.getStatusCode().is2xxSuccessful(), "响应必须是 200 成功"); |
| | | Map<String, Object> authMap = exchange.getBody(); |
| | | Object code = authMap.get("code"); |
| | | if(ErrorCodeConstants.AUTH_BAD_CREDENTIALS.getCode().equals(code)) { |
| | | throw exception(ErrorCodeConstants.AUTH_BAD_CREDENTIALS); |
| | | } else if(ErrorCodeConstants.AUTH_LOGIN_BAD_CREDENTIALS.getCode().equals(code)) { |
| | | throw exception(ErrorCodeConstants.AUTH_LOGIN_BAD_CREDENTIALS); |
| | | } else if(ErrorCodeConstants.OAUTH2_CLIENT_REDIRECT_URI_NOT_MATCH.getCode().equals(code)) { |
| | | throw exception(ErrorCodeConstants.OAUTH2_CLIENT_REDIRECT_URI_NOT_MATCH); |
| | | } else if(ErrorCodeConstants.OAUTH2_CLIENT_CLIENT_SECRET_ERROR.getCode().equals(code)) { |
| | | throw exception(ErrorCodeConstants.OAUTH2_CLIENT_CLIENT_SECRET_ERROR); |
| | | } else if(ErrorCodeConstants.OAUTH2_CLIENT_NOT_EXISTS.getCode().equals(code)) { |
| | | throw exception(ErrorCodeConstants.OAUTH2_CLIENT_NOT_EXISTS); |
| | | } else if(ErrorCodeConstants.OAUTH2_CLIENT_DISABLE.getCode().equals(code)) { |
| | | throw exception(ErrorCodeConstants.OAUTH2_CLIENT_DISABLE); |
| | | if(SdkErrorCodeConstants.AUTH_BAD_CREDENTIALS.getCode().equals(code)) { |
| | | throw exception(SdkErrorCodeConstants.AUTH_BAD_CREDENTIALS); |
| | | } else if(SdkErrorCodeConstants.AUTH_LOGIN_BAD_CREDENTIALS.getCode().equals(code)) { |
| | | throw exception(SdkErrorCodeConstants.AUTH_LOGIN_BAD_CREDENTIALS); |
| | | } else if(SdkErrorCodeConstants.OAUTH2_CLIENT_REDIRECT_URI_NOT_MATCH.getCode().equals(code)) { |
| | | throw exception(SdkErrorCodeConstants.OAUTH2_CLIENT_REDIRECT_URI_NOT_MATCH); |
| | | } else if(SdkErrorCodeConstants.OAUTH2_CLIENT_CLIENT_SECRET_ERROR.getCode().equals(code)) { |
| | | throw exception(SdkErrorCodeConstants.OAUTH2_CLIENT_CLIENT_SECRET_ERROR); |
| | | } else if(SdkErrorCodeConstants.OAUTH2_CLIENT_NOT_EXISTS.getCode().equals(code)) { |
| | | throw exception(SdkErrorCodeConstants.OAUTH2_CLIENT_NOT_EXISTS); |
| | | } else if(SdkErrorCodeConstants.OAUTH2_CLIENT_DISABLE.getCode().equals(code)) { |
| | | throw exception(SdkErrorCodeConstants.OAUTH2_CLIENT_DISABLE); |
| | | } |
| | | accessToken = authMap.get("access_token").toString(); |
| | | refreshToken = authMap.get("refresh_token").toString(); |
| | |
| | | if (code == 401) { |
| | | authenticate(); |
| | | } else { |
| | | throw exception(ErrorCodeConstants.AUTH_REFRESH_TOKEN_ERROR); |
| | | throw exception(SdkErrorCodeConstants.AUTH_REFRESH_TOKEN_ERROR); |
| | | } |
| | | } else { |
| | | accessToken = authMap.get("access_token").toString(); |