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

org.springframework.security.access.intercept.RunAsManagerImpl Maven / Gradle / Ivy

There is a newer version: 6.2.4
Show newest version
/*
 * Copyright 2004, 2005, 2006 Acegi Technology Pty Limited
 *
 * 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
 *
 *      https://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.springframework.security.access.intercept;

import java.util.ArrayList;
import java.util.Collection;
import java.util.List;

import org.springframework.beans.factory.InitializingBean;
import org.springframework.security.access.ConfigAttribute;
import org.springframework.security.core.Authentication;
import org.springframework.security.core.GrantedAuthority;
import org.springframework.security.core.authority.SimpleGrantedAuthority;
import org.springframework.util.Assert;

/**
 * Basic concrete implementation of a {@link RunAsManager}.
 * 

* Is activated if any {@link ConfigAttribute#getAttribute()} is prefixed with * RUN_AS_. If found, it generates a new {@link RunAsUserToken} containing * the same principal, credentials and granted authorities as the original * {@link Authentication} object, along with {@link SimpleGrantedAuthority}s for each * RUN_AS_ indicated. The created SimpleGrantedAuthoritys will * be prefixed with a special prefix indicating that it is a role (default prefix value is * ROLE_), and then the remainder of the RUN_AS_ keyword. For * example, RUN_AS_FOO will result in the creation of a granted authority of * ROLE_RUN_AS_FOO. *

* The role prefix may be overridden from the default, to match that used elsewhere, for * example when using an existing role database with another prefix. An empty role prefix * may also be specified. Note however that there are potential issues with using an empty * role prefix since different categories of {@link ConfigAttribute} can not be properly * discerned based on the prefix, with possible consequences when performing voting and * other actions. However, this option may be of some use when using pre-existing role * names without a prefix, and no ability exists to prefix them with a role prefix on * reading them in, such as provided for example in * {@link org.springframework.security.core.userdetails.jdbc.JdbcDaoImpl}. * * @author Ben Alex * @author colin sampaleanu */ public class RunAsManagerImpl implements RunAsManager, InitializingBean { private String key; private String rolePrefix = "ROLE_"; @Override public void afterPropertiesSet() { Assert.notNull(this.key, "A Key is required and should match that configured for the RunAsImplAuthenticationProvider"); } @Override public Authentication buildRunAs(Authentication authentication, Object object, Collection attributes) { List newAuthorities = new ArrayList<>(); for (ConfigAttribute attribute : attributes) { if (this.supports(attribute)) { GrantedAuthority extraAuthority = new SimpleGrantedAuthority( getRolePrefix() + attribute.getAttribute()); newAuthorities.add(extraAuthority); } } if (newAuthorities.size() == 0) { return null; } // Add existing authorities newAuthorities.addAll(authentication.getAuthorities()); return new RunAsUserToken(this.key, authentication.getPrincipal(), authentication.getCredentials(), newAuthorities, authentication.getClass()); } public String getKey() { return this.key; } public String getRolePrefix() { return this.rolePrefix; } public void setKey(String key) { this.key = key; } /** * Allows the default role prefix of ROLE_ to be overridden. May be set * to an empty value, although this is usually not desirable. * @param rolePrefix the new prefix */ public void setRolePrefix(String rolePrefix) { this.rolePrefix = rolePrefix; } @Override public boolean supports(ConfigAttribute attribute) { return attribute.getAttribute() != null && attribute.getAttribute().startsWith("RUN_AS_"); } /** * This implementation supports any type of class, because it does not query the * presented secure object. * @param clazz the secure object * @return always true */ @Override public boolean supports(Class clazz) { return true; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy