All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eap7.eap6.tests.data.data-ws-security.SamlCallbackHandler Maven / Gradle / Ivy

The newest version!
import java.io.IOException;
import java.io.InputStream;
import java.security.cert.X509Certificate;
import java.util.Collections;
import java.util.Properties;

import javax.security.auth.callback.Callback;
import javax.security.auth.callback.CallbackHandler;
import javax.security.auth.callback.UnsupportedCallbackException;

import org.apache.ws.security.components.crypto.Crypto;
import org.apache.ws.security.components.crypto.CryptoFactory;
import org.apache.ws.security.components.crypto.CryptoType;
import org.apache.ws.security.saml.ext.SAMLCallback;
import org.apache.ws.security.saml.ext.bean.AttributeBean;
import org.apache.ws.security.saml.ext.bean.AttributeStatementBean;
import org.apache.ws.security.saml.ext.bean.KeyInfoBean;
import org.apache.ws.security.saml.ext.bean.KeyInfoBean.CERT_IDENTIFIER;
import org.apache.ws.security.saml.ext.bean.SubjectBean;
import org.apache.ws.security.saml.ext.builder.SAML1Constants;
import org.apache.ws.security.saml.ext.builder.SAML2Constants;
import org.opensaml.common.SAMLVersion;

public class SamlCallbackHandler implements CallbackHandler
{
    private String confirmationMethod = SAML2Constants.CONF_BEARER;

    private boolean saml2;

    public SamlCallbackHandler()
    {
    }

    public void setConfirmationMethod(String confirmationMethod)
    {
        this.confirmationMethod = confirmationMethod;
    }

    public void setSaml2(boolean isSaml2)
    {
        this.saml2 = isSaml2;
    }

    public void handle(Callback[] callbacks) throws IOException, UnsupportedCallbackException
    {
        for (int i = 0; i < callbacks.length; i++)
        {
            if (callbacks[i] instanceof SAMLCallback)
            {
                SAMLCallback callback = (SAMLCallback) callbacks[i];
                if (this.saml2)
                {
                    callback.setSamlVersion(SAMLVersion.VERSION_20);
                }
                callback.setIssuer("sts");
                String subjectName = "uid=sts-client,o=jbws-cxf-sts.com";
                String subjectQualifier = "www.jbws-cxf-sts.org";

                SubjectBean subjectBean = new SubjectBean(subjectName, subjectQualifier, this.confirmationMethod);
                if (SAML2Constants.CONF_HOLDER_KEY.equals(this.confirmationMethod)
                        || SAML1Constants.CONF_HOLDER_KEY.equals(this.confirmationMethod))
                {
                    try
                    {
                        KeyInfoBean keyInfo = createKeyInfo();
                        subjectBean.setKeyInfo(keyInfo);
                    }
                    catch (Exception ex)
                    {
                        throw new IOException("Problem creating KeyInfo: " + ex.getMessage());
                    }
                }

                callback.setSubject(subjectBean);

                AttributeStatementBean attrBean = new AttributeStatementBean();
                attrBean.setSubject(subjectBean);

                AttributeBean attributeBean = new AttributeBean();
                if (this.saml2)
                {
                    attributeBean.setQualifiedName("subject-role");
                }
                else
                {
                    attributeBean.setSimpleName("subject-role");
                    attributeBean.setQualifiedName("http://custom-ns");
                }
                attributeBean.setAttributeValues(Collections.singletonList("system-user"));
                attrBean.setSamlAttributes(Collections.singletonList(attributeBean));
                callback.setAttributeStatementData(Collections.singletonList(attrBean));
            }
        }
    }

    protected KeyInfoBean createKeyInfo() throws Exception
    {
        InputStream is = Thread.currentThread().getContextClassLoader().getResource("META-INF/alice.properties").openStream();
        Properties props = new Properties();
        try
        {
            props.load(is);
        }
        finally
        {
            is.close();
        }
        Crypto crypto = CryptoFactory.getInstance(props);
        CryptoType cryptoType = new CryptoType(CryptoType.TYPE.ALIAS);
        cryptoType.setAlias("alice");
        X509Certificate[] certs = crypto.getX509Certificates(cryptoType);

        KeyInfoBean keyInfo = new KeyInfoBean();
        keyInfo.setCertificate(certs[0]);
        keyInfo.setCertIdentifer(CERT_IDENTIFIER.X509_CERT);

        return keyInfo;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy