JwtConverterAutoConfiguration.java
/*
* Copyright 2024 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
*
* 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.bremersee.spring.boot.autoconfigure.security.authentication;
import static java.util.Objects.isNull;
import lombok.extern.slf4j.Slf4j;
import org.bremersee.spring.boot.autoconfigure.security.authentication.AuthenticationProperties.JwtConverterProperties;
import org.bremersee.spring.security.core.authority.mapping.CaseTransformation;
import org.bremersee.spring.security.core.authority.mapping.NormalizedGrantedAuthoritiesMapper;
import org.bremersee.spring.security.oauth2.server.resource.authentication.JsonPathJwtConverter;
import org.springframework.beans.factory.ObjectProvider;
import org.springframework.boot.autoconfigure.AutoConfiguration;
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.boot.autoconfigure.security.reactive.ReactiveSecurityAutoConfiguration;
import org.springframework.boot.autoconfigure.security.servlet.SecurityAutoConfiguration;
import org.springframework.boot.context.event.ApplicationReadyEvent;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.event.EventListener;
import org.springframework.core.convert.converter.Converter;
import org.springframework.security.authentication.AbstractAuthenticationToken;
import org.springframework.security.core.authority.mapping.GrantedAuthoritiesMapper;
import org.springframework.security.oauth2.jwt.Jwt;
import org.springframework.security.oauth2.server.resource.authentication.JwtAuthenticationConverter;
import org.springframework.util.ClassUtils;
/**
* The jwt converter autoconfiguration.
*
* @author Christian Bremer
*/
@AutoConfiguration(
before = {
SecurityAutoConfiguration.class,
ReactiveSecurityAutoConfiguration.class
})
@ConditionalOnClass(name = {
"org.bremersee.spring.security.oauth2.server.resource.authentication.JsonPathJwtConverter",
"org.springframework.security.oauth2.server.resource.authentication.JwtAuthenticationConverter"
})
@ConditionalOnProperty(
prefix = "spring.security.oauth2.resourceserver.jwt",
name = "jwk-set-uri")
@EnableConfigurationProperties(AuthenticationProperties.class)
@Slf4j
public class JwtConverterAutoConfiguration {
private final JwtConverterProperties properties;
/**
* Instantiates a new Jwt converter auto configuration.
*
* @param properties the properties
*/
public JwtConverterAutoConfiguration(AuthenticationProperties properties) {
this.properties = properties.getJwtConverter();
}
/**
* Init.
*/
@EventListener(ApplicationReadyEvent.class)
public void init() {
log.info("""
*********************************************************************************
* {}
* properties = {}
*********************************************************************************""",
ClassUtils.getUserClass(getClass()).getSimpleName(),
properties);
}
/**
* Creates jwt converter.
*
* @param mapper the mapper
* @return the converter
*/
@ConditionalOnMissingBean({JwtAuthenticationConverter.class})
@Bean
public Converter<Jwt, AbstractAuthenticationToken> jwtConverter(
ObjectProvider<GrantedAuthoritiesMapper> mapper) {
log.info("Creating new jwt authentication converter.");
GrantedAuthoritiesMapper grantedAuthoritiesMapper = mapper
.getIfAvailable(() -> new NormalizedGrantedAuthoritiesMapper(
properties.getDefaultRoles(),
properties.toRoleMappings(),
properties.getRolePrefix(),
getCaseTransformation(properties.getRoleCaseTransformation()),
properties.toRoleStringReplacements()));
return new JsonPathJwtConverter(
properties.getNameJsonPath(),
properties.getFirstNameJsonPath(),
properties.getLastNameJsonPath(),
properties.getEmailJsonPath(),
properties.getRolesJsonPath(),
properties.isRolesValueList(),
properties.getRolesValueSeparator(),
grantedAuthoritiesMapper
);
}
private CaseTransformation getCaseTransformation(
AuthenticationProperties.CaseTransformation source) {
return isNull(source) ? CaseTransformation.NONE : CaseTransformation.valueOf(source.name());
}
}