forked from OnServerInit/OnServerInit-Backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSecurityConfig.java
More file actions
37 lines (30 loc) · 1.4 KB
/
SecurityConfig.java
File metadata and controls
37 lines (30 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package com.imjustdoom.pluginsite.config.security;
import lombok.AllArgsConstructor;
import org.springframework.context.annotation.Configuration;
import org.springframework.security.authentication.dao.DaoAuthenticationProvider;
import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
@Configuration
@EnableWebSecurity
@AllArgsConstructor
public class SecurityConfig extends WebSecurityConfigurerAdapter {
private final DaoAuthenticationProvider authProvider;
@Override
protected void configure(AuthenticationManagerBuilder auth) {
auth.authenticationProvider(this.authProvider);
}
@Override
public void configure(HttpSecurity http) throws Exception {
http
.csrf().disable()
.authorizeRequests()
.antMatchers("/admin", "/admin/roles").hasRole("ADMIN")
.antMatchers("/resources/create", "/account/details").authenticated()
.antMatchers("/register", "/login").not().authenticated()
.anyRequest().permitAll()
.and()
.formLogin().loginProcessingUrl("/login");
}
}