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

org.apache.cxf.interceptor.security.SimpleAuthorizingInterceptor Maven / Gradle / Ivy

There is a newer version: 3.0.0-milestone2
Show newest version
/**
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements. See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership. The ASF 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.apache.cxf.interceptor.security;

import java.lang.reflect.Method;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import org.apache.cxf.common.util.StringUtils;
import org.apache.cxf.security.SecurityContext;


public class SimpleAuthorizingInterceptor extends AbstractAuthorizingInInterceptor {

    private Map> methodRolesMap = new HashMap>();
    private Map> userRolesMap = Collections.emptyMap();
    private List globalRoles = Collections.emptyList();
    private boolean checkConfiguredRolesOnly;
    
    @Override 
    protected boolean isUserInRole(SecurityContext sc, List roles, boolean deny) {
        if (!checkConfiguredRolesOnly && !super.isUserInRole(sc, roles, deny)) {
            return false;
        }
        // Additional check.
        if (!userRolesMap.isEmpty()) {
            List userRoles = userRolesMap.get(sc.getUserPrincipal().getName());    
            if (userRoles == null) {
                return false;
            }
            for (String role : roles) {
                if (userRoles.contains(role)) {
                    return true;
                }
            }
            return false;
        } else {
            return !checkConfiguredRolesOnly;
        }
    }
    
    protected String createMethodSig(Method method) {
        StringBuilder b = new StringBuilder(method.getReturnType().getName());
        b.append(' ').append(method.getName()).append('(');
        boolean first = true;
        for (Class cls : method.getParameterTypes()) {
            if (!first) {
                b.append(", ");
                first = false;
            }
            b.append(cls.getName());
        }
        b.append(')');
        return b.toString();
    }
    
    @Override
    protected List getExpectedRoles(Method method) {
        List roles = methodRolesMap.get(createMethodSig(method));
        if (roles == null) {
            roles = methodRolesMap.get(method.getName());
        }
        if (roles != null) {
            return roles;
        }
        return globalRoles;
    }


    public void setMethodRolesMap(Map rolesMap) {
        methodRolesMap.putAll(parseRolesMap(rolesMap)); 
    }
    
    public void setUserRolesMap(Map rolesMap) {
        userRolesMap = parseRolesMap(rolesMap);
    }
    
    public void setGlobalRoles(String roles) {
        globalRoles = Arrays.asList(StringUtils.split(roles, " "));
    }
    
    public void setCheckConfiguredRolesOnly(boolean checkConfiguredRolesOnly) {
        this.checkConfiguredRolesOnly = checkConfiguredRolesOnly;
    }
    
    private static Map> parseRolesMap(Map rolesMap) {
        Map> map = new HashMap>();
        for (Map.Entry entry : rolesMap.entrySet()) {
            map.put(entry.getKey(), Arrays.asList(StringUtils.split(entry.getValue(), " ")));
        }
        return map;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy