|
@@ -17,12 +17,17 @@
|
|
|
|
|
|
package com.pig4cloud.pigx.common.security.feign;
|
|
|
|
|
|
+import cn.hutool.core.collection.CollUtil;
|
|
|
+import com.pig4cloud.pigx.common.core.constant.SecurityConstants;
|
|
|
import feign.RequestTemplate;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
+import org.springframework.cloud.security.oauth2.client.AccessTokenContextRelay;
|
|
|
import org.springframework.cloud.security.oauth2.client.feign.OAuth2FeignRequestInterceptor;
|
|
|
import org.springframework.security.oauth2.client.OAuth2ClientContext;
|
|
|
import org.springframework.security.oauth2.client.resource.OAuth2ProtectedResourceDetails;
|
|
|
|
|
|
+import java.util.Collection;
|
|
|
+
|
|
|
/**
|
|
|
* @author lengleng
|
|
|
* @date 2018/8/13
|
|
@@ -31,32 +36,39 @@ import org.springframework.security.oauth2.client.resource.OAuth2ProtectedResour
|
|
|
@Slf4j
|
|
|
public class PigxFeignClientInterceptor extends OAuth2FeignRequestInterceptor {
|
|
|
private final OAuth2ClientContext oAuth2ClientContext;
|
|
|
+ private final AccessTokenContextRelay accessTokenContextRelay;
|
|
|
|
|
|
/**
|
|
|
* Default constructor which uses the provided OAuth2ClientContext and Bearer tokens
|
|
|
* within Authorization header
|
|
|
*
|
|
|
- * @param oAuth2ClientContext provided context
|
|
|
- * @param resource type of resource to be accessed
|
|
|
+ * @param oAuth2ClientContext provided context
|
|
|
+ * @param resource type of resource to be accessed
|
|
|
+ * @param accessTokenContextRelay
|
|
|
*/
|
|
|
public PigxFeignClientInterceptor(OAuth2ClientContext oAuth2ClientContext
|
|
|
- , OAuth2ProtectedResourceDetails resource) {
|
|
|
+ , OAuth2ProtectedResourceDetails resource, AccessTokenContextRelay accessTokenContextRelay) {
|
|
|
super(oAuth2ClientContext, resource);
|
|
|
this.oAuth2ClientContext = oAuth2ClientContext;
|
|
|
+ this.accessTokenContextRelay = accessTokenContextRelay;
|
|
|
}
|
|
|
|
|
|
|
|
|
/**
|
|
|
* Create a template with the header of provided name and extracted extract
|
|
|
+ * 1. 如果使用 非web 请求,header 区别
|
|
|
+ * 2. 根据authentication 还原请求token
|
|
|
*
|
|
|
* @param template
|
|
|
*/
|
|
|
@Override
|
|
|
public void apply(RequestTemplate template) {
|
|
|
- if (template.headers().isEmpty()) {
|
|
|
+ Collection<String> fromHeader = template.headers().get(SecurityConstants.FROM);
|
|
|
+ if (CollUtil.isNotEmpty(fromHeader) && fromHeader.contains(SecurityConstants.FROM_IN)) {
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
+ accessTokenContextRelay.copyToken();
|
|
|
if (oAuth2ClientContext != null
|
|
|
&& oAuth2ClientContext.getAccessToken() != null) {
|
|
|
super.apply(template);
|