mirror of
				https://github.com/continew-org/continew-admin.git
				synced 2025-11-04 09:01:37 +08:00 
			
		
		
		
	refactor: 优化 SaToken 及图形验证码配置
This commit is contained in:
		@@ -0,0 +1,39 @@
 | 
			
		||||
/*
 | 
			
		||||
 * Copyright (c) 2022-present Charles7c Authors. All Rights Reserved.
 | 
			
		||||
 *
 | 
			
		||||
 * Licensed under the Apache License, Version 2.0 (the "License");
 | 
			
		||||
 * you may not use this file except in compliance with the License.
 | 
			
		||||
 * You may obtain a copy of the License at
 | 
			
		||||
 *
 | 
			
		||||
 *     http://www.apache.org/licenses/LICENSE-2.0
 | 
			
		||||
 *
 | 
			
		||||
 * Unless required by applicable law or agreed to in writing, software
 | 
			
		||||
 * distributed under the License is distributed on an "AS IS" BASIS,
 | 
			
		||||
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
			
		||||
 * See the License for the specific language governing permissions and
 | 
			
		||||
 * limitations under the License.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
package top.charles7c.continew.admin.auth.config.satoken;
 | 
			
		||||
 | 
			
		||||
import cn.dev33.satoken.stp.StpInterface;
 | 
			
		||||
import org.springframework.context.annotation.Bean;
 | 
			
		||||
import org.springframework.context.annotation.Configuration;
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * Sa-Token 配置
 | 
			
		||||
 *
 | 
			
		||||
 * @author Charles7c
 | 
			
		||||
 * @since 2022/12/19 22:13
 | 
			
		||||
 */
 | 
			
		||||
@Configuration
 | 
			
		||||
public class SaTokenConfiguration {
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * Sa-Token 权限认证配置
 | 
			
		||||
     */
 | 
			
		||||
    @Bean
 | 
			
		||||
    public StpInterface stpInterface() {
 | 
			
		||||
        return new SaTokenPermissionImpl();
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
@@ -16,35 +16,27 @@
 | 
			
		||||
 | 
			
		||||
package top.charles7c.continew.admin.auth.config.satoken;
 | 
			
		||||
 | 
			
		||||
import java.util.ArrayList;
 | 
			
		||||
import java.util.List;
 | 
			
		||||
 | 
			
		||||
import cn.dev33.satoken.stp.StpInterface;
 | 
			
		||||
 | 
			
		||||
import top.charles7c.continew.admin.common.model.dto.LoginUser;
 | 
			
		||||
import top.charles7c.continew.admin.common.util.helper.LoginHelper;
 | 
			
		||||
 | 
			
		||||
import java.util.ArrayList;
 | 
			
		||||
import java.util.List;
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * Sa-Token 权限认证适配
 | 
			
		||||
 * Sa-Token 权限认证实现
 | 
			
		||||
 *
 | 
			
		||||
 * @author Lion Li(<a href="https://gitee.com/dromara/RuoYi-Vue-Plus">RuoYi-Vue-Plus</a>)
 | 
			
		||||
 * @author Charles7c
 | 
			
		||||
 * @since 2023/3/1 22:28
 | 
			
		||||
 */
 | 
			
		||||
public class SaTokenPermissionImpl implements StpInterface {
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 获取菜单权限列表
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public List<String> getPermissionList(Object loginId, String loginType) {
 | 
			
		||||
        LoginUser loginUser = LoginHelper.getLoginUser();
 | 
			
		||||
        return new ArrayList<>(loginUser.getPermissions());
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /**
 | 
			
		||||
     * 获取角色权限列表
 | 
			
		||||
     */
 | 
			
		||||
    @Override
 | 
			
		||||
    public List<String> getRoleList(Object loginId, String loginType) {
 | 
			
		||||
        LoginUser loginUser = LoginHelper.getLoginUser();
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user