|
@@ -1,27 +1,30 @@
|
|
|
-package com.gxzc.zen.umps.config
|
|
|
-
|
|
|
-import com.gxzc.zen.umps.constant.ZenHttpSession
|
|
|
-import com.gxzc.zen.umps.filter.AjaxAuthorizationFilter
|
|
|
-import com.gxzc.zen.umps.filter.UrlPermissionsFilter
|
|
|
-import com.gxzc.zen.umps.filter.ZenCorsAnonymousFilter
|
|
|
-import com.gxzc.zen.umps.filter.ZenCorsPathMatchingFilter
|
|
|
+package cn.gygxzc.tina.config.shiro
|
|
|
+
|
|
|
+import cn.gygxzc.tina.config.properties.ShiroRedisCacheProperties
|
|
|
+import cn.gygxzc.tina.config.shiro.cache.ShiroRedisSessionDAO
|
|
|
+import cn.gygxzc.tina.config.shiro.realm.ZenShiroRealm
|
|
|
+import cn.gygxzc.tina.config.shiro.session.ZenWebSessionManager
|
|
|
+import cn.gygxzc.tina.config.shiro.filter.AjaxAuthorizationFilter
|
|
|
+import cn.gygxzc.tina.config.shiro.filter.UrlPermissionsFilter
|
|
|
+import cn.gygxzc.tina.config.shiro.filter.ZenCorsAnonymousFilter
|
|
|
+import cn.gygxzc.tina.config.shiro.filter.ZenCorsPathMatchingFilter
|
|
|
import org.apache.shiro.authc.credential.HashedCredentialsMatcher
|
|
|
+import org.apache.shiro.cache.CacheManager
|
|
|
+import org.apache.shiro.mgt.SecurityManager
|
|
|
+import org.apache.shiro.realm.AuthorizingRealm
|
|
|
+import org.apache.shiro.session.mgt.SessionManager
|
|
|
import org.apache.shiro.spring.LifecycleBeanPostProcessor
|
|
|
import org.apache.shiro.spring.web.ShiroFilterFactoryBean
|
|
|
import org.apache.shiro.web.filter.authc.AnonymousFilter
|
|
|
import org.apache.shiro.web.mgt.DefaultWebSecurityManager
|
|
|
import org.apache.shiro.web.servlet.SimpleCookie
|
|
|
-import org.springframework.boot.context.properties.ConfigurationProperties
|
|
|
+import org.springframework.beans.factory.annotation.Autowired
|
|
|
+import org.springframework.boot.context.properties.EnableConfigurationProperties
|
|
|
import org.springframework.boot.web.servlet.FilterRegistrationBean
|
|
|
import org.springframework.context.annotation.Bean
|
|
|
import org.springframework.context.annotation.Configuration
|
|
|
import org.springframework.context.annotation.DependsOn
|
|
|
import org.springframework.core.annotation.Order
|
|
|
-import org.springframework.data.redis.connection.jedis.JedisConnectionFactory
|
|
|
-import org.springframework.data.redis.core.RedisTemplate
|
|
|
-import org.springframework.data.redis.serializer.Jackson2JsonRedisSerializer
|
|
|
-import org.springframework.data.redis.serializer.JdkSerializationRedisSerializer
|
|
|
-import org.springframework.data.redis.serializer.StringRedisSerializer
|
|
|
import org.springframework.web.filter.DelegatingFilterProxy
|
|
|
import javax.servlet.DispatcherType
|
|
|
import javax.servlet.Filter
|
|
@@ -34,12 +37,62 @@ import javax.servlet.Filter
|
|
|
* @url https://noahlan.com
|
|
|
*/
|
|
|
@Configuration
|
|
|
+@EnableConfigurationProperties(ShiroRedisCacheProperties::class)
|
|
|
class ShiroConfig {
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private lateinit var redisProperties: ShiroRedisCacheProperties
|
|
|
+
|
|
|
+
|
|
|
+ @Bean("shiroLifecycleBeanPostProcessor")
|
|
|
+ fun lifecycleBeanPostProcessor(): LifecycleBeanPostProcessor {
|
|
|
+ return LifecycleBeanPostProcessor()
|
|
|
+ }
|
|
|
+
|
|
|
@Bean
|
|
|
- @ConfigurationProperties(prefix = "shiro.redis")
|
|
|
- fun shiroRedisProperties(): ShiroRedisProperties {
|
|
|
- return ShiroRedisProperties()
|
|
|
+ @DependsOn(value = ["shiroLifecycleBeanPostProcessor", "shrioRedisCacheManager"])
|
|
|
+ fun userRealm(cacheManager: CacheManager): ZenShiroRealm {
|
|
|
+ val shiroRealm = ZenShiroRealm()
|
|
|
+ .apply {
|
|
|
+ isCachingEnabled = redisProperties.isEnable
|
|
|
+ isAuthenticationCachingEnabled = true
|
|
|
+ isAuthorizationCachingEnabled = true
|
|
|
+ //加密验证方法
|
|
|
+ credentialsMatcher = HashedCredentialsMatcher().also {
|
|
|
+ it.hashAlgorithmName = "md5"
|
|
|
+ it.hashIterations = 2 // 两次md5
|
|
|
+ }
|
|
|
+ }
|
|
|
+ shiroRealm.cacheManager = cacheManager
|
|
|
+ return shiroRealm
|
|
|
+ }
|
|
|
+
|
|
|
+ @Bean(name = ["sessionManager"])
|
|
|
+ fun defaultWebSessionManager(redisCacheManager: CacheManager,
|
|
|
+ redisSessionDAO: ShiroRedisSessionDAO): ZenWebSessionManager {
|
|
|
+ return ZenWebSessionManager().apply {
|
|
|
+ setCacheManager(redisCacheManager)
|
|
|
+ globalSessionTimeout = 604800 * 1000
|
|
|
+ isDeleteInvalidSessions = true
|
|
|
+ isSessionValidationSchedulerEnabled = true
|
|
|
+ isDeleteInvalidSessions = true
|
|
|
+ sessionDAO = redisSessionDAO
|
|
|
+ sessionIdCookie = SimpleCookie(ZenHttpSession.DEFAULT_SESSION_ID_NAME).apply {
|
|
|
+ isHttpOnly = true
|
|
|
+ maxAge = 604800
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @Bean(name = ["securityManager"])
|
|
|
+ fun securityManager(userRealm: AuthorizingRealm,
|
|
|
+ redisCacheManager: CacheManager,
|
|
|
+ sessionManager: SessionManager): DefaultWebSecurityManager {
|
|
|
+ return DefaultWebSecurityManager().apply {
|
|
|
+ setRealm(userRealm)
|
|
|
+ cacheManager = redisCacheManager
|
|
|
+ setSessionManager(sessionManager)
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
@Bean("shiroFilterRegistrationBean")
|
|
@@ -55,11 +108,9 @@ class ShiroConfig {
|
|
|
|
|
|
@Bean(name = ["shiroFilter"])
|
|
|
@Order(2)
|
|
|
- fun shiroFilter(): ShiroFilterFactoryBean {
|
|
|
+ fun shiroFilter(securityManager: SecurityManager): ShiroFilterFactoryBean {
|
|
|
return ShiroFilterFactoryBean().apply {
|
|
|
- securityManager = securityManager()
|
|
|
- // loginUrl = "/login"
|
|
|
- // unauthorizedUrl = "/unauthor"
|
|
|
+ setSecurityManager(securityManager)
|
|
|
|
|
|
filters = hashMapOf<String, Filter>(
|
|
|
"canon" to ZenCorsAnonymousFilter(),
|
|
@@ -108,86 +159,5 @@ class ShiroConfig {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- @Bean(name = ["securityManager"])
|
|
|
- fun securityManager(): DefaultWebSecurityManager {
|
|
|
- return DefaultWebSecurityManager().apply {
|
|
|
- setRealm(userRealm())
|
|
|
- cacheManager = redisCacheManager()
|
|
|
- sessionManager = defaultWebSessionManager()
|
|
|
- }
|
|
|
- }
|
|
|
|
|
|
- @Bean(name = ["sessionManager"])
|
|
|
- fun defaultWebSessionManager(): ZenWebSessionManager {
|
|
|
- return ZenWebSessionManager().apply {
|
|
|
- setCacheManager(redisCacheManager())
|
|
|
- globalSessionTimeout = 604800 * 1000
|
|
|
- isDeleteInvalidSessions = true
|
|
|
- isSessionValidationSchedulerEnabled = true
|
|
|
- isDeleteInvalidSessions = true
|
|
|
- sessionDAO = redisSessionDAO()
|
|
|
- sessionIdCookie = SimpleCookie(ZenHttpSession.DEFAULT_SESSION_ID_NAME).apply {
|
|
|
- isHttpOnly = true
|
|
|
- maxAge = 604800
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- @Bean
|
|
|
- fun redisSessionDAO(): ShiroRedisSessionDAO {
|
|
|
- return ShiroRedisSessionDAO(redisTemplate(), shiroRedisProperties())
|
|
|
- }
|
|
|
-
|
|
|
- @Bean
|
|
|
- @DependsOn(value = ["shiroLifecycleBeanPostProcessor", "shrioRedisCacheManager"])
|
|
|
- fun userRealm(): ZenShiroRealm {
|
|
|
- return ZenShiroRealm().apply {
|
|
|
- cacheManager = redisCacheManager()
|
|
|
- isCachingEnabled = true
|
|
|
- isAuthenticationCachingEnabled = true
|
|
|
- isAuthorizationCachingEnabled = true
|
|
|
-
|
|
|
- //TODO 以下 hash 验证,后期的重试 ban 可重写此类实现
|
|
|
- credentialsMatcher = HashedCredentialsMatcher().also {
|
|
|
- it.hashAlgorithmName = "md5"
|
|
|
- it.hashIterations = 2 // 两次md5
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- @Bean(name = ["shrioRedisCacheManager"])
|
|
|
- @DependsOn(value = ["shiroRedisTemplate"])
|
|
|
- fun redisCacheManager(): ShiroRedisCacheManager {
|
|
|
- return ShiroRedisCacheManager(redisTemplate(), shiroRedisProperties())
|
|
|
- }
|
|
|
-
|
|
|
- @Bean(name = ["shiroRedisTemplate"])
|
|
|
- fun redisTemplate(): RedisTemplate<String, Any> {
|
|
|
- return RedisTemplate<String, Any>().apply {
|
|
|
- connectionFactory = connectionFactory()
|
|
|
-
|
|
|
- val stringSerializer = StringRedisSerializer()
|
|
|
- keySerializer = stringSerializer
|
|
|
- valueSerializer = JdkSerializationRedisSerializer()
|
|
|
- hashKeySerializer = stringSerializer
|
|
|
- hashValueSerializer = Jackson2JsonRedisSerializer(Any::class.java)
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- @Bean("shiroRedisConnectionFactory")
|
|
|
- fun connectionFactory(): JedisConnectionFactory {
|
|
|
- val properties = shiroRedisProperties()
|
|
|
- return JedisConnectionFactory().apply {
|
|
|
- database = properties.database
|
|
|
- hostName = properties.host
|
|
|
- password = properties.password
|
|
|
- port = properties.port
|
|
|
- timeout = properties.timeout
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- @Bean("shiroLifecycleBeanPostProcessor")
|
|
|
- fun lifecycleBeanPostProcessor(): LifecycleBeanPostProcessor {
|
|
|
- return LifecycleBeanPostProcessor()
|
|
|
- }
|
|
|
}
|