SecurityConfig.java 7.1 KB
Newer Older
1 2
package com.linkwechat.framework.config;

L
leejoker 已提交
3
import com.linkwechat.framework.security.filter.JwtAuthenticationTokenFilter;
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
import com.linkwechat.framework.security.handle.AuthenticationEntryPointImpl;
import com.linkwechat.framework.security.handle.LogoutSuccessHandlerImpl;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean;
import org.springframework.http.HttpMethod;
import org.springframework.security.authentication.AuthenticationManager;
import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
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.userdetails.UserDetailsService;
import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
import org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter;
import org.springframework.security.web.authentication.logout.LogoutFilter;
import org.springframework.web.filter.CorsFilter;

/**
 * spring security配置
L
leejoker 已提交
23
 *
24 25 26
 * @author ruoyi
 */
@EnableGlobalMethodSecurity(prePostEnabled = true, securedEnabled = true)
L
leejoker 已提交
27
public class SecurityConfig extends WebSecurityConfigurerAdapter {
28 29 30 31 32
    /**
     * 自定义用户认证逻辑
     */
    @Autowired
    private UserDetailsService userDetailsService;
L
leejoker 已提交
33

34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
    /**
     * 认证失败处理类
     */
    @Autowired
    private AuthenticationEntryPointImpl unauthorizedHandler;

    /**
     * 退出处理类
     */
    @Autowired
    private LogoutSuccessHandlerImpl logoutSuccessHandler;

    /**
     * token认证过滤器
     */
    @Autowired
    private JwtAuthenticationTokenFilter authenticationTokenFilter;

    /**
     * 跨域过滤器
     */
    @Autowired
    private CorsFilter corsFilter;
L
leejoker 已提交
57

58 59 60 61 62 63 64 65
    /**
     * 解决 无法直接注入 AuthenticationManager
     *
     * @return
     * @throws Exception
     */
    @Bean
    @Override
L
leejoker 已提交
66
    public AuthenticationManager authenticationManagerBean() throws Exception {
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
        return super.authenticationManagerBean();
    }

    /**
     * anyRequest          |   匹配所有请求路径
     * access              |   SpringEl表达式结果为true时可以访问
     * anonymous           |   匿名可以访问
     * denyAll             |   用户不能访问
     * fullyAuthenticated  |   用户完全认证可以访问(非remember-me下自动登录)
     * hasAnyAuthority     |   如果有参数,参数表示权限,则其中任何一个权限可以访问
     * hasAnyRole          |   如果有参数,参数表示角色,则其中任何一个角色可以访问
     * hasAuthority        |   如果有参数,参数表示权限,则其权限可以访问
     * hasIpAddress        |   如果有参数,参数表示IP地址,如果用户IP和参数匹配,则可以访问
     * hasRole             |   如果有参数,参数表示角色,则其角色可以访问
     * permitAll           |   用户可以任意访问
     * rememberMe          |   允许通过remember-me登录的用户访问
     * authenticated       |   用户登录后可访问
     */
    @Override
L
leejoker 已提交
86
    protected void configure(HttpSecurity httpSecurity) throws Exception {
87 88 89 90 91 92 93 94 95 96
        httpSecurity
                // CSRF禁用,因为不使用session
                .csrf().disable()
                // 认证失败处理类
                .exceptionHandling().authenticationEntryPoint(unauthorizedHandler).and()
                // 基于token,所以不需要session
                .sessionManagement().sessionCreationPolicy(SessionCreationPolicy.STATELESS).and()
                // 过滤请求
                .authorizeRequests()
                // 对于登录login 验证码captchaImage 允许匿名访问
L
leejoker 已提交
97
                .antMatchers("/login", "/captchaImage", "/findWxQrLoginInfo", "/wxQrLogin").anonymous()
98 99 100 101 102 103 104 105 106 107
                .antMatchers(
                        HttpMethod.GET,
                        "/*.html",
                        "/**/*.html",
                        "/**/*.css",
                        "/**/*.js"
                ).permitAll()
                .antMatchers("/profile/**").anonymous()
                .antMatchers("/common/download**").anonymous()
                .antMatchers("/common/download/resource**").anonymous()
S
sunxiwang 已提交
108
                .antMatchers("/common/download/url**").anonymous()
109 110 111 112 113
                .antMatchers("/swagger-ui.html").anonymous()
                .antMatchers("/swagger-resources/**").anonymous()
                .antMatchers("/webjars/**").anonymous()
                .antMatchers("/*/api-docs").anonymous()
                .antMatchers("/druid/**").anonymous()
114
                .antMatchers("/wecom/callback/**").anonymous()
115 116 117 118 119

                .antMatchers("/wecom/chat/item/list").anonymous()
                .antMatchers("/wecom/chat/collection/list").anonymous()
                .antMatchers("/wecom/chat/collection/cancleCollection").anonymous()
                .antMatchers("/wecom/chat/collection/addCollection").anonymous()
1
18356073052 已提交
120
                .antMatchers("/wecom/chat/side/h5List").anonymous()
fix  
孙喜旺 已提交
121
                .antMatchers("/wecom/ticket/**").anonymous()
122

123
                .antMatchers("/wecom/user/getUserInfo").anonymous()
水库浪子 已提交
124 125
               // .antMatchers("/common/uploadFile2Cos").anonymous()
//                .antMatchers("/wecom/material/temporaryMaterialMediaId").anonymous()
126
                .antMatchers("/wecom/portrait/**").anonymous()
127
                .antMatchers("/wecom/fission/poster", "/wecom/fission/*/progress/*", "/wecom/reward/getRewardByFissionId/**").anonymous()
128
                // 获取实际群活码和社群运营H5页面不需要登录
L
leejoker 已提交
129 130
                .antMatchers("/wecom/groupCode/getActualCode/**").anonymous()
                .antMatchers("/wecom/community/h5/**").anonymous()
131 132
                //微信授权接口
                .antMatchers("/weixin/auth/**").anonymous()
133

134 135 136 137

                .antMatchers("/wecom/user/synchWeUser").anonymous()


138 139 140 141 142 143 144 145 146 147 148 149
                // 除上面外的所有请求全部需要鉴权认证
                .anyRequest().authenticated()
                .and()
                .headers().frameOptions().disable();
        httpSecurity.logout().logoutUrl("/logout").logoutSuccessHandler(logoutSuccessHandler);
        // 添加JWT filter
        httpSecurity.addFilterBefore(authenticationTokenFilter, UsernamePasswordAuthenticationFilter.class);
        // 添加CORS filter
        httpSecurity.addFilterBefore(corsFilter, JwtAuthenticationTokenFilter.class);
        httpSecurity.addFilterBefore(corsFilter, LogoutFilter.class);
    }

L
leejoker 已提交
150

151 152 153 154
    /**
     * 强散列哈希加密实现
     */
    @Bean
L
leejoker 已提交
155
    public BCryptPasswordEncoder bCryptPasswordEncoder() {
156 157 158 159 160 161 162
        return new BCryptPasswordEncoder();
    }

    /**
     * 身份认证接口
     */
    @Override
L
leejoker 已提交
163
    protected void configure(AuthenticationManagerBuilder auth) throws Exception {
164 165 166
        auth.userDetailsService(userDetailsService).passwordEncoder(bCryptPasswordEncoder());
    }
}