Package org.jboss.identity.federation.api.saml.v2.response

Source Code of org.jboss.identity.federation.api.saml.v2.response.SAML2Response

/*
* JBoss, Home of Professional Open Source.
* Copyright 2008, Red Hat Middleware LLC, and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.identity.federation.api.saml.v2.response;

import java.io.InputStream;
import java.io.OutputStream;
import java.io.Writer;
import java.util.List;

import javax.xml.bind.Binder;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Marshaller;
import javax.xml.bind.Unmarshaller;
import javax.xml.datatype.XMLGregorianCalendar;
import javax.xml.parsers.ParserConfigurationException;

import org.jboss.identity.federation.core.exceptions.ConfigurationException;
import org.jboss.identity.federation.core.saml.v2.constants.JBossSAMLURIConstants;
import org.jboss.identity.federation.core.saml.v2.exceptions.IssueInstantMissingException;
import org.jboss.identity.federation.core.saml.v2.factories.JBossSAMLAuthnResponseFactory;
import org.jboss.identity.federation.core.saml.v2.factories.JBossSAMLBaseFactory;
import org.jboss.identity.federation.core.saml.v2.factories.SAMLAssertionFactory;
import org.jboss.identity.federation.core.saml.v2.factories.SAMLProtocolFactory;
import org.jboss.identity.federation.core.saml.v2.holders.IDPInfoHolder;
import org.jboss.identity.federation.core.saml.v2.holders.IssuerInfoHolder;
import org.jboss.identity.federation.core.saml.v2.holders.SPInfoHolder;
import org.jboss.identity.federation.core.saml.v2.util.AssertionUtil;
import org.jboss.identity.federation.core.saml.v2.util.DocumentUtil;
import org.jboss.identity.federation.core.saml.v2.util.JAXBElementMappingUtil;
import org.jboss.identity.federation.saml.v2.assertion.AssertionType;
import org.jboss.identity.federation.saml.v2.assertion.AttributeStatementType;
import org.jboss.identity.federation.saml.v2.assertion.AttributeType;
import org.jboss.identity.federation.saml.v2.assertion.AuthnContextType;
import org.jboss.identity.federation.saml.v2.assertion.AuthnStatementType;
import org.jboss.identity.federation.saml.v2.assertion.EncryptedElementType;
import org.jboss.identity.federation.saml.v2.assertion.NameIDType;
import org.jboss.identity.federation.saml.v2.assertion.ObjectFactory;
import org.jboss.identity.federation.saml.v2.protocol.ResponseType;
import org.w3c.dom.Document;
import org.w3c.dom.Node;
import org.xml.sax.SAXException;

/**
* API for dealing with SAML2 Response objects
* @author Anil.Saldhana@redhat.com
* @since Jan 5, 2009
*/
public class SAML2Response
{
   /**
    * Create an assertion
    * @param id
    * @param issuer
    * @return
    */
   public AssertionType createAssertion(String id, NameIDType issuer)
   {
      return AssertionUtil.createAssertion(id, issuer);
   }
  
   /**
    * Create an AuthnStatement
    * @param authnContextDeclRef such as JBossSAMLURIConstants.AC_PASSWORD_PROTECTED_TRANSPORT
    * @param issueInstant
    * @return
    */
   public AuthnStatementType createAuthnStatement(String authnContextDeclRef,
         XMLGregorianCalendar issueInstant)
   {
      ObjectFactory objectFactory = SAMLAssertionFactory.getObjectFactory();
      AuthnStatementType authnStatement = objectFactory.createAuthnStatementType();
      authnStatement.setAuthnInstant(issueInstant);
      AuthnContextType act = objectFactory.createAuthnContextType();
      String authContextDeclRef = JBossSAMLURIConstants.AC_PASSWORD_PROTECTED_TRANSPORT.get();
      act.getContent().add(objectFactory.createAuthnContextDeclRef(authContextDeclRef));
      authnStatement.setAuthnContext(act);
      return authnStatement;
   }
   /**
    * Given a set of roles, create an attribute statement
    * @param roles
    * @return
    */
   public AttributeStatementType createAttributeStatement(List<String> roles)
   {
      AttributeStatementType attrStatement = JBossSAMLBaseFactory.createAttributeStatement();
      for(String role: roles)
      {
         AttributeType attr = JBossSAMLBaseFactory.createAttributeForRole(role);
         attrStatement.getAttributeOrEncryptedAttribute().add(attr);
      }
      return attrStatement;
   }
  
   /**
    * Create a ResponseType
    * @param ID id of the response
    * @param sp holder with the information about the Service Provider
    * @param idp holder with the information on the Identity Provider
    * @param issuerInfo holder with information on the issuer
    * @return
    * @throws ConfigurationException
    */
   public ResponseType createResponseType(String ID, SPInfoHolder sp, IDPInfoHolder idp, IssuerInfoHolder issuerInfo)
   throws ConfigurationException
   {
      return JBossSAMLAuthnResponseFactory.createResponseType(ID, sp, idp, issuerInfo);
   }
  
   /**
    * Create an empty response type
    * @return
    */
   public ResponseType createResponseType()
   {
      return JBossSAMLAuthnResponseFactory.createResponseType();
   }
  
