com.synopsys.integration.coverity.ws.ClientAuthenticationHandlerWSS Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of coverity-common Show documentation
Show all versions of coverity-common Show documentation
A library for using various capabilities of Coverity.
/**
* coverity-common
*
* Copyright (C) 2018 Black Duck Software, Inc.
* http://www.blackducksoftware.com/
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF 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 com.synopsys.integration.coverity.ws;
import java.io.ByteArrayInputStream;
import java.io.InputStream;
import java.nio.charset.StandardCharsets;
import java.util.HashSet;
import java.util.Set;
import javax.security.auth.callback.Callback;
import javax.security.auth.callback.CallbackHandler;
import javax.security.auth.callback.UnsupportedCallbackException;
import javax.xml.namespace.QName;
import javax.xml.soap.SOAPMessage;
import javax.xml.ws.handler.MessageContext;
import javax.xml.ws.handler.soap.SOAPHandler;
import javax.xml.ws.handler.soap.SOAPMessageContext;
import org.apache.commons.text.StringEscapeUtils;
import com.sun.xml.wss.ProcessingContext;
import com.sun.xml.wss.XWSSProcessor;
import com.sun.xml.wss.XWSSProcessorFactory;
import com.sun.xml.wss.XWSSecurityException;
/**
* SOAP handler for user authentication using ws-security. This mechanism inserts the user's user name and password in
* the SOAP header of each message.
*/
public class ClientAuthenticationHandlerWSS implements SOAPHandler {
public static final String WSS_AUTH_PREFIX = "wsse";
public static final String WSS_AUTH_LNAME = "Security";
public static final String WSS_AUTH_URI = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd";
private XWSSProcessor xwssProcessor = null;
public ClientAuthenticationHandlerWSS(String userName, String password) {
String xwssConfigText = " " +
" " +
" " +
" ";
InputStream xwssConfig = new ByteArrayInputStream(xwssConfigText.getBytes(StandardCharsets.UTF_8));
ClassLoader oldCCL = Thread.currentThread().getContextClassLoader();
try {
Thread.currentThread().setContextClassLoader(getClass().getClassLoader());
XWSSProcessorFactory factory = XWSSProcessorFactory.newInstance();
xwssProcessor = factory.createProcessorForSecurityConfiguration(xwssConfig, new SecurityEnvironmentHandler());
} catch (XWSSecurityException se) {
throw new RuntimeException(se);
} finally {
Thread.currentThread().setContextClassLoader(oldCCL);
}
}
public boolean handleFault(SOAPMessageContext mc) {
return true;
}
public void close(MessageContext mc) {
}
public Set getHeaders() {
QName securityHeader = new QName(WSS_AUTH_URI, WSS_AUTH_LNAME, WSS_AUTH_PREFIX);
HashSet headers = new HashSet();
headers.add(securityHeader);
return headers;
}
public boolean handleMessage(SOAPMessageContext smc) {
Boolean outbound = ((Boolean) smc.get(MessageContext.MESSAGE_OUTBOUND_PROPERTY));
SOAPMessage msg = smc.getMessage();
if (outbound) {
try {
ProcessingContext context = xwssProcessor.createProcessingContext(msg);
context.setSOAPMessage(msg);
SOAPMessage secureMsg = xwssProcessor.secureOutboundMessage(context);
smc.setMessage(secureMsg);
} catch (XWSSecurityException ex) {
throw new RuntimeException(ex);
} catch (Exception e) {
throw new RuntimeException(e);
}
}
return true;
}
private static class SecurityEnvironmentHandler implements CallbackHandler {
public void handle(Callback[] callbacks) throws UnsupportedCallbackException {
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy