blob: 259e8c08bd78be9cfe1a96c5f5c5599109744980 (
plain) (
blame)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
package com.juick.www.configuration;
import com.juick.server.security.entities.JuickUser;
import com.juick.service.UserService;
import com.juick.service.security.JuickUserDetailsService;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.PropertySource;
import org.springframework.core.env.Environment;
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;
import org.springframework.security.core.userdetails.UserDetailsService;
import javax.annotation.Resource;
/**
* Created by aalexeev on 11/21/16.
*/
@EnableWebSecurity
@PropertySource("classpath:juick.conf")
public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
@Resource
private Environment env;
@Resource
private UserService userService;
@Bean("userDetailsService")
@Override
public UserDetailsService userDetailsServiceBean() throws Exception {
return new JuickUserDetailsService(userService);
}
@Override
protected void configure(HttpSecurity http) throws Exception {
http
.authorizeRequests()
.antMatchers("/settings", "/pm/**").authenticated()
.anyRequest().permitAll()
.and()
.anonymous().principal(JuickUser.ANONYMOUS_USER).authorities(JuickUser.ANONYMOUS_AUTHORITY)
.and()
.sessionManagement().invalidSessionUrl("/")
.and()
.logout().invalidateHttpSession(true).logoutUrl("/logout").logoutSuccessUrl("/")
.and()
.formLogin()
.loginPage("/login")
.permitAll()
.defaultSuccessUrl("/")
.loginProcessingUrl("/do_login")
.usernameParameter("j_username")
.passwordParameter("j_password")
.failureUrl("/login-error")
.and()
.rememberMe()
.tokenValiditySeconds(6 * 30 * 24 * 3600)
.alwaysRemember(true)
//.useSecureCookie(true) // TODO Enable if https is supports
.rememberMeCookieDomain(env.getProperty("web_domain", "juick.com"))
.userDetailsService(userDetailsServiceBean())
.key(env.getProperty("auth_remember_me_key"))
.and()
.csrf().disable();
}
}
|