   /**
    * Create a ResponseType
    * @param ID
    * @param issuerInfo
    * @param assertion
    * @return
    * @throws ConfigurationException
    */
   public ResponseType createResponseType(String ID, IssuerInfoHolder issuerInfo, AssertionType assertion)
   throws ConfigurationException
   {
      return JBossSAMLAuthnResponseFactory.createResponseType(ID, issuerInfo, assertion);
   }
  
   /**
    * Add validity conditions to the SAML2 Assertion
    * @param assertion
    * @param durationInMilis  
    * @throws ConfigurationException
    * @throws IssueInstantMissingException
    */
   public void createTimedConditions(AssertionType assertion, long durationInMilis)
   throws ConfigurationException, IssueInstantMissingException 
   {
      AssertionUtil.createTimedConditions(assertion, durationInMilis);
   }
  
   /**
    * Get an encrypted assertion from the stream
    * @param is
    * @return
    * @throws SAXException
    * @throws JAXBException
    */
   @SuppressWarnings("unchecked")
   public EncryptedElementType getEncryptedAssertion(InputStream is) throws JAXBException, SAXException
   {
      if(is == null)
         throw new IllegalArgumentException("inputstream is null");
     
      Unmarshaller un = JBossSAMLAuthnResponseFactory.getUnmarshaller();
      JAXBElement<EncryptedElementType> jaxb = (JAXBElement<EncryptedElementType>) un.unmarshal(is);
      return jaxb.getValue();
   }
  
   /**
    * Read an assertion from an input stream
    * @param is
    * @return
    * @throws JAXBException
    * @throws SAXException
    */
   @SuppressWarnings("unchecked")
   public AssertionType getAssertionType(InputStream is) throws JAXBException, SAXException
   {
      if(is == null)
         throw new IllegalArgumentException("inputstream is null");
     
      Unmarshaller un = JBossSAMLAuthnResponseFactory.getUnmarshaller();
      JAXBElement<AssertionType> jaxb = (JAXBElement<AssertionType>) un.unmarshal(is);
      return jaxb.getValue();
   }
  
   /**
    * Read a ResponseType from an input stream
    * @param is
    * @return
    * @throws SAXException
    * @throws JAXBException 
    */
   @SuppressWarnings("unchecked")
   public ResponseType getResponseType(InputStream is) throws JAXBException, SAXException
   {
      if(is == null)
         throw new IllegalArgumentException("inputstream is null");
     
      Unmarshaller un = JBossSAMLAuthnResponseFactory.getUnmarshaller();
      JAXBElement<ResponseType> jaxbAuthnRequestType = (JAXBElement<ResponseType>) un.unmarshal(is);
      return jaxbAuthnRequestType.getValue()
   }
  
   /**
    * Convert an EncryptedElement into a Document
    * @param encryptedElementType
    * @return
    * @throws JAXBException
    * @throws ParserConfigurationException
    */
   public Document convert(EncryptedElementType encryptedElementType)
   throws JAXBException, ParserConfigurationException
   {
      JAXBContext jaxb = JAXBContext.newInstance(EncryptedElementType.class);
      Binder<Node> binder = jaxb.createBinder();
     
      Document doc = DocumentUtil.createDocument();
      binder.marshal(JAXBElementMappingUtil.get(encryptedElementType), doc);
      return doc;
   }
  
   /**
    * Get the Binder
    * @return
    * @throws JAXBException
    */
   public Binder<Node> getBinder() throws JAXBException
   {
      JAXBContext jaxb = JAXBContext.newInstance(ResponseType.class);
      return jaxb.createBinder();
   }
  
   /**
    * Convert a SAML2 Response into a Document
    * @param responseType
    * @return
    * @throws JAXBException
    * @throws ParserConfigurationException
    */
   public Document convert(ResponseType responseType) throws JAXBException, ParserConfigurationException
   {
      JAXBContext jaxb = JAXBContext.newInstance(ResponseType.class);
      Binder<Node> binder = jaxb.createBinder();

      Document doc = DocumentUtil.createDocument();
      binder.marshal(JAXBElementMappingUtil.get(responseType), doc);
      return doc;
   }
  
   /**
    * Marshall the response type to the output stream
    * <p> <b>Note:</b> JAXB marshaller by default picks up arbitrary namespace
    * prefixes (ns2,ns3 etc). The NamespacePrefixMapper is a Sun RI customization
    * that may be needed (this is a TODO) to get a prefix such as saml, samlp </b>
    *
    * @param responseType
    * @param os
    * @throws SAXException
    * @throws JAXBException
    */
   public void marshall(ResponseType responseType, OutputStream os) throws JAXBException, SAXException
   {
      Marshaller marshaller = JBossSAMLAuthnResponseFactory.getValidatingMarshaller();
      JAXBElement<ResponseType> jaxb = SAMLProtocolFactory.getObjectFactory().createResponse(responseType);
      marshaller.marshal(jaxb, os);
   }
  
   /**
    * Marshall the ResponseType into a writer
    * @param responseType
    * @param writer
    * @throws SAXException
    * @throws JAXBException 
    */
   public void marshall(ResponseType responseType, Writer writer) throws JAXBException, SAXException
   {
      Marshaller marshaller = JBossSAMLAuthnResponseFactory.getMarshaller();
      JAXBElement<ResponseType> jaxb = SAMLProtocolFactory.getObjectFactory().createResponse(responseType);
      marshaller.marshal(jaxb, writer);
   }
}
TOP

Related Classes of org.jboss.identity.federation.api.saml.v2.response.SAML2Response

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.