All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
io.helidon.webclient.security.WebClientSecurity Maven / Gradle / Ivy
/*
* Copyright (c) 2020, 2022 Oracle and/or its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.helidon.webclient.security;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import java.util.UUID;
import java.util.logging.Logger;
import io.helidon.common.context.Context;
import io.helidon.common.context.Contexts;
import io.helidon.common.reactive.Single;
import io.helidon.security.EndpointConfig;
import io.helidon.security.OutboundSecurityClientBuilder;
import io.helidon.security.OutboundSecurityResponse;
import io.helidon.security.Security;
import io.helidon.security.SecurityContext;
import io.helidon.security.SecurityEnvironment;
import io.helidon.security.providers.common.OutboundConfig;
import io.helidon.webclient.WebClientRequestHeaders;
import io.helidon.webclient.WebClientServiceRequest;
import io.helidon.webclient.spi.WebClientService;
import io.opentracing.Span;
import io.opentracing.SpanContext;
import io.opentracing.Tracer;
import io.opentracing.tag.Tags;
/**
* Client service for security propagation.
*/
public class WebClientSecurity implements WebClientService {
private static final Logger LOGGER = Logger.getLogger(WebClientSecurity.class.getName());
private static final String PROVIDER_NAME = "io.helidon.security.rest.client.security.providerName";
private final Security security;
private WebClientSecurity() {
this(null);
}
private WebClientSecurity(Security security) {
this.security = security;
}
/**
* Creates new instance of client security service.
*
* @return client security service
*/
public static WebClientSecurity create() {
Context context = Contexts.context().orElseGet(Contexts::globalContext);
return context.get(Security.class)
.map(WebClientSecurity::new) // if available, use constructor with Security parameter
.orElseGet(WebClientSecurity::new); // else use constructor without Security parameter
}
/**
* Creates new instance of client security service base on {@link Security}.
*
* @param security security instance
* @return client security service
*/
public static WebClientSecurity create(Security security) {
// if we have one more configuration parameter, we need to switch to builder based pattern
return new WebClientSecurity(security);
}
@Override
public Single request(WebClientServiceRequest request) {
if ("true".equalsIgnoreCase(request.properties().get(OutboundConfig.PROPERTY_DISABLE_OUTBOUND))) {
return Single.just(request);
}
Context requestContext = request.context();
// context either from request or create a new one
Optional maybeContext = requestContext.get(SecurityContext.class);
SecurityContext context;
if (null == security) {
if (maybeContext.isEmpty()) {
return Single.just(request);
} else {
context = maybeContext.get();
}
} else {
// we have our own security - we need to use this instance for outbound,
// so we cannot re-use the context
context = createContext(request);
}
Span span = context.tracer()
.buildSpan("security:outbound")
.asChildOf(context.tracingSpan())
.start();
String explicitProvider = request.properties().get(PROVIDER_NAME);
OutboundSecurityClientBuilder clientBuilder;
try {
SecurityEnvironment.Builder outboundEnv = context.env()
.derive()
.clearHeaders()
.clearQueryParams();
outboundEnv.method(request.method().name())
.path(request.path().toString())
.targetUri(request.uri())
.headers(request.headers().toMap())
.queryParams(request.queryParams());
EndpointConfig.Builder outboundEp = context.endpointConfig().derive();
Map propMap = request.properties();
for (String name : propMap.keySet()) {
Optional.ofNullable(request.properties().get(name))
.ifPresent(property -> outboundEp.addAtribute(name, property));
}
clientBuilder = context.outboundClientBuilder()
.outboundEnvironment(outboundEnv)
.outboundEndpointConfig(outboundEp)
.explicitProvider(explicitProvider);
} catch (Exception e) {
traceError(span, e, null);
throw e;
}
return Single.create(clientBuilder.submit()
.thenApply(providerResponse -> processResponse(request, span, providerResponse)));
}
private WebClientServiceRequest processResponse(WebClientServiceRequest request,
Span span,
OutboundSecurityResponse providerResponse) {
try {
switch (providerResponse.status()) {
case FAILURE:
case FAILURE_FINISH:
traceError(span,
providerResponse.throwable().orElse(null),
providerResponse.description()
.orElse(providerResponse.status().toString()));
break;
case ABSTAIN:
case SUCCESS:
case SUCCESS_FINISH:
default:
break;
}
Map> newHeaders = providerResponse.requestHeaders();
LOGGER.finest(() -> "Client filter header(s). SIZE: " + newHeaders.size());
WebClientRequestHeaders clientHeaders = request.headers();
for (Map.Entry> entry : newHeaders.entrySet()) {
LOGGER.finest(() -> " + Header: " + entry.getKey() + ": " + entry.getValue());
//replace existing
clientHeaders.remove(entry.getKey());
for (String value : entry.getValue()) {
clientHeaders.put(entry.getKey(), value);
}
}
span.finish();
return request;
} catch (Exception e) {
traceError(span, e, null);
throw e;
}
}
private SecurityContext createContext(WebClientServiceRequest request) {
SecurityContext.Builder builder = security.contextBuilder(UUID.randomUUID().toString())
.endpointConfig(EndpointConfig.builder()
.build())
.env(SecurityEnvironment.builder()
.path(request.path().toString())
.build());
request.context().get(Tracer.class).ifPresent(builder::tracingTracer);
request.context().get(SpanContext.class).ifPresent(builder::tracingSpan);
return builder.build();
}
static void traceError(Span span, Throwable throwable, String description) {
// failed
if (null != throwable) {
Tags.ERROR.set(span, true);
span.log(Map.of("event", "error",
"error.object", throwable));
} else {
Tags.ERROR.set(span, true);
span.log(Map.of("event", "error",
"message", description,
"error.kind", "SecurityException"));
}
span.finish();
}
}