删除非必要权限相关代码类,更改数据库命名相关代码修改
parent
6028359832
commit
08fb8afc63
@ -1,40 +0,0 @@
|
||||
package com.glxp.api.dao.auth;
|
||||
|
||||
import com.glxp.api.entity.auth.AuthPermission;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Mapper
|
||||
public interface AuthPermissionDao {
|
||||
|
||||
/**
|
||||
* 根据roleIds查询
|
||||
* @param roleIds 传入的id
|
||||
* @return
|
||||
*/
|
||||
List<AuthPermission> listByRoleIdIn(List<Long> roleIds);
|
||||
|
||||
/**
|
||||
* 根据 roleId 查询
|
||||
* @param roleId 传入的id
|
||||
* @return
|
||||
*/
|
||||
List<AuthPermission> listByRoleId(Long roleId);
|
||||
|
||||
|
||||
/**
|
||||
* 批量插入
|
||||
* @param authPermissionList
|
||||
* @return
|
||||
*/
|
||||
int insertAuthPermissionAll(List<AuthPermission> authPermissionList);
|
||||
|
||||
/**
|
||||
* 根据角色id删除
|
||||
* @param roleId
|
||||
* @return
|
||||
*/
|
||||
boolean deleteByRoleId(Long roleId);
|
||||
|
||||
}
|
@ -1,61 +0,0 @@
|
||||
package com.glxp.api.dao.auth;
|
||||
|
||||
import com.glxp.api.entity.auth.AuthPermissionRule;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
|
||||
@Mapper
|
||||
public interface AuthPermissionRuleDao {
|
||||
|
||||
/**
|
||||
* 根据ids查询 规则名称
|
||||
* @param ids 传入的ids
|
||||
* @return
|
||||
*/
|
||||
List<AuthPermissionRule> listByIdIn(List<Long> ids);
|
||||
|
||||
/**
|
||||
* 查询所有
|
||||
* @param map
|
||||
* @return
|
||||
*/
|
||||
List<AuthPermissionRule> listAll();
|
||||
|
||||
/**
|
||||
* 根据 父级 pid 查询
|
||||
* @param pid
|
||||
* @return
|
||||
*/
|
||||
List<AuthPermissionRule> listByPid(Long pid);
|
||||
|
||||
/**
|
||||
* 根据 规则名称查询
|
||||
* @param name
|
||||
* @return
|
||||
*/
|
||||
AuthPermissionRule findByName(String name);
|
||||
|
||||
/**
|
||||
* 插入
|
||||
* @param authPermissionRule
|
||||
* @return
|
||||
*/
|
||||
boolean insertAuthPermissionRule(AuthPermissionRule authPermissionRule);
|
||||
|
||||
/**
|
||||
* 更新
|
||||
* @param authPermissionRule
|
||||
* @return
|
||||
*/
|
||||
boolean updateAuthPermissionRule(AuthPermissionRule authPermissionRule);
|
||||
|
||||
/**
|
||||
* 删除
|
||||
* @param id
|
||||
* @return
|
||||
*/
|
||||
boolean deleteById(Long id);
|
||||
|
||||
}
|
@ -1,47 +0,0 @@
|
||||
package com.glxp.api.dao.auth;
|
||||
|
||||
import com.glxp.api.entity.auth.AuthRoleAdmin;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
|
||||
@Mapper
|
||||
public interface AuthRoleAdminDao {
|
||||
|
||||
/**
|
||||
* 根据 adminId 查询
|
||||
* @param adminId 传入的 adminId
|
||||
* @return
|
||||
*/
|
||||
List<AuthRoleAdmin> listByAdminId(Long adminId);
|
||||
|
||||
/**
|
||||
* 根据 多个 adminId 查询
|
||||
* @param adminIds 传入的 adminIds
|
||||
* @return
|
||||
*/
|
||||
List<AuthRoleAdmin> listByAdminIdIn(List<Long> adminIds);
|
||||
|
||||
/**
|
||||
* 根据 role_id 查询 admin_id
|
||||
* @param roleId 传入的 roleId
|
||||
* @return
|
||||
*/
|
||||
List<AuthRoleAdmin> listByRoleId(Long roleId);
|
||||
|
||||
/**
|
||||
* 批量插入
|
||||
* @param authRoleAdminList
|
||||
* @return
|
||||
*/
|
||||
int insertAuthRoleAdminAll(List<AuthRoleAdmin> authRoleAdminList);
|
||||
|
||||
|
||||
/**
|
||||
* 根据 adminId 删除
|
||||
* @param adminId
|
||||
* @return
|
||||
*/
|
||||
boolean deleteByAdminId(Long adminId);
|
||||
}
|
@ -1,47 +0,0 @@
|
||||
package com.glxp.api.dao.auth;
|
||||
|
||||
import com.glxp.api.entity.auth.AuthRole;
|
||||
import com.glxp.api.req.auth.AuthRoleQueryRequest;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Mapper
|
||||
public interface AuthRoleDao {
|
||||
|
||||
/**
|
||||
* 后台管理业务查询列表
|
||||
* @return 列表
|
||||
*/
|
||||
List<AuthRole> listAdminPage(AuthRoleQueryRequest authRoleQueryRequest);
|
||||
|
||||
/**
|
||||
* 返回id,name 字段的列表
|
||||
* @return 列表
|
||||
*/
|
||||
List<AuthRole> listAuthAdminRolePage(Integer status);
|
||||
|
||||
AuthRole findByName(String name);
|
||||
|
||||
/**
|
||||
* 插入
|
||||
* @param authAdmin
|
||||
* @return
|
||||
*/
|
||||
boolean insertAuthRole(AuthRole authAdmin);
|
||||
|
||||
/**
|
||||
* 更新
|
||||
* @param authAdmin
|
||||
* @return
|
||||
*/
|
||||
boolean updateAuthRole(AuthRole authAdmin);
|
||||
|
||||
/**
|
||||
* 删除
|
||||
* @param id
|
||||
* @return
|
||||
*/
|
||||
boolean deleteById(Long id);
|
||||
|
||||
}
|
@ -1,24 +0,0 @@
|
||||
package com.glxp.api.dao.auth;
|
||||
|
||||
import com.glxp.api.entity.system.DeviceKeyEntity;
|
||||
import com.glxp.api.req.system.DeleteRequest;
|
||||
import com.glxp.api.req.system.FilterDeviceKeyRequest;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Mapper
|
||||
public interface DeviceKeyDao {
|
||||
DeviceKeyEntity findDeviceByImei(FilterDeviceKeyRequest filterDeviceKeyRequest);
|
||||
|
||||
List<DeviceKeyEntity> findDeviceKey(FilterDeviceKeyRequest filterDeviceKeyRequest);
|
||||
|
||||
void insertDeviceKey(DeviceKeyEntity deviceKeyEntity);
|
||||
|
||||
void updateDeviceKey(DeviceKeyEntity deviceKeyEntity);
|
||||
|
||||
void updateDeviceKeyByImei(DeviceKeyEntity deviceKeyEntity);
|
||||
|
||||
void deleteDeviceKey(DeleteRequest deleteRequest);
|
||||
|
||||
}
|
@ -0,0 +1,24 @@
|
||||
package com.glxp.api.dao.auth;
|
||||
|
||||
import com.glxp.api.entity.system.SysPdaKeyEntity;
|
||||
import com.glxp.api.req.system.DeleteRequest;
|
||||
import com.glxp.api.req.system.FilterDeviceKeyRequest;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Mapper
|
||||
public interface SysPdaKeyDao {
|
||||
SysPdaKeyEntity findDeviceByImei(FilterDeviceKeyRequest filterDeviceKeyRequest);
|
||||
|
||||
List<SysPdaKeyEntity> findDeviceKey(FilterDeviceKeyRequest filterDeviceKeyRequest);
|
||||
|
||||
void insertDeviceKey(SysPdaKeyEntity sysPdaKeyEntity);
|
||||
|
||||
void updateDeviceKey(SysPdaKeyEntity sysPdaKeyEntity);
|
||||
|
||||
void updateDeviceKeyByImei(SysPdaKeyEntity sysPdaKeyEntity);
|
||||
|
||||
void deleteDeviceKey(DeleteRequest deleteRequest);
|
||||
|
||||
}
|
@ -1,19 +0,0 @@
|
||||
package com.glxp.api.entity.auth;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 权限授权表
|
||||
*/
|
||||
@Data
|
||||
public class AuthPermission {
|
||||
|
||||
private Long id;
|
||||
|
||||
private Long roleId;
|
||||
|
||||
private Long permissionRuleId;
|
||||
|
||||
private String type;
|
||||
|
||||
}
|
@ -1,22 +0,0 @@
|
||||
package com.glxp.api.entity.auth;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 规则表
|
||||
*/
|
||||
@Data
|
||||
public class AuthPermissionRule {
|
||||
|
||||
private Long id;
|
||||
private Long pid;
|
||||
private String name;
|
||||
private String title;
|
||||
private Integer status;
|
||||
private String condition;
|
||||
private Integer listorder;
|
||||
private Date createTime;
|
||||
private Date updateTime;
|
||||
}
|
@ -1,21 +0,0 @@
|
||||
package com.glxp.api.entity.auth;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* 角色表
|
||||
*/
|
||||
@Data
|
||||
public class AuthRole {
|
||||
|
||||
private Long id;
|
||||
private String name;
|
||||
private Long pid;
|
||||
private Long status;
|
||||
private String remark;
|
||||
private Long listorder;
|
||||
private Date createTime;
|
||||
private Date updateTime;
|
||||
}
|
@ -1,14 +0,0 @@
|
||||
package com.glxp.api.entity.auth;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 用户角色对应表
|
||||
*/
|
||||
@Data
|
||||
public class AuthRoleAdmin {
|
||||
private Long id;
|
||||
private Long role_id;
|
||||
private Long admin_id;
|
||||
|
||||
}
|
@ -1,9 +0,0 @@
|
||||
package com.glxp.api.service.auth;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public interface AuthLoginService {
|
||||
|
||||
List<String> listRuleByAdminId(Long adminId);
|
||||
|
||||
}
|
@ -1,25 +0,0 @@
|
||||
package com.glxp.api.service.auth;
|
||||
|
||||
|
||||
import com.glxp.api.entity.auth.AuthPermissionRule;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public interface AuthPermissionRuleService {
|
||||
|
||||
|
||||
List<AuthPermissionRule> listByIdIn(List<Long> ids);
|
||||
|
||||
|
||||
List<AuthPermissionRule> listByPid(Long pid);
|
||||
|
||||
List<AuthPermissionRule> listAll();
|
||||
|
||||
boolean insertAuthPermissionRule(AuthPermissionRule authPermissionRule);
|
||||
|
||||
boolean updateAuthPermissionRule(AuthPermissionRule authPermissionRule);
|
||||
|
||||
boolean deleteById(Long id);
|
||||
|
||||
|
||||
}
|
@ -1,19 +0,0 @@
|
||||
package com.glxp.api.service.auth;
|
||||
|
||||
|
||||
import com.glxp.api.entity.auth.AuthPermission;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public interface AuthPermissionService {
|
||||
|
||||
|
||||
List<AuthPermission> listByRoleIdIn(List<Long> roleIds);
|
||||
|
||||
List<AuthPermission> listByRoleId(Long roleId);
|
||||
|
||||
int insertAuthPermissionAll(List<AuthPermission> authPermissionList);
|
||||
|
||||
boolean deleteByRoleId(Long roleId);
|
||||
|
||||
}
|
@ -1,22 +0,0 @@
|
||||
package com.glxp.api.service.auth;
|
||||
|
||||
|
||||
import com.glxp.api.entity.auth.AuthRoleAdmin;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public interface AuthRoleAdminService {
|
||||
|
||||
List<AuthRoleAdmin> listByAdminId(Long adminId);
|
||||
|
||||
List<AuthRoleAdmin> listByAdminIdIn(List<Long> adminIds);
|
||||
|
||||
List<AuthRoleAdmin> listByRoleId(Long roleId);
|
||||
|
||||
int insertAuthRoleAdminAll(List<AuthRoleAdmin> authRoleAdminList);
|
||||
|
||||
int insertRolesAdminIdAll(List<Long> roles, Long adminId);
|
||||
|
||||
boolean deleteByAdminId(Long adminId);
|
||||
|
||||
}
|
@ -1,23 +0,0 @@
|
||||
package com.glxp.api.service.auth;
|
||||
|
||||
|
||||
import com.glxp.api.entity.auth.AuthRole;
|
||||
import com.glxp.api.req.auth.AuthRoleQueryRequest;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public interface AuthRoleService {
|
||||
|
||||
List<AuthRole> listAdminPage(AuthRoleQueryRequest authRoleQueryRequest);
|
||||
|
||||
List<AuthRole> listAuthAdminRolePage(Integer page, Integer limit, Integer status);
|
||||
|
||||
AuthRole findByName(String name);
|
||||
|
||||
boolean insertAuthRole(AuthRole authRole);
|
||||
|
||||
boolean updateAuthRole(AuthRole authRole);
|
||||
|
||||
boolean deleteById(Long id);
|
||||
|
||||
}
|
@ -1,25 +0,0 @@
|
||||
package com.glxp.api.service.auth;
|
||||
|
||||
|
||||
import com.glxp.api.entity.system.DeviceKeyEntity;
|
||||
import com.glxp.api.req.system.DeleteRequest;
|
||||
import com.glxp.api.req.system.FilterDeviceKeyRequest;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public interface DeviceKeyService {
|
||||
List<DeviceKeyEntity> findDeviceKey(FilterDeviceKeyRequest filterDeviceKeyRequest);
|
||||
|
||||
DeviceKeyEntity findDeviceByImei(FilterDeviceKeyRequest filterDeviceKeyRequest);
|
||||
|
||||
DeviceKeyEntity findDeviceByImei(String imei);
|
||||
|
||||
void insertDeviceKey(DeviceKeyEntity deviceKeyEntity);
|
||||
|
||||
void updateDeviceKeyByImei(DeviceKeyEntity deviceKeyEntity);
|
||||
|
||||
void updateDeviceKey(DeviceKeyEntity deviceKeyEntity);
|
||||
|
||||
void deleteDeviceKey(DeleteRequest deleteRequest);
|
||||
|
||||
}
|
@ -0,0 +1,25 @@
|
||||
package com.glxp.api.service.auth;
|
||||
|
||||
|
||||
import com.glxp.api.entity.system.SysPdaKeyEntity;
|
||||
import com.glxp.api.req.system.DeleteRequest;
|
||||
import com.glxp.api.req.system.FilterDeviceKeyRequest;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public interface SysPdaKeyService {
|
||||
List<SysPdaKeyEntity> findDeviceKey(FilterDeviceKeyRequest filterDeviceKeyRequest);
|
||||
|
||||
SysPdaKeyEntity findDeviceByImei(FilterDeviceKeyRequest filterDeviceKeyRequest);
|
||||
|
||||
SysPdaKeyEntity findDeviceByImei(String imei);
|
||||
|
||||
void insertDeviceKey(SysPdaKeyEntity sysPdaKeyEntity);
|
||||
|
||||
void updateDeviceKeyByImei(SysPdaKeyEntity sysPdaKeyEntity);
|
||||
|
||||
void updateDeviceKey(SysPdaKeyEntity sysPdaKeyEntity);
|
||||
|
||||
void deleteDeviceKey(DeleteRequest deleteRequest);
|
||||
|
||||
}
|
@ -1,82 +0,0 @@
|
||||
package com.glxp.api.service.auth.impl;
|
||||
|
||||
import com.glxp.api.entity.auth.AuthPermission;
|
||||
import com.glxp.api.entity.auth.AuthPermissionRule;
|
||||
import com.glxp.api.entity.auth.AuthRoleAdmin;
|
||||
import com.glxp.api.service.auth.AuthLoginService;
|
||||
import com.glxp.api.service.auth.AuthPermissionRuleService;
|
||||
import com.glxp.api.service.auth.AuthPermissionService;
|
||||
import com.glxp.api.service.auth.AuthRoleAdminService;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
@Service
|
||||
@Slf4j
|
||||
public class AuthLoginServiceImpl implements AuthLoginService {
|
||||
|
||||
@Resource
|
||||
private AuthRoleAdminService authRoleAdminService;
|
||||
|
||||
@Resource
|
||||
private AuthPermissionService authPermissionService;
|
||||
|
||||
@Resource
|
||||
private AuthPermissionRuleService authPermissionRuleService;
|
||||
|
||||
|
||||
/**
|
||||
* 根据 管理员id 获取权限
|
||||
*
|
||||
* @param adminId
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
public List<String> listRuleByAdminId(Long adminId) {
|
||||
|
||||
List<String> authRules = new ArrayList<>();
|
||||
// 超级管理员
|
||||
if (adminId.equals(1L)) {
|
||||
authRules.add("admin");
|
||||
return authRules;
|
||||
}
|
||||
|
||||
// 如果存在,先从缓存中获取权限
|
||||
// String aarKey = String.format(CacheConstant.ADMIN_AUTH_RULES, adminId);
|
||||
// if (CacheUtils.hasKey(aarKey)) {
|
||||
// return new ArrayList<>(CacheUtils.sGetMembers(aarKey));
|
||||
// }
|
||||
// log.info("开始获取数据库中的用户的权限规则列表");
|
||||
|
||||
// 获取角色ids
|
||||
List<AuthRoleAdmin> authRoleAdmins = authRoleAdminService.listByAdminId(adminId);
|
||||
|
||||
List<Long> roleIds = authRoleAdmins.stream().map(AuthRoleAdmin::getRole_id).collect(Collectors.toList());
|
||||
|
||||
// 角色授权列表
|
||||
List<AuthPermission> authPermissions = authPermissionService.listByRoleIdIn(roleIds);
|
||||
List<Long> permissionRuleIds = authPermissions.stream().map(AuthPermission::getPermissionRuleId).collect(Collectors.toList());
|
||||
|
||||
// 获取授权的规则
|
||||
List<AuthPermissionRule> authPermissionRules = authPermissionRuleService.listByIdIn(permissionRuleIds);
|
||||
|
||||
// 获取权限列表
|
||||
authRules = authPermissionRules.stream().map(AuthPermissionRule::getName).collect(Collectors.toList());
|
||||
|
||||
// 如果为空,则添加一个空值
|
||||
if (authRules.isEmpty()) {
|
||||
authRules.add("");
|
||||
}
|
||||
|
||||
// String[] strings = authRules.toArray(new String[0]);
|
||||
// CacheUtils.sAdd(aarKey, strings);
|
||||
// CacheUtils.expire(aarKey, 7200L); // 两小时后过期
|
||||
|
||||
return authRules;
|
||||
}
|
||||
|
||||
}
|
@ -1,110 +0,0 @@
|
||||
package com.glxp.api.service.auth.impl;
|
||||
|
||||
import com.glxp.api.common.enums.ResultEnum;
|
||||
import com.glxp.api.dao.auth.AuthPermissionRuleDao;
|
||||
import com.glxp.api.entity.auth.AuthPermissionRule;
|
||||
import com.glxp.api.exception.JsonException;
|
||||
import com.glxp.api.service.auth.AuthPermissionRuleService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
import java.util.Collections;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@Service
|
||||
public class AuthPermissionRuleServiceImpl implements AuthPermissionRuleService {
|
||||
|
||||
@Resource
|
||||
private AuthPermissionRuleDao authPermissionRuleDao;
|
||||
|
||||
/**
|
||||
* 根据多个id查询
|
||||
*
|
||||
* @param ids
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
public List<AuthPermissionRule> listByIdIn(List<Long> ids) {
|
||||
if (ids.isEmpty()) {
|
||||
return Collections.emptyList();
|
||||
}
|
||||
return authPermissionRuleDao.listByIdIn(ids);
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据父级 pid 查询
|
||||
*
|
||||
* @param pid
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
public List<AuthPermissionRule> listByPid(Long pid) {
|
||||
return authPermissionRuleDao.listByPid(pid);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询所有
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
public List<AuthPermissionRule> listAll() {
|
||||
return authPermissionRuleDao.listAll();
|
||||
}
|
||||
|
||||
/**
|
||||
* 插入
|
||||
* @param authPermissionRule
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
public boolean insertAuthPermissionRule(AuthPermissionRule authPermissionRule) {
|
||||
|
||||
// 查询是否存在
|
||||
AuthPermissionRule byName = authPermissionRuleDao.findByName(authPermissionRule.getName());
|
||||
if (byName != null) {
|
||||
throw new JsonException(ResultEnum.DATA_REPEAT, "当前权限规则已存在");
|
||||
}
|
||||
|
||||
authPermissionRule.setCreateTime(new Date());
|
||||
authPermissionRule.setUpdateTime(new Date());
|
||||
if (authPermissionRule.getListorder() == null) {
|
||||
authPermissionRule.setListorder(999);
|
||||
}
|
||||
return authPermissionRuleDao.insertAuthPermissionRule(authPermissionRule);
|
||||
}
|
||||
|
||||
/**
|
||||
* 更新
|
||||
* @param authPermissionRule
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
public boolean updateAuthPermissionRule(AuthPermissionRule authPermissionRule) {
|
||||
|
||||
if (authPermissionRule.getName() != null) {
|
||||
// 查询是否存在
|
||||
AuthPermissionRule byName = authPermissionRuleDao.findByName(authPermissionRule.getName());
|
||||
if (byName != null && !authPermissionRule.getId().equals(byName.getId())) {
|
||||
throw new JsonException(ResultEnum.DATA_REPEAT, "当前权限规则已存在");
|
||||
}
|
||||
}
|
||||
|
||||
authPermissionRule.setUpdateTime(new Date());
|
||||
return authPermissionRuleDao.updateAuthPermissionRule(authPermissionRule);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除
|
||||
*
|
||||
* @param id
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
public boolean deleteById(Long id) {
|
||||
return authPermissionRuleDao.deleteById(id);
|
||||
}
|
||||
}
|
@ -1,60 +0,0 @@
|
||||
package com.glxp.api.service.auth.impl;
|
||||
|
||||
import com.glxp.api.dao.auth.AuthPermissionDao;
|
||||
import com.glxp.api.entity.auth.AuthPermission;
|
||||
import com.glxp.api.service.auth.AuthPermissionService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
|
||||
@Service
|
||||
public class AuthPermissionServiceImpl implements AuthPermissionService {
|
||||
|
||||
@Resource
|
||||
private AuthPermissionDao authPermissionDao;
|
||||
|
||||
/**
|
||||
* 根据 多个角色id 查询
|
||||
* @param roleIds
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
public List<AuthPermission> listByRoleIdIn(List<Long> roleIds) {
|
||||
if (roleIds.isEmpty()) {
|
||||
return Collections.emptyList();
|
||||
}
|
||||
return authPermissionDao.listByRoleIdIn(roleIds);
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据某个角色id 查询
|
||||
* @param roleId
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
public List<AuthPermission> listByRoleId(Long roleId) {
|
||||
return authPermissionDao.listByRoleId(roleId);
|
||||
}
|
||||
|
||||
/**
|
||||
* 批量插入
|
||||
* @param authPermissionList
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
public int insertAuthPermissionAll(List<AuthPermission> authPermissionList) {
|
||||
return authPermissionDao.insertAuthPermissionAll(authPermissionList);
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据角色id删除
|
||||
* @param roleId
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
public boolean deleteByRoleId(Long roleId) {
|
||||
return authPermissionDao.deleteByRoleId(roleId);
|
||||
}
|
||||
}
|
@ -1,103 +0,0 @@
|
||||
package com.glxp.api.service.auth.impl;
|
||||
|
||||
import com.glxp.api.dao.auth.AuthRoleAdminDao;
|
||||
import com.glxp.api.entity.auth.AuthRoleAdmin;
|
||||
import com.glxp.api.service.auth.AuthRoleAdminService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
@Service
|
||||
public class AuthRoleAdminServiceImpl implements AuthRoleAdminService {
|
||||
|
||||
@Resource
|
||||
private AuthRoleAdminDao authRoleAdminDao;
|
||||
|
||||
/**
|
||||
* 根据 adminid 获取角色id
|
||||
* @param adminId
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
public List<AuthRoleAdmin> listByAdminId(Long adminId) {
|
||||
return authRoleAdminDao.listByAdminId(adminId);
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据多个 adminId 查询角色列表
|
||||
* @param adminIds
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
public List<AuthRoleAdmin> listByAdminIdIn(List<Long> adminIds) {
|
||||
if (adminIds.isEmpty()) {
|
||||
return Collections.emptyList();
|
||||
}
|
||||
return authRoleAdminDao.listByAdminIdIn(adminIds);
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据 roleId 获取 管理员id
|
||||
* @param roleId
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
public List<AuthRoleAdmin> listByRoleId(Long roleId) {
|
||||
return authRoleAdminDao.listByRoleId(roleId);
|
||||
}
|
||||
|
||||
/**
|
||||
* 批量插入
|
||||
* @param authRoleAdminList
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
public int insertAuthRoleAdminAll(List<AuthRoleAdmin> authRoleAdminList) {
|
||||
|
||||
if (authRoleAdminList == null || authRoleAdminList.isEmpty()) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
return authRoleAdminDao.insertAuthRoleAdminAll(authRoleAdminList);
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据 角色ids 和 管理员 adminId 批量插入
|
||||
* @param roles
|
||||
* @param adminId
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
public int insertRolesAdminIdAll(List<Long> roles, Long adminId) {
|
||||
|
||||
List<AuthRoleAdmin> authRoleAdminList = roles.stream().map(aLong -> {
|
||||
AuthRoleAdmin authRoleAdmin = new AuthRoleAdmin();
|
||||
authRoleAdmin.setRole_id(aLong);
|
||||
authRoleAdmin.setAdmin_id(adminId);
|
||||
return authRoleAdmin;
|
||||
}).collect(Collectors.toList());
|
||||
if (!authRoleAdminList.isEmpty()) {
|
||||
return insertAuthRoleAdminAll(authRoleAdminList);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据 adminId 删除对应的权限
|
||||
* @param adminId
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
public boolean deleteByAdminId(Long adminId) {
|
||||
|
||||
// // 删除之前缓存权限规则
|
||||
// String aarKey = String.format(CacheConstant.ADMIN_AUTH_RULES, adminId);
|
||||
// CacheUtils.delete(aarKey);
|
||||
|
||||
return authRoleAdminDao.deleteByAdminId(adminId);
|
||||
}
|
||||
}
|
@ -1,93 +0,0 @@
|
||||
package com.glxp.api.service.auth.impl;
|
||||
|
||||
import com.github.pagehelper.PageHelper;
|
||||
import com.glxp.api.dao.auth.AuthRoleDao;
|
||||
import com.glxp.api.entity.auth.AuthRole;
|
||||
import com.glxp.api.req.auth.AuthRoleQueryRequest;
|
||||
import com.glxp.api.service.auth.AuthRoleService;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
@Service
|
||||
public class AuthRoleServiceImpl implements AuthRoleService {
|
||||
|
||||
@Resource
|
||||
private AuthRoleDao authRoleDao;
|
||||
|
||||
/**
|
||||
* 查询列表
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
public List<AuthRole> listAdminPage(AuthRoleQueryRequest authRoleQueryRequest) {
|
||||
int offset = (authRoleQueryRequest.getPage() - 1) * authRoleQueryRequest.getLimit();
|
||||
PageHelper.offsetPage(offset, authRoleQueryRequest.getLimit());
|
||||
List<AuthRole> list = authRoleDao.listAdminPage(authRoleQueryRequest);
|
||||
return list;
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询管理员页面的列表
|
||||
* @param page
|
||||
* @param limit
|
||||
* @param status
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
public List<AuthRole> listAuthAdminRolePage(Integer page, Integer limit, Integer status) {
|
||||
page = page != null && page > 0 ? page : 1;
|
||||
limit = limit != null && limit > 0 && limit < 100 ? limit : 100;
|
||||
int offset = (page - 1) * limit;
|
||||
PageHelper.offsetPage(offset, limit);
|
||||
List<AuthRole> list = authRoleDao.listAuthAdminRolePage(status);
|
||||
return list;
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据名称查询
|
||||
* @param name
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
public AuthRole findByName(String name) {
|
||||
return authRoleDao.findByName(name);
|
||||
}
|
||||
|
||||
/**
|
||||
* 插入
|
||||
* @param authRole
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
public boolean insertAuthRole(AuthRole authRole) {
|
||||
|
||||
authRole.setCreateTime(new Date());
|
||||
authRole.setUpdateTime(new Date());
|
||||
|
||||
return authRoleDao.insertAuthRole(authRole);
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改
|
||||
* @param authRole
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
public boolean updateAuthRole(AuthRole authRole) {
|
||||
authRole.setUpdateTime(new Date());
|
||||
return authRoleDao.updateAuthRole(authRole);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除
|
||||
* @param id
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
public boolean deleteById(Long id) {
|
||||
return authRoleDao.deleteById(id);
|
||||
}
|
||||
}
|
@ -1,37 +0,0 @@
|
||||
package com.glxp.api.util;
|
||||
|
||||
import com.glxp.api.entity.auth.AuthPermissionRule;
|
||||
import com.glxp.api.res.auth.AuthPermissionRuleMergeResponse;
|
||||
import org.springframework.beans.BeanUtils;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 权限规则生成树形节点工具类
|
||||
*/
|
||||
public class PermissionRuleTreeUtils {
|
||||
|
||||
/**
|
||||
* 多维数组
|
||||
*/
|
||||
public static List<AuthPermissionRuleMergeResponse> merge(List<AuthPermissionRule> authPermissionRuleList,
|
||||
Long pid) {
|
||||
|
||||
List<AuthPermissionRuleMergeResponse> authPermissionRuleMergeResponseList = new ArrayList<>();
|
||||
for (AuthPermissionRule v : authPermissionRuleList) {
|
||||
AuthPermissionRuleMergeResponse authPermissionRuleMergeResponse = new AuthPermissionRuleMergeResponse();
|
||||
BeanUtils.copyProperties(v, authPermissionRuleMergeResponse);
|
||||
authPermissionRuleMergeResponse.setStatus(Long.valueOf(v.getStatus()));
|
||||
if (pid.equals(v.getPid())) {
|
||||
authPermissionRuleMergeResponse.setChildren(merge(authPermissionRuleList, v.getId()));
|
||||
authPermissionRuleMergeResponseList.add(authPermissionRuleMergeResponse);
|
||||
authPermissionRuleMergeResponse.setStatus(v.getStatus().longValue());
|
||||
}
|
||||
}
|
||||
|
||||
return authPermissionRuleMergeResponseList;
|
||||
}
|
||||
|
||||
|
||||
}
|
@ -1,38 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
|
||||
|
||||
<mapper namespace="com.glxp.api.dao.auth.AuthPermissionDao" >
|
||||
|
||||
<select id="listByRoleIdIn" resultType="com.glxp.api.entity.auth.AuthPermission">
|
||||
SELECT permissionRuleId
|
||||
FROM auth_permission
|
||||
where roleId IN
|
||||
<foreach collection="list" item="id" index="index" open="(" close=")" separator=",">
|
||||
#{id}
|
||||
</foreach>
|
||||
</select>
|
||||
|
||||
<select id="listByRoleId" resultType="com.glxp.api.entity.auth.AuthPermission">
|
||||
SELECT permissionRuleId
|
||||
FROM auth_permission
|
||||
where roleId = #{roleId}
|
||||
</select>
|
||||
|
||||
|
||||
<insert id="insertAuthPermissionAll">
|
||||
INSERT INTO auth_permission
|
||||
(roleId, permissionRuleId,`type`)
|
||||
VALUES
|
||||
<foreach collection="list" item="item" separator=",">
|
||||
<if test="item.roleId != null and item.permissionRuleId != null and item.type != null">
|
||||
(#{item.roleId}, #{item.permissionRuleId}, #{item.type})
|
||||
</if>
|
||||
</foreach>
|
||||
</insert>
|
||||
|
||||
|
||||
<delete id="deleteByRoleId" parameterType="java.lang.Long">
|
||||
delete from auth_permission where roleId = #{roleId}
|
||||
</delete>
|
||||
|
||||
</mapper>
|
@ -1,71 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
|
||||
|
||||
<mapper namespace="com.glxp.api.dao.auth.AuthPermissionRuleDao" >
|
||||
|
||||
<select id="listByIdIn" resultType="com.glxp.api.entity.auth.AuthPermissionRule">
|
||||
SELECT `name`
|
||||
FROM auth_permission_rule
|
||||
where id IN
|
||||
<foreach collection="list" item="id" index="index" open="(" close=")" separator=",">
|
||||
#{id}
|
||||
</foreach>
|
||||
</select>
|
||||
|
||||
<select id="listByPid" resultType="com.glxp.api.entity.auth.AuthPermissionRule">
|
||||
SELECT `id`,`pid`,`name`,`title`,`status`,`condition`,`listorder`
|
||||
FROM auth_permission_rule
|
||||
where pid = #{pid}
|
||||
</select>
|
||||
|
||||
<select id="listAll" resultType="com.glxp.api.entity.auth.AuthPermissionRule">
|
||||
SELECT `id`,`pid`,`name`,`title`,`status`,`condition`,`listorder`
|
||||
FROM auth_permission_rule
|
||||
</select>
|
||||
|
||||
<select id="findByName" resultType="com.glxp.api.entity.auth.AuthPermissionRule">
|
||||
SELECT `id`
|
||||
FROM auth_permission_rule
|
||||
where `name` = #{name}
|
||||
limit 1
|
||||
</select>
|
||||
|
||||
<insert id="insertAuthPermissionRule" keyProperty="id" parameterType="com.glxp.api.entity.auth.AuthPermissionRule">
|
||||
INSERT INTO auth_permission_rule(pid,`name`,`title`,`status`,`condition`,`listorder`,create_time,update_time)
|
||||
values
|
||||
(#{pid},
|
||||
#{name},
|
||||
#{title},
|
||||
#{status},
|
||||
<choose>
|
||||
<when test="condition != null">
|
||||
#{condition},
|
||||
</when>
|
||||
<otherwise>
|
||||
'',
|
||||
</otherwise>
|
||||
</choose>
|
||||
#{listorder},
|
||||
#{createTime},
|
||||
#{updateTime})
|
||||
</insert>
|
||||
|
||||
<update id="updateAuthPermissionRule" parameterType="com.glxp.api.entity.auth.AuthPermissionRule">
|
||||
UPDATE auth_permission_rule
|
||||
<set>
|
||||
<if test="pid != null">pid=#{pid},</if>
|
||||
<if test="name != null">`name`=#{name},</if>
|
||||
<if test="title != null">title=#{title},</if>
|
||||
<if test="status != null">`status`=#{status},</if>
|
||||
<if test="condition != null">`condition`=#{condition},</if>
|
||||
<if test="listorder != null">`listorder`=#{listorder},</if>
|
||||
<if test="updateTime != null">update_time=#{updateTime},</if>
|
||||
</set>
|
||||
WHERE id=#{id}
|
||||
</update>
|
||||
|
||||
<delete id="deleteById" parameterType="java.lang.Long">
|
||||
delete from auth_permission_rule where id = #{id}
|
||||
</delete>
|
||||
|
||||
</mapper>
|
@ -1,42 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
|
||||
|
||||
<mapper namespace="com.glxp.api.dao.auth.AuthRoleAdminDao">
|
||||
|
||||
<select id="listByAdminId" resultType="com.glxp.api.entity.auth.AuthRoleAdmin">
|
||||
SELECT role_id
|
||||
FROM auth_role_admin
|
||||
where admin_id = #{adminId}
|
||||
</select>
|
||||
|
||||
<select id="listByAdminIdIn" resultType="com.glxp.api.entity.auth.AuthRoleAdmin">
|
||||
SELECT *
|
||||
FROM auth_role_admin
|
||||
where admin_id in
|
||||
<foreach collection="list" item="id" index="index" open="(" close=")" separator=",">
|
||||
#{id}
|
||||
</foreach>
|
||||
</select>
|
||||
|
||||
<select id="listByRoleId" resultType="com.glxp.api.entity.auth.AuthRoleAdmin">
|
||||
SELECT admin_id
|
||||
FROM auth_role_admin
|
||||
where role_id = #{roleId}
|
||||
</select>
|
||||
|
||||
<insert id="insertAuthRoleAdminAll">
|
||||
INSERT INTO auth_role_admin
|
||||
(role_id, admin_id)
|
||||
VALUES
|
||||
<foreach collection="list" item="item" separator=",">
|
||||
<if test="item.role_id != null and item.admin_id != null">
|
||||
(#{item.role_id}, #{item.admin_id})
|
||||
</if>
|
||||
</foreach>
|
||||
</insert>
|
||||
|
||||
<delete id="deleteByAdminId" parameterType="java.lang.Long">
|
||||
delete from auth_role_admin where admin_id = #{adminId}
|
||||
</delete>
|
||||
|
||||
</mapper>
|
@ -1,89 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
|
||||
|
||||
<mapper namespace="com.glxp.api.dao.auth.AuthRoleDao">
|
||||
|
||||
<select id="listAdminPage" parameterType="com.glxp.api.req.auth.AuthRoleQueryRequest"
|
||||
resultType="com.glxp.api.entity.auth.AuthRole">
|
||||
SELECT id,name,status,remark,create_time,listorder
|
||||
FROM auth_role
|
||||
<where>
|
||||
<if test="status != null">
|
||||
AND status = #{status}
|
||||
</if>
|
||||
<if test="name != null and '' != name">
|
||||
AND `name` LIKE CONCAT(#{name},'%')
|
||||
</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="listAuthAdminRolePage" resultType="com.glxp.api.entity.auth.AuthRole">
|
||||
SELECT id,name
|
||||
FROM auth_role
|
||||
<where>
|
||||
<if test="status != null">
|
||||
AND status = #{status}
|
||||
</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="findByName" resultType="com.glxp.api.entity.auth.AuthRole">
|
||||
SELECT id
|
||||
FROM auth_role
|
||||
where `name` = #{name}
|
||||
</select>
|
||||
|
||||
|
||||
<insert id="insertAuthRole" keyProperty="id" parameterType="com.glxp.api.entity.auth.AuthRole">
|
||||
INSERT INTO auth_role(`name`,pid,`status`,`remark`,`listorder`,create_time,update_time)
|
||||
values
|
||||
(
|
||||
#{name},
|
||||
<choose>
|
||||
<when test="pid != null">
|
||||
#{pid},
|
||||
</when>
|
||||
<otherwise>
|
||||
0,
|
||||
</otherwise>
|
||||
</choose>
|
||||
#{status},
|
||||
<choose>
|
||||
<when test="remark != null">
|
||||
#{remark},
|
||||
</when>
|
||||
<otherwise>
|
||||
'',
|
||||
</otherwise>
|
||||
</choose>
|
||||
<choose>
|
||||
<when test="listorder != null">
|
||||
#{listorder},
|
||||
</when>
|
||||
<otherwise>
|
||||
999,
|
||||
</otherwise>
|
||||
</choose>
|
||||
#{createTime},
|
||||
#{updateTime}
|
||||
)
|
||||
</insert>
|
||||
|
||||
<update id="updateAuthRole" parameterType="com.glxp.api.entity.auth.AuthRole">
|
||||
UPDATE auth_role
|
||||
<set>
|
||||
<if test="name != null">`name`=#{name},</if>
|
||||
<if test="pid != null">pid=#{pid},</if>
|
||||
<if test="status != null">`status`=#{status},</if>
|
||||
<if test="remark != null">remark=#{remark},</if>
|
||||
<if test="listorder != null">`listorder`=#{listorder},</if>
|
||||
<if test="updateTime != null">update_time=#{updateTime},</if>
|
||||
</set>
|
||||
WHERE id=#{id}
|
||||
</update>
|
||||
|
||||
<delete id="deleteById" parameterType="java.lang.Long">
|
||||
delete from auth_role where id = #{id}
|
||||
</delete>
|
||||
|
||||
</mapper>
|
Loading…
Reference in New Issue