aboutsummaryrefslogtreecommitdiff
path: root/juick-api/src/main/java/com/juick/api/configuration/ApiSecurityConfig.java
blob: c004395039f6181a91e3ea833e620a613afedca6 (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
package com.juick.api.configuration;

import com.juick.server.security.JuickAuthenticationEntryPoint;
import com.juick.server.security.JuickAuthenticationProvider;
import com.juick.server.security.entities.JuickUser;
import com.juick.service.UserService;
import org.apache.commons.lang3.StringUtils;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.PropertySource;
import org.springframework.core.env.Environment;
import org.springframework.http.HttpMethod;
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.builders.WebSecurity;
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
import org.springframework.security.config.http.SessionCreationPolicy;
import org.springframework.security.core.userdetails.UserDetailsService;
import org.springframework.security.core.userdetails.UsernameNotFoundException;

import javax.annotation.Resource;
import javax.inject.Inject;

/**
 * Created by aalexeev on 11/21/16.
 */
@Configuration
@EnableWebSecurity
@PropertySource("classpath:juick.conf")
public class ApiSecurityConfig extends WebSecurityConfigurerAdapter {
    @Resource
    private Environment env;
    @Resource
    private UserService userService;

    protected ApiSecurityConfig() {
        super(true);
    }

    @Bean
    public JuickAuthenticationEntryPoint getBasicAuthEntryPoint(){
        return new JuickAuthenticationEntryPoint();
    }

    @Bean("userDetailsService")
    @Override
    public UserDetailsService userDetailsServiceBean() throws Exception {
        return username -> {
            if (StringUtils.isBlank(username))
                throw new UsernameNotFoundException("Invalid user name " + username);

            com.juick.User user = userService.getUserByName(username);

            if (user != null)
                return new JuickUser(user);

            throw new UsernameNotFoundException("The username " + username + " is not found");
        };
    }

    @Override
    protected void configure(HttpSecurity http) throws Exception {
        http
                .authorizeRequests()
                .antMatchers("/home").hasRole("USER")
                .and().httpBasic().authenticationEntryPoint(new JuickAuthenticationEntryPoint())
                .and().sessionManagement().sessionCreationPolicy(SessionCreationPolicy.STATELESS);
    }

    @Inject
    public void configureGlobalSecurity(AuthenticationManagerBuilder auth) throws Exception {
        auth.authenticationProvider(new JuickAuthenticationProvider());
    }
    @Override
    public void configure(WebSecurity web) throws Exception {
        web.ignoring().antMatchers(HttpMethod.OPTIONS, "/**");
    }
}