|
@@ -14,11 +14,12 @@ import com.gxzc.zen.common.properties.PlatformProperties
|
|
|
import com.gxzc.zen.common.util.PlatformUtil
|
|
|
import com.gxzc.zen.common.util.RedisCacheUtil
|
|
|
import com.gxzc.zen.orm.annotation.ZenTransactional
|
|
|
+import com.gxzc.zen.umps.util.MD5Salt
|
|
|
+import org.apache.commons.lang3.RandomStringUtils
|
|
|
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>
|
|
@@ -75,6 +76,17 @@ class SysUserServiceImpl : ServiceImpl<SysUserMapper, SysUser>(), ISysUserServic
|
|
|
@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.random(9)!!
|
|
|
+ entity.salt = salt
|
|
|
+ entity.password = MD5Salt.md5SaltEncode(salt, entity.password!!)
|
|
|
+
|
|
|
if (baseMapper.insert(entity) == 0) {
|
|
|
throw ZenException(ZenExceptionEnum.BIZ_INSERT_ERROR)
|
|
|
}
|
|
@@ -114,6 +126,13 @@ class SysUserServiceImpl : ServiceImpl<SysUserMapper, SysUser>(), ISysUserServic
|
|
|
userRoleService.insertBatch(entity.id!!, addRoleIdList)
|
|
|
}
|
|
|
|
|
|
+ // 密码搞一下
|
|
|
+ if (!entity.password.isNullOrEmpty() && entity.password!!.length >= 6) {
|
|
|
+ val salt = RandomStringUtils.random(9)!!
|
|
|
+ entity.salt = salt
|
|
|
+ entity.password = MD5Salt.md5SaltEncode(salt, entity.password!!)
|
|
|
+ }
|
|
|
+
|
|
|
baseMapper.updateWOLogic(entity, EntityWrapper<SysUser>().eq("id", entity.id))
|
|
|
// throw ZenException(ZenExceptionEnum.SERVER_ERROR)
|
|
|
// 更新缓存
|