spring security DefaultHttpSecurityExpressionHandler 源码

  • 2022-08-13
  • 浏览 (446)

spring security DefaultHttpSecurityExpressionHandler 代码

文件路径:/web/src/main/java/org/springframework/security/web/access/expression/DefaultHttpSecurityExpressionHandler.java

/*
 * Copyright 2002-2022 the original author or authors.
 *
 * 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.web.access.expression;

import java.util.function.Supplier;

import org.springframework.expression.EvaluationContext;
import org.springframework.expression.spel.support.StandardEvaluationContext;
import org.springframework.security.access.expression.AbstractSecurityExpressionHandler;
import org.springframework.security.access.expression.SecurityExpressionHandler;
import org.springframework.security.access.expression.SecurityExpressionOperations;
import org.springframework.security.authentication.AuthenticationTrustResolver;
import org.springframework.security.authentication.AuthenticationTrustResolverImpl;
import org.springframework.security.core.Authentication;
import org.springframework.security.web.access.intercept.RequestAuthorizationContext;
import org.springframework.util.Assert;

/**
 * A {@link SecurityExpressionHandler} that uses a {@link RequestAuthorizationContext} to
 * create a {@link WebSecurityExpressionRoot}.
 *
 * @author Evgeniy Cheban
 * @since 5.8
 */
public class DefaultHttpSecurityExpressionHandler extends AbstractSecurityExpressionHandler<RequestAuthorizationContext>
		implements SecurityExpressionHandler<RequestAuthorizationContext> {

	private AuthenticationTrustResolver trustResolver = new AuthenticationTrustResolverImpl();

	private String defaultRolePrefix = "ROLE_";

	@Override
	public EvaluationContext createEvaluationContext(Supplier<Authentication> authentication,
			RequestAuthorizationContext context) {
		WebSecurityExpressionRoot root = createSecurityExpressionRoot(authentication, context);
		StandardEvaluationContext ctx = new StandardEvaluationContext(root);
		ctx.setBeanResolver(getBeanResolver());
		context.getVariables().forEach(ctx::setVariable);
		return ctx;
	}

	@Override
	protected SecurityExpressionOperations createSecurityExpressionRoot(Authentication authentication,
			RequestAuthorizationContext context) {
		return createSecurityExpressionRoot(() -> authentication, context);
	}

	private WebSecurityExpressionRoot createSecurityExpressionRoot(Supplier<Authentication> authentication,
			RequestAuthorizationContext context) {
		WebSecurityExpressionRoot root = new WebSecurityExpressionRoot(authentication, context.getRequest());
		root.setRoleHierarchy(getRoleHierarchy());
		root.setPermissionEvaluator(getPermissionEvaluator());
		root.setTrustResolver(this.trustResolver);
		root.setDefaultRolePrefix(this.defaultRolePrefix);
		return root;
	}

	/**
	 * Sets the {@link AuthenticationTrustResolver} to be used. The default is
	 * {@link AuthenticationTrustResolverImpl}.
	 * @param trustResolver the {@link AuthenticationTrustResolver} to use
	 */
	public void setTrustResolver(AuthenticationTrustResolver trustResolver) {
		Assert.notNull(trustResolver, "trustResolver cannot be null");
		this.trustResolver = trustResolver;
	}

	/**
	 * Sets the default prefix to be added to
	 * {@link org.springframework.security.access.expression.SecurityExpressionRoot#hasAnyRole(String...)}
	 * or
	 * {@link org.springframework.security.access.expression.SecurityExpressionRoot#hasRole(String)}.
	 * For example, if hasRole("ADMIN") or hasRole("ROLE_ADMIN") is passed in, then the
	 * role ROLE_ADMIN will be used when the defaultRolePrefix is "ROLE_" (default).
	 * @param defaultRolePrefix the default prefix to add to roles. The default is
	 * "ROLE_".
	 */
	public void setDefaultRolePrefix(String defaultRolePrefix) {
		Assert.hasText(defaultRolePrefix, "defaultRolePrefix cannot be empty");
		this.defaultRolePrefix = defaultRolePrefix;
	}

}

相关信息

spring security 源码目录

相关文章

spring security AbstractVariableEvaluationContextPostProcessor 源码

spring security DefaultWebSecurityExpressionHandler 源码

spring security DelegatingEvaluationContext 源码

spring security EvaluationContextPostProcessor 源码

spring security ExpressionBasedFilterInvocationSecurityMetadataSource 源码

spring security WebExpressionAuthorizationManager 源码

spring security WebExpressionConfigAttribute 源码

spring security WebExpressionVoter 源码

spring security WebSecurityExpressionRoot 源码

spring security package-info 源码

0  赞