-
Notifications
You must be signed in to change notification settings - Fork 177
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: 适配 ContiNew Starter 数据权限解决方案(数据访问模块-MyBatis Plus)
1.移除数据权限相关内容,适配 ContiNew Starter 数据权限解决方案 2.适配 ContiNew Starter 部分包结构变动
- Loading branch information
Showing
41 changed files
with
118 additions
and
356 deletions.
There are no files selected for viewing
75 changes: 0 additions & 75 deletions
75
...n-common/src/main/java/top/charles7c/continew/admin/common/annotation/DataPermission.java
This file was deleted.
Oops, something went wrong.
58 changes: 58 additions & 0 deletions
58
...ain/java/top/charles7c/continew/admin/common/config/mybatis/DataPermissionFilterImpl.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
/* | ||
* 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.common.config.mybatis; | ||
|
||
import java.util.stream.Collectors; | ||
|
||
import cn.hutool.core.convert.Convert; | ||
|
||
import top.charles7c.continew.admin.common.model.dto.LoginUser; | ||
import top.charles7c.continew.admin.common.util.helper.LoginHelper; | ||
import top.charles7c.continew.starter.data.mybatis.plus.datapermission.DataPermissionCurrentUser; | ||
import top.charles7c.continew.starter.data.mybatis.plus.datapermission.DataPermissionFilter; | ||
import top.charles7c.continew.starter.data.mybatis.plus.datapermission.DataScope; | ||
|
||
/** | ||
* 数据权限过滤器实现类 | ||
* | ||
* @author Charles7c | ||
* @since 2023/12/21 21:19 | ||
*/ | ||
public class DataPermissionFilterImpl implements DataPermissionFilter { | ||
|
||
@Override | ||
public boolean isFilter() { | ||
LoginUser loginUser = LoginHelper.getLoginUser(); | ||
return null != loginUser && !loginUser.isAdmin(); | ||
} | ||
|
||
@Override | ||
public DataPermissionCurrentUser getCurrentUser() { | ||
LoginUser loginUser = LoginHelper.getLoginUser(); | ||
if (null == loginUser) { | ||
throw new IllegalArgumentException("Current user is not allowed to be empty."); | ||
} | ||
DataPermissionCurrentUser currentUser = new DataPermissionCurrentUser(); | ||
currentUser.setUserId(Convert.toStr(loginUser.getId())); | ||
currentUser.setDeptId(Convert.toStr(loginUser.getDeptId())); | ||
currentUser.setRoles(loginUser.getRoles().stream() | ||
.map(r -> new DataPermissionCurrentUser.CurrentUserRole(Convert.toStr(r.getId()), | ||
DataScope.valueOf(r.getDataScope().name()))) | ||
.collect(Collectors.toSet())); | ||
return currentUser; | ||
} | ||
} |
176 changes: 0 additions & 176 deletions
176
...in/java/top/charles7c/continew/admin/common/config/mybatis/DataPermissionHandlerImpl.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.