![JAR search and dependency download from the Maven repository](/logo.png)
com.tencent.bkrepo.common.security.http.HttpAuthSecurityConfiguration.kt Maven / Gradle / Ivy
/*
* Tencent is pleased to support the open source community by making BK-CI 蓝鲸持续集成平台 available.
*
* Copyright (C) 2020 THL A29 Limited, a Tencent company. All rights reserved.
*
* BK-CI 蓝鲸持续集成平台 is licensed under the MIT license.
*
* A copy of the MIT License is included in this file.
*
*
* Terms of the MIT License:
* ---------------------------------------------------
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package com.tencent.bkrepo.common.security.http
import com.tencent.bkrepo.common.security.crypto.CryptoProperties
import com.tencent.bkrepo.common.security.http.basic.BasicAuthHandler
import com.tencent.bkrepo.common.security.http.core.HttpAuthInterceptor
import com.tencent.bkrepo.common.security.http.core.HttpAuthSecurity
import com.tencent.bkrepo.common.security.http.core.HttpAuthSecurityCustomizer
import com.tencent.bkrepo.common.security.http.jwt.JwtAuthHandler
import com.tencent.bkrepo.common.security.http.jwt.JwtAuthProperties
import com.tencent.bkrepo.common.security.http.oauth.OauthAuthHandler
import com.tencent.bkrepo.common.security.http.platform.PlatformAuthHandler
import com.tencent.bkrepo.common.security.http.sign.SignAuthHandler
import com.tencent.bkrepo.common.security.http.sign.SignBodyFilter
import com.tencent.bkrepo.common.security.http.temporary.TemporaryTokenAuthHandler
import com.tencent.bkrepo.common.security.manager.AuthenticationManager
import org.springframework.beans.factory.ObjectProvider
import org.springframework.boot.web.servlet.FilterRegistrationBean
import org.springframework.context.annotation.Bean
import org.springframework.context.annotation.Configuration
import org.springframework.context.annotation.Lazy
import org.springframework.util.unit.DataSize
import org.springframework.web.servlet.config.annotation.InterceptorRegistry
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer
@Configuration(proxyBeanMethods = false)
class HttpAuthSecurityConfiguration(
private val httpAuthSecurity: ObjectProvider,
private val unifiedCustomizer: ObjectProvider,
@Lazy
private val authenticationManager: AuthenticationManager,
private val jwtAuthProperties: JwtAuthProperties,
private val cryptoProperties: CryptoProperties
) {
@Bean
fun httpAuthWebMvcConfigurer() = object : WebMvcConfigurer {
override fun addInterceptors(registry: InterceptorRegistry) {
httpAuthSecurity.stream().forEach {
configHttpAuthSecurity(it)
val httpAuthInterceptor = HttpAuthInterceptor(it)
registry.addInterceptor(httpAuthInterceptor)
.addPathPatterns(it.getIncludedPatterns())
.excludePathPatterns(it.getExcludedPatterns())
}
}
}
@Bean
fun signBodyFilter(): FilterRegistrationBean {
val registrationBean = FilterRegistrationBean()
registrationBean.filter = SignBodyFilter(DataSize.ofMegabytes(5).toBytes())
registrationBean.order = 0
return registrationBean
}
private fun configHttpAuthSecurity(httpAuthSecurity: HttpAuthSecurity) {
httpAuthSecurity.authenticationManager = authenticationManager
httpAuthSecurity.jwtAuthProperties = jwtAuthProperties
unifiedCustomizer.stream().forEach {
it.customize(httpAuthSecurity)
}
httpAuthSecurity.customizers.forEach {
it.customize(httpAuthSecurity)
}
if (httpAuthSecurity.basicAuthEnabled) {
httpAuthSecurity.addHttpAuthHandler(BasicAuthHandler(authenticationManager))
}
if (httpAuthSecurity.platformAuthEnabled) {
httpAuthSecurity.addHttpAuthHandler(PlatformAuthHandler(authenticationManager))
}
if (httpAuthSecurity.jwtAuthEnabled) {
httpAuthSecurity.addHttpAuthHandler(
JwtAuthHandler(
jwtAuthProperties = jwtAuthProperties,
cryptoProperties = cryptoProperties,
authenticationManager = authenticationManager
)
)
}
if (httpAuthSecurity.oauthEnabled) {
httpAuthSecurity.addHttpAuthHandler(OauthAuthHandler(authenticationManager))
}
if (httpAuthSecurity.temporaryTokenEnabled) {
httpAuthSecurity.addHttpAuthHandler(TemporaryTokenAuthHandler(authenticationManager))
}
if (httpAuthSecurity.signAuthEnabled) {
httpAuthSecurity.addHttpAuthHandler(SignAuthHandler(authenticationManager, httpAuthSecurity))
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy