You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

91 lines
3.5 KiB

package ${basePackage}.config;
6 years ago
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.security.authentication.AuthenticationManager;
import org.springframework.security.config.annotation.method.configuration.EnableGlobalMethodSecurity;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
import org.springframework.security.config.http.SessionCreationPolicy;
import org.springframework.security.core.Authentication;
5 years ago
import ${basePackage}.frame.base.Token;
import ${basePackage}.frame.utils.CookieUtil;
import ${basePackage}.frame.auth.LocalData;
6 years ago
import javax.servlet.http.HttpServletRequest;
@Configuration
@EnableGlobalMethodSecurity(securedEnabled = true)
public class SecurityConfig extends WebSecurityConfigurerAdapter {
5 years ago
@Value("${r"${web.url.auth.included}"}")
private String[] included;
6 years ago
@Value("${r"${web.url.auth.excluded}"}")
private String[] excluded;
5 years ago
@Value("${r"${spring.mvc.static-path-pattern}"}")
private String[] staticPath;
6 years ago
@Override
protected void configure(HttpSecurity http) throws Exception {
http.sessionManagement().sessionCreationPolicy(SessionCreationPolicy.STATELESS).and()
6 years ago
.authorizeRequests()
.antMatchers(staticPath).permitAll()
6 years ago
.antMatchers(excluded).permitAll()
5 years ago
.antMatchers(included).access("@Authorization.hasPermission(request,authentication)")
6 years ago
.and().cors()
.and().headers().frameOptions().disable()
.and().csrf().disable();
}
/**
*
*
* Using generated security password: f6b42a66-71b1-4c31-b6a8-942838c81408
*
* @return
* @throws Exception
*/
@Bean
public AuthenticationManager authenticationManagerBean() throws Exception {
return super.authenticationManagerBean();
}
@Bean("Authorization")
public Object getAuthorization() {
return new Object() {
public boolean hasPermission(HttpServletRequest request, Authentication authentication) {
// 获取Token
String token = request.getParameter("token");
if (token == null || token.isEmpty()){
token = CookieUtil.getCookieValue(request.getCookies(), "token");
}
if (token == null) {
LocalData.setToken(LocalData.getTempToken());
}else {
// 组装Token ~ 这边根据实际的业务组装Token
Token token1 = new Token();
token1.setId(1L);
token1.setUserId(1L);
token1.setUserName("admin");
//继承临时Token
token1.addResourceSet(LocalData.getTempToken());
6 years ago
//管理员特有资源(这边请用正则表达式)
5 years ago
token1.putResource(".*");
6 years ago
LocalData.setToken(token1);
}
// 授权
Token token_ = LocalData.getToken();
if (token_.hasResource(request.getServletPath())) {
return true;
}
return false;
}
};
}
}

Powered by TurnKey Linux.