org.opensaml.soap.wsaddressing.messaging.impl.ValidateActionHandler 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.soap.wsaddressing.messaging.impl;
import java.util.List;
import java.util.Objects;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import net.shibboleth.utilities.java.support.component.ComponentSupport;
import net.shibboleth.utilities.java.support.primitive.StringSupport;
import org.opensaml.core.xml.XMLObject;
import org.opensaml.messaging.context.MessageContext;
import org.opensaml.messaging.handler.AbstractMessageHandler;
import org.opensaml.messaging.handler.MessageHandlerException;
import org.opensaml.soap.messaging.SOAPMessagingSupport;
import org.opensaml.soap.wsaddressing.Action;
import org.opensaml.soap.wsaddressing.WSAddressingConstants;
import org.opensaml.soap.wsaddressing.messaging.WSAddressingContext;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Handler implementation that checks a wsa:Action header against an expected value.
*
*
* If the header is present, the value is first checked against the value obtained from subcontext data
* {@link WSAddressingContext#getActionURI()}. If that was not supplied, then the locally-configured value
* from {@link #getExpectedActionURI()} is used. If neither expected value is available, the check is skipped.
*
*/
public class ValidateActionHandler extends AbstractMessageHandler {
/** Logger. */
private Logger log = LoggerFactory.getLogger(ValidateActionHandler.class);
/** The expected Action URI value. */
private String expectedActionURI;
/**
* Get the expected Action URI.
*
* @return the expected URI, or null
*/
@Nullable public String getExpectedActionURI() {
return expectedActionURI;
}
/**
* Set the expected Action URI value.
*
* @param uri the new URI value
*/
public void setExpectedActionURI(@Nullable final String uri) {
ComponentSupport.ifInitializedThrowUnmodifiabledComponentException(this);
ComponentSupport.ifDestroyedThrowDestroyedComponentException(this);
expectedActionURI = StringSupport.trimOrNull(uri);
}
/** {@inheritDoc} */
protected boolean doPreInvoke(@Nonnull final MessageContext messageContext) throws MessageHandlerException {
if (!super.doPreInvoke(messageContext)) {
return false;
}
// A non-null subcontext value will override what is statically configured
WSAddressingContext addressing = messageContext.getSubcontext(WSAddressingContext.class, false);
if (addressing != null && addressing.getActionURI() != null) {
expectedActionURI = addressing.getActionURI();
}
if (expectedActionURI == null) {
log.debug("No expected WS-Addressing Action URI found locally or in message context, skipping evaluation");
return false;
}
return true;
}
/** {@inheritDoc} */
protected void doInvoke(MessageContext messageContext) throws MessageHandlerException {
Action header = getAction(messageContext);
String headerValue = header != null ? StringSupport.trimOrNull(header.getValue()) : null;
log.debug("Checking inbound message WS-Addressing Action URI value: {}", headerValue);
if (Objects.equals(getExpectedActionURI(), headerValue)) {
log.debug("Inbound WS-Addressing Action URI matched expected value");
SOAPMessagingSupport.registerUnderstoodHeader(messageContext, header);
} else {
log.warn("Inbound WS-Addressing Action URI '{}' did not match the expected value '{}'", headerValue,
getExpectedActionURI());
SOAPMessagingSupport.registerSOAP11Fault(messageContext,
WSAddressingConstants.SOAP_FAULT_ACTION_NOT_SUPPORTED,
"Action URI not supported: " + headerValue, null, null, null);
throw new MessageHandlerException("Inbound WS-Addressing Action URI did not match the expected value");
}
}
/**
* Get message Action header.
*
* @param messageContext the current message context
* @return the message Action header
*/
protected Action getAction(@Nonnull final MessageContext messageContext) {
List actions = SOAPMessagingSupport.getInboundHeaderBlock(messageContext, Action.ELEMENT_NAME);
if (actions != null && !actions.isEmpty()) {
return (Action) actions.get(0);
}
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy