|
@@ -1,10 +1,21 @@
|
|
|
package com.gxzc.zen.api.sys.service.impl
|
|
|
|
|
|
+import com.baomidou.mybatisplus.mapper.EntityWrapper
|
|
|
+import com.baomidou.mybatisplus.plugins.Page
|
|
|
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.PLATFORM
|
|
|
+import com.gxzc.zen.common.exception.ZenException
|
|
|
+import com.gxzc.zen.common.exception.ZenExceptionEnum
|
|
|
+import com.gxzc.zen.common.util.PlatformUtil
|
|
|
+import com.gxzc.zen.orm.annotation.ZenTransactional
|
|
|
+import org.apache.commons.lang3.RandomStringUtils
|
|
|
+import org.apache.shiro.crypto.hash.SimpleHash
|
|
|
import org.slf4j.LoggerFactory
|
|
|
+import org.springframework.beans.factory.annotation.Autowired
|
|
|
import org.springframework.stereotype.Service
|
|
|
|
|
|
/**
|
|
@@ -18,11 +29,13 @@ import org.springframework.stereotype.Service
|
|
|
@Suppress("UNCHECKED_CAST")
|
|
|
@Service
|
|
|
class SysUserServiceImpl : ServiceImpl<SysUserMapper, SysUser>(), ISysUserService {
|
|
|
-
|
|
|
companion object {
|
|
|
private val logger = LoggerFactory.getLogger(SysUserServiceImpl::class.java)
|
|
|
}
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private lateinit var userRoleService: ISysUserRoleService
|
|
|
+
|
|
|
override fun getUserByAccount(account: String): SysUser? {
|
|
|
val condition = SysUser().apply {
|
|
|
this.account = account
|
|
@@ -30,128 +43,117 @@ class SysUserServiceImpl : ServiceImpl<SysUserMapper, SysUser>(), ISysUserServic
|
|
|
return baseMapper.selectOne(condition)
|
|
|
}
|
|
|
|
|
|
+ override fun getUserListPage(keyword: String?, searchOption: Int?, page: Page<SysUser>, enable: Boolean?): Page<SysUser> {
|
|
|
+ val condition = EntityWrapper<SysUser>().apply {
|
|
|
+ if (!keyword.isNullOrEmpty() && searchOption != null) {
|
|
|
+ when (searchOption) {
|
|
|
+ 1 -> {
|
|
|
+ // 角色名称
|
|
|
+ like("account", "%$keyword%")
|
|
|
+ }
|
|
|
+ 2 -> {
|
|
|
+ // 角色代码
|
|
|
+ like("username", "%$keyword%")
|
|
|
+ }
|
|
|
+ 3 -> {
|
|
|
+ // 角色代码
|
|
|
+ like("staffNo", "%$keyword%")
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (enable != null) {
|
|
|
+ if (enable) {
|
|
|
+ eq("enable", 1)
|
|
|
+ } else {
|
|
|
+ eq("enable", 0)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ page.records = baseMapper.selectWOLogicPage(page, condition)
|
|
|
+ return page
|
|
|
+ }
|
|
|
+
|
|
|
+ override fun getUserList(keyword: String?, searchOption: Int?, enable: Boolean?): MutableList<SysUser> {
|
|
|
+ val condition = EntityWrapper<SysUser>().apply {
|
|
|
+ if (!keyword.isNullOrEmpty() && searchOption != null) {
|
|
|
+ when (searchOption) {
|
|
|
+ 1 -> {
|
|
|
+ // 角色名称
|
|
|
+ like("account", "%$keyword%")
|
|
|
+ }
|
|
|
+ 2 -> {
|
|
|
+ // 角色代码
|
|
|
+ like("username", "%$keyword%")
|
|
|
+ }
|
|
|
+ 3 -> {
|
|
|
+ // 角色代码
|
|
|
+ like("staffNo", "%$keyword%")
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (enable != null) {
|
|
|
+ if (enable) {
|
|
|
+ eq("enable", 1)
|
|
|
+ } else {
|
|
|
+ eq("enable", 0)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return baseMapper.selectWOLogic(condition)
|
|
|
+ }
|
|
|
|
|
|
-// override fun getListCacheable(): MutableList<SysUser> {
|
|
|
-// val cached = RedisCacheUtil.get(CACHEKEYS.USER, CACHE_KEY_ALL)?.get() as? MutableList<SysUser>
|
|
|
-// if (cached != null) {
|
|
|
-// return cached
|
|
|
-// }
|
|
|
-//// val ret = baseMapper.selectByParams(null)
|
|
|
-// val ret = baseMapper.selectWOLogic(null)
|
|
|
-// if (PlatformUtil.getPlatform(platformProperties) == PLATFORM.SYSTEM) {
|
|
|
-// RedisCacheUtil.put(CACHEKEYS.USER, CACHE_KEY_ALL, ret)
|
|
|
-// }
|
|
|
-// return ret
|
|
|
-// }
|
|
|
-//
|
|
|
-// override fun getUserByAccountCacheable(account: String): SysUser? {
|
|
|
-// return getListCacheable().find {
|
|
|
-// it.account == account
|
|
|
-// }
|
|
|
-// }
|
|
|
-//
|
|
|
-// override fun getUserByIdCacheable(id: Long): SysUser? {
|
|
|
-// return getListCacheable().find {
|
|
|
-// it.id == id
|
|
|
-// }
|
|
|
-// }
|
|
|
-//
|
|
|
-// @ZenTransactional
|
|
|
-// override fun insertCacheable(entity: SysUser) {
|
|
|
-// if (PlatformUtil.getPlatform() == PLATFORM.SYSTEM) {
|
|
|
-// // 处理一下密码
|
|
|
-// if (entity.password.isNullOrEmpty()) {
|
|
|
-// throw ZenException(ZenExceptionEnum.REG_PASSWORD_ERROR)
|
|
|
-// } else if (entity.password!!.length < 6) {
|
|
|
-// throw ZenException(ZenExceptionEnum.REG_PASSWORD_ERROR)
|
|
|
-// }
|
|
|
-//
|
|
|
-// val salt = RandomStringUtils.randomAlphanumeric(9)!!
|
|
|
-// entity.salt = salt
|
|
|
-// entity.password = MD5Salt.md5SaltEncode(salt, entity.password!!)
|
|
|
-//
|
|
|
-// 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.USER, CACHE_KEY_ALL, it)
|
|
|
-// }
|
|
|
-// }
|
|
|
-// }
|
|
|
-//
|
|
|
-// @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)
|
|
|
-// // addChild
|
|
|
-// val addRoleIdList = newRoleIdList.toMutableList()
|
|
|
-// addRoleIdList.removeAll(userRoleIdList)
|
|
|
-//
|
|
|
-// userRoleService.physicalDeleteBatch(entity.id!!, delRoleIdList)
|
|
|
-// userRoleService.insertBatch(entity.id!!, addRoleIdList)
|
|
|
-// }
|
|
|
-//
|
|
|
-// val originEntity = baseMapper.selectById(entity.id!!)
|
|
|
-//
|
|
|
-// // 密码搞一下
|
|
|
-// if (!entity.password.isNullOrEmpty() && entity.password!!.length >= 6) {
|
|
|
-// val salt = RandomStringUtils.randomAlphanumeric(9)!!
|
|
|
-// entity.salt = salt
|
|
|
-// entity.password = MD5Salt.md5SaltEncode(salt, entity.password!!)
|
|
|
-// } else {
|
|
|
-// entity.password = originEntity.password
|
|
|
-// entity.salt = originEntity.salt
|
|
|
-// }
|
|
|
-//
|
|
|
-// 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 {
|
|
|
-// val idx = it.indexOfFirst { it.id == entity.id }
|
|
|
-// if (idx != -1) {
|
|
|
-// it[idx] = entity
|
|
|
-// }
|
|
|
-// RedisCacheUtil.put(CACHEKEYS.USER, CACHE_KEY_ALL, it)
|
|
|
-// }
|
|
|
-// }
|
|
|
-// return entity
|
|
|
-// }
|
|
|
-//
|
|
|
-// @ZenTransactional
|
|
|
-// override fun physicalDeleteCacheable(id: Long) {
|
|
|
-// if (PlatformUtil.getPlatform() == PLATFORM.SYSTEM) {
|
|
|
-// 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.USER, CACHE_KEY_ALL, it)
|
|
|
-// }
|
|
|
-// }
|
|
|
-// }
|
|
|
+ override fun register(entity: SysUser): SysUser {
|
|
|
+ if (PlatformUtil.getPlatform() == PLATFORM.SYSTEM) {
|
|
|
+ //
|
|
|
+ val condition = SysUser().apply { this.account = entity.account }
|
|
|
+ if (baseMapper.selectCount(EntityWrapper(condition)) > 0) {
|
|
|
+ throw ZenException(ZenExceptionEnum.REG_ACCOUNT_EXISTS)
|
|
|
+ }
|
|
|
+ // 处理一下密码
|
|
|
+ if (entity.password.isNullOrEmpty()) {
|
|
|
+ throw ZenException(ZenExceptionEnum.REG_PASSWORD_ERROR)
|
|
|
+ } else if (entity.password!!.length < 6) {
|
|
|
+ throw ZenException(ZenExceptionEnum.REG_PASSWORD_ERROR)
|
|
|
+ }
|
|
|
+ //
|
|
|
+ val salt = RandomStringUtils.randomAlphanumeric(9)
|
|
|
+ val hashedPassword = SimpleHash("md5", entity.password, entity.account + salt, 2).toHex()
|
|
|
+ //
|
|
|
+ entity.salt = salt
|
|
|
+ entity.password = hashedPassword
|
|
|
+ //
|
|
|
+ if (baseMapper.insert(entity) <= 0) {
|
|
|
+ throw ZenException(ZenExceptionEnum.BIZ_INSERT_ERROR)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return entity
|
|
|
+ }
|
|
|
+
|
|
|
+ override fun modify(entity: SysUser): SysUser {
|
|
|
+ if (PlatformUtil.getPlatform() == PLATFORM.SYSTEM) {
|
|
|
+ // 处理一下密码
|
|
|
+ if (entity.password != null && entity.password!!.length < 6) {
|
|
|
+ throw ZenException(ZenExceptionEnum.REG_PASSWORD_ERROR)
|
|
|
+ }
|
|
|
+ if (entity.password != null) {
|
|
|
+ //
|
|
|
+ val salt = RandomStringUtils.randomAlphanumeric(9)
|
|
|
+ val hashedPassword = SimpleHash("MD5", entity.password, entity.account + salt, 2).toHex()
|
|
|
+ //
|
|
|
+ entity.salt = salt
|
|
|
+ entity.password = hashedPassword
|
|
|
+ }
|
|
|
+ // 修改
|
|
|
+ baseMapper.updateWOLogic(entity, EntityWrapper<SysUser>().eq("id", entity.id))
|
|
|
+ }
|
|
|
+ return entity
|
|
|
+ }
|
|
|
+
|
|
|
+ @ZenTransactional
|
|
|
+ override fun delete(id: Long) {
|
|
|
+ if (baseMapper.physicalDeleteById(id) > 0) {
|
|
|
+ // 删除用户相关所有东西
|
|
|
+ userRoleService.deleteByUserId(id)
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|