⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 samlrequest.java

📁 开放源代码的基于SAML的单点登录系统
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/*  * The OpenSAML License, Version 1.  * Copyright (c) 2002  * University Corporation for Advanced Internet Development, Inc.  * All rights reserved *  *  * Redistribution and use in source and binary forms, with or without  * modification, are permitted provided that the following conditions are met: *  * Redistributions of source code must retain the above copyright notice, this  * list of conditions and the following disclaimer. *  * Redistributions in binary form must reproduce the above copyright notice,  * this list of conditions and the following disclaimer in the documentation  * and/or other materials provided with the distribution, if any, must include  * the following acknowledgment: "This product includes software developed by  * the University Corporation for Advanced Internet Development  * <http://www.ucaid.edu>Internet2 Project. Alternately, this acknowledegement  * may appear in the software itself, if and wherever such third-party  * acknowledgments normally appear. *  * Neither the name of OpenSAML nor the names of its contributors, nor  * Internet2, nor the University Corporation for Advanced Internet Development,  * Inc., nor UCAID may be used to endorse or promote products derived from this  * software without specific prior written permission. For written permission,  * please contact opensaml@opensaml.org *  * Products derived from this software may not be called OpenSAML, Internet2,  * UCAID, or the University Corporation for Advanced Internet Development, nor  * may OpenSAML appear in their name, without prior written permission of the  * University Corporation for Advanced Internet Development. *  *  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"  * AND WITH ALL FAULTS. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A  * PARTICULAR PURPOSE, AND NON-INFRINGEMENT ARE DISCLAIMED AND THE ENTIRE RISK  * OF SATISFACTORY QUALITY, PERFORMANCE, ACCURACY, AND EFFORT IS WITH LICENSEE.  * IN NO EVENT SHALL THE COPYRIGHT OWNER, CONTRIBUTORS OR THE UNIVERSITY  * CORPORATION FOR ADVANCED INTERNET DEVELOPMENT, INC. BE LIABLE FOR ANY DIRECT,  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ package org.opensaml;import java.io.InputStream;import java.text.SimpleDateFormat;import java.util.ArrayList;import java.util.Collection;import java.util.Date;import java.util.Iterator;import java.util.TimeZone;import org.w3c.dom.*;/** *  Represents a SAML protocol request * * @author     Scott Cantor * @created    March 30, 2002 */public class SAMLRequest extends SAMLSignedObject implements Cloneable{    protected String requestId = new SAMLIdentifier().toString();    protected Date issueInstant = new Date();    protected ArrayList respondWiths = new ArrayList();    protected SAMLQuery query = null;    protected ArrayList assertionIdRefs = new ArrayList();    protected ArrayList artifacts = new ArrayList();    /**     *  Places the signature into the object's DOM to prepare for signing<p>     * @throws SAMLException    Thrown if an error occurs while placing the signature     */    protected void insertSignature() throws SAMLException {        // Goes after any RespondWith elements.        Element n=XML.getFirstChildElement(root);        while (n != null && XML.isElementNamed(n, XML.SAMLP_NS, "RespondWith"))            n = XML.getNextSiblingElement(n);        root.insertBefore(getSignatureElement(),n);    }    /**     *  Default constructor     */    public SAMLRequest() {    }    /**     *  Builds a SAML request out of its component parts<p>     *      *  The last three parameters are mutually exclusive of each other, and     *  two of them should be null. They will be evaluated in order.</p>     *     * @param  respondWiths         The types of SAML statements (as QNames) to     *      accept in the query response     * @param  query                A query to place in the request     * @param  assertionIdRefs      A set of AssertionIDRef values to dereference     * @param  artifacts            A set of artifacts to dereference     * @exception  SAMLException    Thrown if a request cannot be constructed from     *      the supplied information     */    public SAMLRequest(Collection respondWiths, SAMLQuery query, Collection assertionIdRefs, Collection artifacts)        throws SAMLException {        this.query = query;        if (assertionIdRefs != null)            this.assertionIdRefs.addAll(assertionIdRefs);        if (artifacts != null)            this.artifacts.addAll(artifacts);        if (respondWiths != null)            this.respondWiths.addAll(respondWiths);    }    /**     *  Reconstructs a request from a DOM tree     *     * @param  e                  The root of a DOM tree     * @exception  SAMLException  Thrown if the object cannot be constructed     */    public SAMLRequest(Element e) throws SAMLException {        fromDOM(e);    }    /**     *  Reconstructs a request from a stream     *     * @param  in                   A stream containing XML     * @exception  SAMLException  Raised if an exception occurs while constructing     *                              the object.     */    public SAMLRequest(InputStream in) throws SAMLException {        fromDOM(fromStream(in));    }        /**     * @see org.opensaml.SAMLObject#fromDOM(org.w3c.dom.Element)     */    public void fromDOM(Element e) throws SAMLException {        super.fromDOM(e);                if (config.getBooleanProperty("org.opensaml.strict-dom-checking") && !XML.isElementNamed(e,XML.SAMLP_NS,"Request"))            throw new MalformedException(SAMLException.RESPONDER,"SAMLRequest.fromDOM() requires samlp:Request at root");        if (Integer.parseInt(e.getAttributeNS(null, "MajorVersion")) != 1)            throw new MalformedException(SAMLException.VERSION, "SAMLRequest() detected incompatible request major version of " +                e.getAttributeNS(null, "MajorVersion"));        requestId = e.getAttributeNS(null, "RequestID");        e.setIdAttributeNode(e.getAttributeNodeNS(null, "RequestID"), true);        try {            SimpleDateFormat formatter = null;            String dateTime = e.getAttributeNS(null, "IssueInstant");            int dot = dateTime.indexOf('.');            if (dot > 0) {                formatter = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'");            }            else {                formatter = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'");            }            formatter.setTimeZone(TimeZone.getTimeZone("GMT"));            issueInstant = formatter.parse(dateTime);        }        catch (java.text.ParseException ex) {            throw new MalformedException(SAMLException.REQUESTER, "SAMLRequest() detected an invalid datetime while parsing request", ex);        }                // Process RespondWith elements.        Element n = XML.getFirstChildElement(e);        while (n != null && XML.isElementNamed(n, XML.SAMLP_NS, "RespondWith")) {            respondWiths.add(QName.getQNameTextNode((Text)n.getFirstChild()));            n = XML.getNextSiblingElement(n);        }                // Skip signature.        if (XML.isElementNamed(n, XML.XMLSIG_NS, "Signature"))            n = XML.getNextSiblingElement(n);                // We're pointed at one of the request content options...        if (XML.isElementNamed(n, XML.SAML_NS, "AssertionIDReference")) {            while (n != null) {                assertionIdRefs.add(n.getFirstChild().getNodeValue());                n = XML.getNextSiblingElement(n, XML.SAML_NS, "AssertionIDReference");            }        }        else if (XML.isElementNamed(n, XML.SAMLP_NS, "AssertionArtifact")) {            while (n != null) {                artifacts.add(n.getFirstChild().getNodeValue());                n = XML.getNextSiblingElement(n, XML.SAMLP_NS, "AssertionArtifact");            }        }        else {            query = SAMLQuery.getInstance(n);        }                checkValidity();    }    /**     *  Gets the request ID     *     * @return    The request ID     */    public String getId() {        return requestId;    }    /**     *  Sets the request ID     *      *  <b>NOTE:</b> Use this method with caution. Requests must contain unique identifiers     *  and only specialized applications should need to explicitly assign an identifier.     *     * @param   id    The request ID     */    public void setId(String id) {        if (XML.isEmpty(id))            throw new IllegalArgumentException("id cannot be null");        requestId = id;        if (root != null) {            unsign();            ((Element)root).getAttributeNodeNS(null,"RequestID").setNodeValue(id);        }    }    /**     *  Gets the issue timestamp of the request     *     * @return    The issue timestamp     */    public Date getIssueInstant() {        return issueInstant;    }    /**     *  Sets the issue timestamp of the request     *     * @param   issueInstant    The issue timestamp     */    public void setIssueInstant(Date issueInstant) {        if (issueInstant == null)            throw new IllegalArgumentException("issueInstant cannot be null");        if (root != null) {            unsign();            SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'");            formatter.setTimeZone(TimeZone.getTimeZone("GMT"));            ((Element)root).getAttributeNodeNS(null, "IssueInstant").setNodeValue(formatter.format(issueInstant));        }        this.issueInstant = issueInstant;    }    /**     *  Gets the types of statements the requester is prepared to accept     *     * @return    An iterator of QNames representing statement types     */    public Iterator getRespondWiths() {        return respondWiths.iterator();    }    /**     *  Sets the types of statements the requester is prepared to accept     *     * @param   respondWiths    An iterator of QNames representing statement types     */    public void setRespondWiths(Collection respondWiths) {        while (this.respondWiths.size() > 0)            removeRespondWith(0);                if (respondWiths != null) {            for (Iterator i = respondWiths.iterator(); i.hasNext(); )                addRespondWith((QName)i.next());        }    }    /**     *  Adds a statement type to the request     *      * @param respondWith     The type to add     */    public void addRespondWith(QName respondWith) {        if (respondWith != null) {            if (root != null) {                unsign();                                Element rw = root.getOwnerDocument().createElementNS(XML.SAMLP_NS, "RespondWith");                String rwns = respondWith.getNamespaceURI();                if (rwns == null)                    rwns = "";                if (!XML.SAML_NS.equals(rwns)) {                    rw.setAttributeNS(XML.XMLNS_NS, "xmlns:rw", rwns);                    rwns = "rw:";                }                else                    rwns = "saml:";                rw.appendChild(root.getOwnerDocument().createTextNode(rwns + respondWith.getLocalName()));                                Element last = XML.getLastChildElement(root, XML.SAMLP_NS, "RespondWith");                if (last == null)                    root.insertBefore(rw, root.getFirstChild());                else                    root.insertBefore(rw, last.getNextSibling());

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -