1 | package it.finki.charitable.security;
|
---|
2 |
|
---|
3 | import it.finki.charitable.entities.UserRole;
|
---|
4 | import it.finki.charitable.services.UserService;
|
---|
5 | import org.springframework.context.annotation.Configuration;
|
---|
6 | import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
|
---|
7 | import org.springframework.security.config.annotation.web.builders.HttpSecurity;
|
---|
8 | import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
|
---|
9 | import org.springframework.security.core.Authentication;
|
---|
10 | import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
|
---|
11 | import org.springframework.security.web.DefaultRedirectStrategy;
|
---|
12 | import org.springframework.security.web.RedirectStrategy;
|
---|
13 | import org.springframework.security.web.authentication.AuthenticationSuccessHandler;
|
---|
14 | import org.springframework.security.web.util.matcher.AntPathRequestMatcher;
|
---|
15 |
|
---|
16 | import javax.servlet.ServletException;
|
---|
17 | import javax.servlet.http.HttpServletRequest;
|
---|
18 | import javax.servlet.http.HttpServletResponse;
|
---|
19 | import java.io.IOException;
|
---|
20 |
|
---|
21 | @Configuration
|
---|
22 | public class SecurityConfig extends WebSecurityConfigurerAdapter {
|
---|
23 |
|
---|
24 | private final UserService userService;
|
---|
25 | private BCryptPasswordEncoder passwordEncoder() {
|
---|
26 | return PasswordEncoder.bCryptPasswordEncoder();
|
---|
27 | }
|
---|
28 |
|
---|
29 | public SecurityConfig(UserService userService) {
|
---|
30 | this.userService = userService;
|
---|
31 | }
|
---|
32 |
|
---|
33 | private final static String[] publicMatchers = {
|
---|
34 | "/css/**",
|
---|
35 | "/js/**",
|
---|
36 | "/image/**",
|
---|
37 | "/",
|
---|
38 | "/login",
|
---|
39 | "/register",
|
---|
40 | "/validate",
|
---|
41 | "/album/**",
|
---|
42 | "/post",
|
---|
43 | "/post-photos/**"
|
---|
44 | };
|
---|
45 |
|
---|
46 | @Override
|
---|
47 | protected void configure(HttpSecurity http) throws Exception {
|
---|
48 | http
|
---|
49 | .authorizeRequests()
|
---|
50 | .antMatchers(publicMatchers).permitAll()
|
---|
51 | .antMatchers("/moderator-photos/**", "/moderator/**").hasAuthority(UserRole.MODERATOR.name())
|
---|
52 | .anyRequest().hasAuthority(UserRole.USER.name());
|
---|
53 |
|
---|
54 | http
|
---|
55 | .csrf().disable()
|
---|
56 | .cors().disable()
|
---|
57 | .formLogin().loginPage("/login")
|
---|
58 | .successHandler(authenticationSuccessHandler)
|
---|
59 | .and()
|
---|
60 | .logout().logoutRequestMatcher(new AntPathRequestMatcher("/logout"))
|
---|
61 | .logoutSuccessUrl("/").deleteCookies("remember-me")
|
---|
62 | .and()
|
---|
63 | .rememberMe();
|
---|
64 | }
|
---|
65 |
|
---|
66 | AuthenticationSuccessHandler authenticationSuccessHandler = (httpServletRequest, httpServletResponse, authentication) -> {
|
---|
67 | RedirectStrategy redirectStrategy = new DefaultRedirectStrategy();
|
---|
68 | if(authentication.getAuthorities().toString().contains("MODERATOR")) {
|
---|
69 | redirectStrategy.sendRedirect(httpServletRequest, httpServletResponse, "/moderator/approval");
|
---|
70 | } else {
|
---|
71 | redirectStrategy.sendRedirect(httpServletRequest, httpServletResponse, "/");
|
---|
72 | }
|
---|
73 | };
|
---|
74 |
|
---|
75 | @Override
|
---|
76 | protected void configure(AuthenticationManagerBuilder auth) throws Exception {
|
---|
77 | auth.userDetailsService(userService).passwordEncoder(passwordEncoder());
|
---|
78 | }
|
---|
79 | }
|
---|