org.opensaml.saml.common.binding.impl.AddChannelBindingsHeaderHandler Maven / Gradle / Ivy
/*
* Licensed to the University Corporation for Advanced Internet Development,
* Inc. (UCAID) under one or more contributor license agreements. See the
* NOTICE file distributed with this work for additional information regarding
* copyright ownership. The UCAID licenses this file to You 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 org.opensaml.saml.common.binding.impl;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import net.shibboleth.utilities.java.support.component.ComponentSupport;
import net.shibboleth.utilities.java.support.logic.Constraint;
import org.opensaml.core.xml.config.XMLObjectProviderRegistrySupport;
import org.opensaml.messaging.context.MessageContext;
import org.opensaml.messaging.context.navigate.ChildContextLookup;
import org.opensaml.messaging.handler.AbstractMessageHandler;
import org.opensaml.messaging.handler.MessageHandlerException;
import org.opensaml.saml.common.SAMLObjectBuilder;
import org.opensaml.saml.common.messaging.context.ChannelBindingsContext;
import org.opensaml.saml.ext.saml2cb.ChannelBindings;
import org.opensaml.soap.messaging.SOAPMessagingSupport;
import org.opensaml.soap.soap11.ActorBearing;
import org.opensaml.soap.util.SOAPSupport;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.google.common.base.Function;
/**
* MessageHandler to add {@link ChannelBindings} headers to an outgoing SOAP envelope.
*/
public class AddChannelBindingsHeaderHandler extends AbstractMessageHandler {
/** Class logger. */
@Nonnull private final Logger log = LoggerFactory.getLogger(AddChannelBindingsHeaderHandler.class);
/** Strategy used to locate the {@link ChannelBindingsContext} to operate on. */
@Nonnull private Function channelBindingsContextLookupStrategy;
/** The ChannelBindingsContext to operate on. */
@Nullable private ChannelBindingsContext channelBindingsContext;
/** Constructor. */
public AddChannelBindingsHeaderHandler() {
super();
channelBindingsContextLookupStrategy = new ChildContextLookup<>(ChannelBindingsContext.class);
}
/**
* Set the strategy used to locate the {@link ChannelBindingsContext} to operate on.
*
* @param strategy lookup strategy
*/
public void setChannelBindingsContextLookupStrategy(
@Nonnull final Function strategy) {
ComponentSupport.ifInitializedThrowUnmodifiabledComponentException(this);
channelBindingsContextLookupStrategy = Constraint.isNotNull(strategy,
"ChannelBindingsContext lookup strategy cannot be null");
}
/** {@inheritDoc} */
@Override
protected boolean doPreInvoke(@Nonnull final MessageContext messageContext) throws MessageHandlerException {
if (!super.doPreInvoke(messageContext)) {
return false;
}
channelBindingsContext = channelBindingsContextLookupStrategy.apply(messageContext);
if (channelBindingsContext == null || channelBindingsContext.getChannelBindings().isEmpty()) {
log.debug("{} No ChannelBindings to add, nothing to do", getLogPrefix());
return false;
}
return true;
}
/** {@inheritDoc} */
@Override
protected void doInvoke(@Nonnull final MessageContext messageContext) throws MessageHandlerException {
final SAMLObjectBuilder cbBuilder = (SAMLObjectBuilder)
XMLObjectProviderRegistrySupport.getBuilderFactory().getBuilderOrThrow(
ChannelBindings.DEFAULT_ELEMENT_NAME);
for (final ChannelBindings cb : channelBindingsContext.getChannelBindings()) {
final ChannelBindings header = cbBuilder.buildObject();
header.setType(cb.getType());
SOAPSupport.addSOAP11MustUnderstandAttribute(header, true);
SOAPSupport.addSOAP11ActorAttribute(header, ActorBearing.SOAP11_ACTOR_NEXT);
try {
SOAPMessagingSupport.addHeaderBlock(messageContext, header);
} catch (final Exception e) {
throw new MessageHandlerException(e);
}
}
}
}