|
@@ -6,10 +6,10 @@ import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
import com.nokia.dao.CityDao;
|
|
|
import com.nokia.dao.UserDao;
|
|
|
import com.nokia.dao.UserRoleDao;
|
|
|
-import com.nokia.pojo.CityEntity;
|
|
|
-import com.nokia.pojo.RoleEntity;
|
|
|
-import com.nokia.pojo.UserEntity;
|
|
|
-import com.nokia.pojo.UserRoleEntity;
|
|
|
+import com.nokia.pojo.City;
|
|
|
+import com.nokia.pojo.Role;
|
|
|
+import com.nokia.pojo.User;
|
|
|
+import com.nokia.pojo.UserRole;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
@@ -20,7 +20,7 @@ import java.util.Map;
|
|
|
import java.util.Set;
|
|
|
|
|
|
@Service
|
|
|
-public class UserService extends ServiceImpl<UserDao, UserEntity> {
|
|
|
+public class UserService extends ServiceImpl<UserDao, User> {
|
|
|
|
|
|
private final UserDao userDao;
|
|
|
private final UserRoleDao userRoleDao;
|
|
@@ -34,18 +34,18 @@ public class UserService extends ServiceImpl<UserDao, UserEntity> {
|
|
|
}
|
|
|
|
|
|
@Transactional
|
|
|
- public String add(UserEntity table2User) {
|
|
|
- UserEntity query = new UserEntity();
|
|
|
+ public String add(User table2User) {
|
|
|
+ User query = new User();
|
|
|
query.setLoginName(table2User.getLoginName());
|
|
|
- UserEntity one = baseMapper.selectOne(Wrappers.query(query));
|
|
|
+ User one = baseMapper.selectOne(Wrappers.query(query));
|
|
|
if (one != null) {
|
|
|
return "loginName: " + table2User.getLoginName() + " 已存在";
|
|
|
} else {
|
|
|
table2User.setCityId(table2User.getCityId());
|
|
|
baseMapper.insert(table2User);
|
|
|
- Set<RoleEntity> roleEntityList1 = table2User.getRoles();
|
|
|
- UserRoleEntity userRoleEntity = new UserRoleEntity();
|
|
|
- for (RoleEntity role : roleEntityList1) {
|
|
|
+ Set<Role> roleEntityList1 = table2User.getRoles();
|
|
|
+ UserRole userRoleEntity = new UserRole();
|
|
|
+ for (Role role : roleEntityList1) {
|
|
|
userRoleEntity.setUserId(table2User.getUserId());
|
|
|
userRoleEntity.setRoleId(role.getRoleId());
|
|
|
userRoleDao.insert(userRoleEntity);
|
|
@@ -58,10 +58,10 @@ public class UserService extends ServiceImpl<UserDao, UserEntity> {
|
|
|
public String delete(Integer userId) {
|
|
|
// UserEntity userEntity = baseMapper.selectById(userId);
|
|
|
/* cityDao.deleteById(userEntity.getCityId()); */
|
|
|
- QueryWrapper<UserRoleEntity> objectQueryWrapper = new QueryWrapper<>();
|
|
|
+ QueryWrapper<UserRole> objectQueryWrapper = new QueryWrapper<>();
|
|
|
objectQueryWrapper.eq("user_id", userId);
|
|
|
- List<UserRoleEntity> userRoleEntities = userRoleDao.selectList(objectQueryWrapper);
|
|
|
- for (UserRoleEntity userRoleEntity : userRoleEntities) {
|
|
|
+ List<UserRole> userRoleEntities = userRoleDao.selectList(objectQueryWrapper);
|
|
|
+ for (UserRole userRoleEntity : userRoleEntities) {
|
|
|
Integer id = userRoleEntity.getId();
|
|
|
userRoleDao.deleteById(id);
|
|
|
}
|
|
@@ -69,50 +69,91 @@ public class UserService extends ServiceImpl<UserDao, UserEntity> {
|
|
|
return "ok";
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 更新用户
|
|
|
+ *
|
|
|
+ * @param user
|
|
|
+ * @return
|
|
|
+ */
|
|
|
@Transactional
|
|
|
- public String update(UserEntity user) {
|
|
|
+ public boolean update(User user) {
|
|
|
// 更新user表
|
|
|
baseMapper.updateById(user);
|
|
|
// 更新user_role 分为2步
|
|
|
Integer userId = user.getUserId();
|
|
|
- QueryWrapper<UserRoleEntity> queryWrapper = new QueryWrapper<>();
|
|
|
+ QueryWrapper<UserRole> queryWrapper = new QueryWrapper<>();
|
|
|
queryWrapper.eq("user_id", userId);
|
|
|
// 1. 删除原user_role
|
|
|
userRoleDao.delete(queryWrapper);
|
|
|
// 2. 添加新的user_role
|
|
|
- for (RoleEntity role : user.getRoles()) {
|
|
|
- UserRoleEntity userRoleEntity = new UserRoleEntity();
|
|
|
+ for (Role role : user.getRoles()) {
|
|
|
+ UserRole userRoleEntity = new UserRole();
|
|
|
userRoleEntity.setUserId(user.getUserId());
|
|
|
userRoleEntity.setRoleId(role.getRoleId());
|
|
|
userRoleDao.insert(userRoleEntity);
|
|
|
}
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 给用户添加权限
|
|
|
+ *
|
|
|
+ * @param userEntity
|
|
|
+ * @param roleEntity
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public String addRole(User userEntity, Role roleEntity) {
|
|
|
+ if (!hasRole(userEntity, roleEntity)) {
|
|
|
+ // 检查用户,确认当前无此权限
|
|
|
+ UserRole userRoleEntity = new UserRole();
|
|
|
+ userRoleEntity.setUserId(userEntity.getUserId());
|
|
|
+ userRoleEntity.setRoleId(roleEntity.getRoleId());
|
|
|
+ userRoleDao.insert(userRoleEntity);
|
|
|
+ }
|
|
|
return "ok";
|
|
|
}
|
|
|
|
|
|
- public UserEntity getByLoginName(String loginName) {
|
|
|
+ /**
|
|
|
+ * 通过用户的登录名获取用户完整信息
|
|
|
+ *
|
|
|
+ * @param loginName 用户登录名
|
|
|
+ * @return UserEntity
|
|
|
+ */
|
|
|
+ public User getByLoginName(String loginName) {
|
|
|
return userDao.getByLoinName(loginName);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 判断用户是否有有某个角色
|
|
|
+ *
|
|
|
+ * @param userEntity
|
|
|
+ * @param roleEntity
|
|
|
+ * @return boolean
|
|
|
+ */
|
|
|
+ public boolean hasRole(User userEntity, Role roleEntity) {
|
|
|
+ return !(null == userRoleDao.hasRole(userEntity.getUserId(), roleEntity.getRoleId()));
|
|
|
+ }
|
|
|
+
|
|
|
public Map<String, Object> select(Integer userId) {
|
|
|
Map<String, Object> hashMap = new HashMap<>();
|
|
|
if (userId == null) {
|
|
|
hashMap.put("userId", "为空");
|
|
|
return hashMap;
|
|
|
}
|
|
|
- UserEntity userEntity = baseMapper.selectById(userId);
|
|
|
- QueryWrapper<UserEntity> userEntityQueryWrapper = new QueryWrapper<>();
|
|
|
+ User userEntity = baseMapper.selectById(userId);
|
|
|
+ QueryWrapper<User> userEntityQueryWrapper = new QueryWrapper<>();
|
|
|
userEntityQueryWrapper.eq("user_id", userId);
|
|
|
- UserEntity one = baseMapper.selectOne(userEntityQueryWrapper);
|
|
|
+ User one = baseMapper.selectOne(userEntityQueryWrapper);
|
|
|
if (one == null) {
|
|
|
hashMap.put("userId", "不正确");
|
|
|
return hashMap;
|
|
|
}
|
|
|
Integer cityId = userEntity.getCityId();
|
|
|
- CityEntity cityEntity = cityDao.selectById(cityId);
|
|
|
+ City cityEntity = cityDao.selectById(cityId);
|
|
|
// 他有两个角色 对 我知道 用for遍历来查 不需要for遍历查
|
|
|
- QueryWrapper<UserRoleEntity> objectQueryWrapper = new QueryWrapper<>();
|
|
|
+ QueryWrapper<UserRole> objectQueryWrapper = new QueryWrapper<>();
|
|
|
objectQueryWrapper.eq("user_id", userId);
|
|
|
- List<UserRoleEntity> userRoleEntities = userRoleDao.selectList(objectQueryWrapper);
|
|
|
+ List<UserRole> userRoleEntities = userRoleDao.selectList(objectQueryWrapper);
|
|
|
hashMap.put("userEntity", userEntity);
|
|
|
hashMap.put("cityEntity", cityEntity);
|
|
|
hashMap.put("userRoleEntities", userRoleEntities);
|