|
@@ -4,19 +4,21 @@ import com.baomidou.mybatisplus.mapper.EntityWrapper
|
|
|
import com.baomidou.mybatisplus.service.impl.ServiceImpl
|
|
|
import com.gxzc.zen.api.sys.mapper.SysUserMapper
|
|
|
import com.gxzc.zen.api.sys.model.SysUser
|
|
|
+import com.gxzc.zen.api.sys.service.ISysUserRoleService
|
|
|
import com.gxzc.zen.api.sys.service.ISysUserService
|
|
|
import com.gxzc.zen.common.contants.CACHEKEYS
|
|
|
import com.gxzc.zen.common.contants.PLATFORM
|
|
|
import com.gxzc.zen.common.exception.ZenException
|
|
|
import com.gxzc.zen.common.exception.ZenExceptionEnum
|
|
|
import com.gxzc.zen.common.properties.PlatformProperties
|
|
|
-import com.gxzc.zen.common.util.RedisCacheUtil
|
|
|
import com.gxzc.zen.common.util.PlatformUtil
|
|
|
+import com.gxzc.zen.common.util.RedisCacheUtil
|
|
|
import com.gxzc.zen.orm.annotation.ZenTransactional
|
|
|
import org.slf4j.LoggerFactory
|
|
|
import org.springframework.beans.factory.annotation.Autowired
|
|
|
import org.springframework.boot.CommandLineRunner
|
|
|
import org.springframework.stereotype.Service
|
|
|
+import org.springframework.transaction.annotation.Transactional
|
|
|
|
|
|
/**
|
|
|
* <p>
|
|
@@ -37,6 +39,9 @@ class SysUserServiceImpl : ServiceImpl<SysUserMapper, SysUser>(), ISysUserServic
|
|
|
@Autowired
|
|
|
private lateinit var platformProperties: PlatformProperties
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private lateinit var userRoleService: ISysUserRoleService
|
|
|
+
|
|
|
override fun run(vararg args: String?) {
|
|
|
logger.debug("${this::class.simpleName} init.")
|
|
|
getListCacheable()
|
|
@@ -73,10 +78,17 @@ class SysUserServiceImpl : ServiceImpl<SysUserMapper, SysUser>(), ISysUserServic
|
|
|
if (baseMapper.insert(entity) == 0) {
|
|
|
throw ZenException(ZenExceptionEnum.BIZ_INSERT_ERROR)
|
|
|
}
|
|
|
+
|
|
|
+ // role
|
|
|
+ val newRoleIdList = entity.roles?.map { it.id!! }
|
|
|
+ if (newRoleIdList != null) {
|
|
|
+ userRoleService.insertBatch(entity.id!!, newRoleIdList)
|
|
|
+ }
|
|
|
+
|
|
|
val cached = RedisCacheUtil.get(CACHEKEYS.USER, CACHE_KEY_ALL)?.get() as? MutableList<SysUser>
|
|
|
cached?.let {
|
|
|
it.add(entity)
|
|
|
- RedisCacheUtil.put(CACHEKEYS.SYS, CACHE_KEY_ALL, it)
|
|
|
+ RedisCacheUtil.put(CACHEKEYS.USER, CACHE_KEY_ALL, it)
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -84,7 +96,26 @@ class SysUserServiceImpl : ServiceImpl<SysUserMapper, SysUser>(), ISysUserServic
|
|
|
@ZenTransactional
|
|
|
override fun modify(entity: SysUser): SysUser {
|
|
|
if (PlatformUtil.getPlatform() == PLATFORM.SYSTEM) {
|
|
|
+ /* 更新
|
|
|
+ * 查询原有角色
|
|
|
+ * 删除 / 新增 角色
|
|
|
+ */
|
|
|
+ val userRoleIdList = userRoleService.getUserRoleListByUserId(entity.id!!).map { it.id!! }
|
|
|
+ val newRoleIdList = entity.roles?.map { it.id!! }
|
|
|
+ if (newRoleIdList != null) {
|
|
|
+ // del
|
|
|
+ val delRoleIdList = userRoleIdList.toMutableList()
|
|
|
+ delRoleIdList.removeAll(newRoleIdList)
|
|
|
+ // add
|
|
|
+ val addRoleIdList = newRoleIdList.toMutableList()
|
|
|
+ addRoleIdList.removeAll(userRoleIdList)
|
|
|
+
|
|
|
+ userRoleService.physicalDeleteBatch(entity.id!!, delRoleIdList)
|
|
|
+ userRoleService.insertBatch(entity.id!!, addRoleIdList)
|
|
|
+ }
|
|
|
+
|
|
|
baseMapper.updateWOLogic(entity, EntityWrapper<SysUser>().eq("id", entity.id))
|
|
|
+// throw ZenException(ZenExceptionEnum.SERVER_ERROR)
|
|
|
// 更新缓存
|
|
|
val cached = RedisCacheUtil.get(CACHEKEYS.USER, CACHE_KEY_ALL)?.get() as? MutableList<SysUser>
|
|
|
cached?.let {
|
|
@@ -92,7 +123,7 @@ class SysUserServiceImpl : ServiceImpl<SysUserMapper, SysUser>(), ISysUserServic
|
|
|
if (idx != -1) {
|
|
|
it[idx] = entity
|
|
|
}
|
|
|
- RedisCacheUtil.put(CACHEKEYS.SYS, CACHE_KEY_ALL, it)
|
|
|
+ RedisCacheUtil.put(CACHEKEYS.USER, CACHE_KEY_ALL, it)
|
|
|
}
|
|
|
}
|
|
|
return entity
|
|
@@ -104,13 +135,15 @@ class SysUserServiceImpl : ServiceImpl<SysUserMapper, SysUser>(), ISysUserServic
|
|
|
if (baseMapper.physicalDelete(EntityWrapper<SysUser>().eq("id", id)) <= 0) {
|
|
|
throw ZenException(ZenExceptionEnum.BIZ_DELETE_ERROR)
|
|
|
}
|
|
|
+ // 删除与之关联的所有系统表数据
|
|
|
+ userRoleService.physicalDeleteByUserId(id)
|
|
|
//
|
|
|
val cached = RedisCacheUtil.get(CACHEKEYS.USER, CACHE_KEY_ALL)?.get() as? MutableList<SysUser>
|
|
|
cached?.let {
|
|
|
it.removeIf {
|
|
|
it.id == id
|
|
|
}
|
|
|
- RedisCacheUtil.put(CACHEKEYS.SYS, CACHE_KEY_ALL, it)
|
|
|
+ RedisCacheUtil.put(CACHEKEYS.USER, CACHE_KEY_ALL, it)
|
|
|
}
|
|
|
}
|
|
|
}
|