Created
October 30, 2021 01:07
-
-
Save xbkaishui/49a052a017ee8441e7a6833a65874123 to your computer and use it in GitHub Desktop.
grpc-host-intercepter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ClientHostInterceptor implements ClientInterceptor { | |
private String host; | |
private static Metadata.Key<String> HOST_HEADER = | |
Metadata.Key.of("Host", Metadata.ASCII_STRING_MARSHALLER); | |
public ClientHostInterceptor(final String host) { | |
this.host = host; | |
} | |
public String getHost() { | |
return host; | |
} | |
public void setHost(final String host) { | |
this.host = host; | |
} | |
@Override | |
public <ReqT, RespT> ClientCall<ReqT, RespT> interceptCall(final MethodDescriptor<ReqT, RespT> method, | |
final CallOptions callOptions, final Channel next) { | |
log.info("Intercepted " + method.getFullMethodName()); | |
ClientCall<ReqT, RespT> call = next.newCall(method, callOptions); | |
call = new ForwardingClientCall.SimpleForwardingClientCall<ReqT, RespT>(call) { | |
@Override | |
public void start(Listener<RespT> responseListener, Metadata headers) { | |
if (StringUtils.isNotEmpty(host)) { | |
log.info("Attaching host header. {}", host); | |
headers.put(HOST_HEADER, host); | |
} | |
super.start(responseListener, headers); | |
} | |
}; | |
return call; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment