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

org.picketlink.identity.federation.web.config.PropertiesIdentityURLProvider Maven / Gradle / Ivy

There is a newer version: 2.7.1.Final
Show newest version
/*
 * JBoss, Home of Professional Open Source
 *
 * Copyright 2013 Red Hat, Inc. and/or its affiliates.
 *
 * Licensed 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.picketlink.identity.federation.web.config;

import javax.servlet.ServletContext;
import java.io.IOException;
import java.io.InputStream;
import java.util.HashMap;
import java.util.Map;
import java.util.Properties;
import java.util.Set;

/**
 * Implementation of {@link org.picketlink.identity.federation.web.config.IdentityURLConfigurationProvider}
 * using a properties file
 *
 * @author Anil Saldhana
 * @since January 23, 2014
 */
public class PropertiesIdentityURLProvider implements IdentityURLConfigurationProvider {

    private ClassLoader classLoader = null;

    private ServletContext servletContext = null;

    public static final String PROP_FILE_NAME = "idpmap.properties";

    public static final String WEB_INF_PROP_FILE_NAME = "/WEB-INF/idpmap.properties";

    @Override
    public void setClassLoader(ClassLoader classLoader) {
        this.classLoader = classLoader;
    }

    public void setServletContext(ServletContext servletContext) {
        this.servletContext = servletContext;
    }

    @Override
    public Map getIDPMap() throws IOException {
        Map idpmap = new HashMap();

        InputStream inputStream = null;

        Properties properties = new Properties();
        if (classLoader != null) {
            inputStream = classLoader.getResourceAsStream(PROP_FILE_NAME);
        }
        if (inputStream == null && servletContext != null) {
            inputStream = servletContext.getResourceAsStream(PROP_FILE_NAME);
        }
        if (inputStream == null && servletContext != null) {
            inputStream = servletContext.getResourceAsStream(WEB_INF_PROP_FILE_NAME);
        }
        if (inputStream == null) {
            inputStream = getClass().getResourceAsStream(PROP_FILE_NAME);
        }
        if (inputStream != null) {
            properties.load(inputStream);
            if (properties != null) {
                Set keyset = properties.keySet();
                for (Object key : keyset) {
                    idpmap.put((String) key, (String) properties.get(key));
                }
            }
        }
        return idpmap;
    }
}