|
@@ -5,11 +5,14 @@ import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
import com.nokia.dao.CityDao;
|
|
|
import com.nokia.dao.UserDao;
|
|
|
+import com.nokia.dao.UserRoleCityDao;
|
|
|
import com.nokia.dao.UserRoleDao;
|
|
|
import com.nokia.pojo.City;
|
|
|
import com.nokia.pojo.Role;
|
|
|
import com.nokia.pojo.User;
|
|
|
import com.nokia.pojo.UserRole;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
+
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
@@ -17,39 +20,118 @@ import org.springframework.transaction.annotation.Transactional;
|
|
|
import java.util.HashMap;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
-import java.util.Set;
|
|
|
|
|
|
+@Slf4j
|
|
|
@Service
|
|
|
public class UserService extends ServiceImpl<UserDao, User> {
|
|
|
|
|
|
private final UserDao userDao;
|
|
|
private final UserRoleDao userRoleDao;
|
|
|
+ private final UserRoleCityDao userRoleCityDao;
|
|
|
private final CityDao cityDao;
|
|
|
|
|
|
@Autowired
|
|
|
- public UserService(UserDao userDao, UserRoleDao userRoleDao, CityDao cityDao) {
|
|
|
+ public UserService(UserDao userDao, UserRoleDao userRoleDao, CityDao cityDao, UserRoleCityDao userRoleCityDao) {
|
|
|
this.userDao = userDao;
|
|
|
this.userRoleDao = userRoleDao;
|
|
|
this.cityDao = cityDao;
|
|
|
+ this.userRoleCityDao = userRoleCityDao;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 添加用户,不考虑权限
|
|
|
+ *
|
|
|
+ * @param user
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public boolean addUser(User user) {
|
|
|
+ // 检查是否已存在同名用户
|
|
|
+ if (hasLoginName(user.getLoginName())) {
|
|
|
+ log.debug("", user.getLoginName());
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ userDao.insert(user);
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 指定的登陆名是否已存在
|
|
|
+ *
|
|
|
+ * @param loginName
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public boolean hasLoginName(String loginName) {
|
|
|
+ return null != userDao.hasLoginName(loginName);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 用户是否存在某个权限
|
|
|
+ *
|
|
|
+ * @param user
|
|
|
+ * @param role
|
|
|
+ * @param city
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public boolean hasRoleCity(User user, Role role, City city) {
|
|
|
+ return null != userRoleCityDao.hasRoleCity(user.getUserId(), role.getRoleId(), city.getCityId());
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 给用户添加权限
|
|
|
+ *
|
|
|
+ * @param user
|
|
|
+ * @param role
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public String addRole(User user, Role role, City city) {
|
|
|
+ if (!hasRole(user, role)) {
|
|
|
+ // 检查用户,确认当前无此权限
|
|
|
+ UserRole userRoleEntity = new UserRole();
|
|
|
+ userRoleEntity.setUserId(user.getUserId());
|
|
|
+ userRoleEntity.setRoleId(role.getRoleId());
|
|
|
+ userRoleDao.insert(userRoleEntity);
|
|
|
+ }
|
|
|
+ return "ok";
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 判断用户是否有有某个角色
|
|
|
+ *
|
|
|
+ * @param user
|
|
|
+ * @param role
|
|
|
+ * @return boolean
|
|
|
+ */
|
|
|
+ public boolean hasRole(User user, Role role) {
|
|
|
+ return null != userRoleDao.hasRole(user.getUserId(), role.getRoleId());
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 添加用户
|
|
|
+ *
|
|
|
+ * @param user
|
|
|
+ * @return
|
|
|
+ */
|
|
|
@Transactional
|
|
|
- public String add(User table2User) {
|
|
|
+ public String add(User user) {
|
|
|
User query = new User();
|
|
|
- query.setLoginName(table2User.getLoginName());
|
|
|
+ query.setLoginName(user.getLoginName());
|
|
|
User one = baseMapper.selectOne(Wrappers.query(query));
|
|
|
if (one != null) {
|
|
|
- return "loginName: " + table2User.getLoginName() + " 已存在";
|
|
|
+ return "loginName: " + user.getLoginName() + " 已存在";
|
|
|
} else {
|
|
|
- table2User.setCityId(table2User.getCityId());
|
|
|
- baseMapper.insert(table2User);
|
|
|
- Set<Role> roleEntityList1 = table2User.getRoles();
|
|
|
- UserRole userRoleEntity = new UserRole();
|
|
|
- for (Role role : roleEntityList1) {
|
|
|
- userRoleEntity.setUserId(table2User.getUserId());
|
|
|
- userRoleEntity.setRoleId(role.getRoleId());
|
|
|
- userRoleDao.insert(userRoleEntity);
|
|
|
- }
|
|
|
+ user.setCityId(user.getCity().getCityId());
|
|
|
+ baseMapper.insert(user);
|
|
|
+ // Set<Role> roles = user.getRoles();
|
|
|
+ // UserRoleCity userRoleCity;
|
|
|
+ // for (Role role : roles) {
|
|
|
+ // for (Integer cityId : role.getCities()) {
|
|
|
+ // userRoleCity = new UserRoleCity();
|
|
|
+ // userRoleCity.setRoleId(role.getRoleId());
|
|
|
+ // userRoleCity.setUserId(user.getUserId());
|
|
|
+ // userRoleCity.setCityId(cityId);
|
|
|
+ // userRoleCityDao.insert(userRoleCity);
|
|
|
+ // }
|
|
|
+ // }
|
|
|
}
|
|
|
return "ok";
|
|
|
}
|
|
@@ -95,24 +177,6 @@ public class UserService extends ServiceImpl<UserDao, User> {
|
|
|
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";
|
|
|
- }
|
|
|
-
|
|
|
/**
|
|
|
* 通过用户的登录名获取用户完整信息
|
|
|
*
|
|
@@ -120,18 +184,7 @@ public class UserService extends ServiceImpl<UserDao, User> {
|
|
|
* @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()));
|
|
|
+ return userDao.getByLoginName(loginName);
|
|
|
}
|
|
|
|
|
|
public Map<String, Object> select(Integer userId) {
|