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

org.opensaml.saml.saml2.common.SAML2Support Maven / Gradle / Ivy

There is a newer version: 4.0.1
Show newest version
/*
 * 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.saml.saml2.common;

import java.util.List;

import javax.annotation.Nonnull;
import javax.annotation.Nullable;

import org.joda.time.DateTime;
import org.opensaml.core.xml.XMLObject;

/**
 * Utility class for common SAML 2 operations.
 */
public final class SAML2Support {
    
    /** Private constructor to disallow instantiation. */
    private SAML2Support() { }

    /**
     * Checks to see if the given XMLObject is still valid. An XMLObject is valid if, and only if, itself and every
     * ancestral {@link TimeBoundSAMLObject} is valid.
     * 
     * @param xmlObject the XML object tree to check
     * 
     * @return true of the tree is valid, false if not
     */
    public static boolean isValid(final XMLObject xmlObject) {
        if (xmlObject instanceof TimeBoundSAMLObject) {
            TimeBoundSAMLObject timeBoundObject = (TimeBoundSAMLObject) xmlObject;
            if (!timeBoundObject.isValid()) {
                return false;
            }
        }

        XMLObject parent = xmlObject.getParent();
        if (parent != null) {
            return isValid(parent);
        }

        return true;
    }

    /**
     * Gets the earliest expiration instant for a XMLObject. This method traverses the tree of SAMLObject rooted at the
     * given object and calculates the earliest expiration as the earliest of the following two items:
     * 
    *
  • the earliest validUntil time on a {@link TimeBoundSAMLObject}
  • *
  • the shortest duration on a {@link CacheableSAMLObject} added to the current time
  • *
* * @param xmlObject the XML object tree from which to get the earliest expiration time * * @return the earliest expiration time */ @Nullable public static DateTime getEarliestExpiration(@Nullable final XMLObject xmlObject) { DateTime now = new DateTime(); return getEarliestExpiration(xmlObject, null, now); } /** * Gets the earliest expiration instant within a metadata tree. * * @param xmlObject the target XMLObject to evaluate * @param candidateTime the candidate earliest expiration instant * @param now when this method was called * * @return the earliest expiration instant within a metadata tree. May be null if the input candiateTime * was null, otherwise will always be non-null. */ @Nullable public static DateTime getEarliestExpiration(@Nullable final XMLObject xmlObject, @Nullable DateTime candidateTime, @Nonnull DateTime now) { DateTime earliestExpiration = candidateTime; // Test duration based times if (xmlObject instanceof CacheableSAMLObject) { earliestExpiration = getEarliestExpirationFromCacheable((CacheableSAMLObject)xmlObject, earliestExpiration, now); } // Test instant based times if (xmlObject instanceof TimeBoundSAMLObject) { earliestExpiration = getEarliestExpirationFromTimeBound((TimeBoundSAMLObject)xmlObject, earliestExpiration); } // Inspect children if (xmlObject != null) { List children = xmlObject.getOrderedChildren(); if (children != null) { for (XMLObject child : xmlObject.getOrderedChildren()) { if (child != null) { earliestExpiration = getEarliestExpiration(child, earliestExpiration, now); } } } } return earliestExpiration; } /** * Gets the earliest effective expiration instant of the specified cacheable SAML object and the specified * candidate time. * * @param cacheableObject the target XMLObject to evaluate * @param candidateTime the candidate earliest expiration instant * @param now when this method was called * * @return the earliest effective expiration instant of the 2 targets. May be null if the input candiateTime * was null, otherwise will always be non-null. */ @Nullable public static DateTime getEarliestExpirationFromCacheable(@Nonnull CacheableSAMLObject cacheableObject, @Nullable DateTime candidateTime, @Nonnull DateTime now) { DateTime earliestExpiration = candidateTime; if (cacheableObject.getCacheDuration() != null && cacheableObject.getCacheDuration().longValue() > 0) { DateTime elementExpirationTime = now.plus(cacheableObject.getCacheDuration().longValue()); if (earliestExpiration == null) { earliestExpiration = elementExpirationTime; } else { if (elementExpirationTime != null && elementExpirationTime.isBefore(earliestExpiration)) { earliestExpiration = elementExpirationTime; } } } return earliestExpiration; } /** * Gets the earliest effective expiration instant of the specified time-bound SAML object and the specified * candidate time. * * @param timeBoundObject the target XMLObject to evaluate * @param candidateTime the earliest expiration instant * * @return the earliest effective expiration instant of the 2 targets. May be null if the input candiateTime * was null, otherwise will always be non-null. */ @Nullable public static DateTime getEarliestExpirationFromTimeBound(@Nonnull TimeBoundSAMLObject timeBoundObject, @Nullable DateTime candidateTime) { DateTime earliestExpiration = candidateTime; DateTime elementExpirationTime = timeBoundObject.getValidUntil(); if (earliestExpiration == null) { earliestExpiration = elementExpirationTime; } else { if (elementExpirationTime != null && elementExpirationTime.isBefore(earliestExpiration)) { earliestExpiration = elementExpirationTime; } } return earliestExpiration; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy