Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibzuaa
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibzuaa
提交
c4e9ce63
提交
c4e9ce63
编写于
7月 06, 2020
作者:
sq3536
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
pwd
上级
6404d58b
变更
1
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
9 行增加
和
7 行删除
+9
-7
ClientAuthenticationResource.java
...lab/api/rest/extensions/ClientAuthenticationResource.java
+9
-7
未找到文件。
ibzuaa-provider/ibzuaa-provider-api/src/main/java/cn/ibizlab/api/rest/extensions/ClientAuthenticationResource.java
浏览文件 @
c4e9ce63
package
cn
.
ibizlab
.
api
.
rest
.
extensions
;
package
cn
.
ibizlab
.
api
.
rest
.
extensions
;
import
cn.ibizlab.core.uaa.domain.SysUser
;
import
cn.ibizlab.core.uaa.extensions.service.SysAppService
;
import
cn.ibizlab.core.uaa.extensions.service.SysAppService
;
import
cn.ibizlab.core.uaa.extensions.service.UAACoreService
;
import
cn.ibizlab.core.uaa.extensions.service.UAACoreService
;
import
cn.ibizlab.core.uaa.service.ISysUserService
;
import
cn.ibizlab.util.domain.IBZUSER
;
import
cn.ibizlab.util.domain.IBZUSER
;
import
cn.ibizlab.util.errors.BadRequestAlertException
;
import
cn.ibizlab.util.errors.BadRequestAlertException
;
import
cn.ibizlab.util.helper.CachedBeanCopier
;
import
cn.ibizlab.util.helper.CachedBeanCopier
;
...
@@ -52,7 +54,7 @@ public class ClientAuthenticationResource
...
@@ -52,7 +54,7 @@ public class ClientAuthenticationResource
UAACoreService
uaaCoreService
;
UAACoreService
uaaCoreService
;
@Autowired
@Autowired
private
I
BZUSERService
ibzuserService
;
private
I
SysUserService
userService
;
;
@Value
(
"${ibiz.auth.pwencrymode:0}"
)
@Value
(
"${ibiz.auth.pwencrymode:0}"
)
private
int
pwencrymode
;
private
int
pwencrymode
;
...
@@ -74,8 +76,8 @@ public class ClientAuthenticationResource
...
@@ -74,8 +76,8 @@ public class ClientAuthenticationResource
@PostMapping
(
value
=
"v7/changepwd"
)
@PostMapping
(
value
=
"v7/changepwd"
)
public
ResponseEntity
<
Boolean
>
changepwd
(
@Validated
@RequestBody
JSONObject
jsonObject
){
public
ResponseEntity
<
Boolean
>
changepwd
(
@Validated
@RequestBody
JSONObject
jsonObject
){
String
oldpwd
=
jsonObject
.
getString
(
"old
p
wd"
);
// 旧密码
String
oldpwd
=
jsonObject
.
getString
(
"old
P
wd"
);
// 旧密码
String
newpwd
=
jsonObject
.
getString
(
"new
p
wd"
);
// 新密码
String
newpwd
=
jsonObject
.
getString
(
"new
P
wd"
);
// 新密码
// 空校验
// 空校验
if
(
StringUtils
.
isEmpty
(
oldpwd
))
if
(
StringUtils
.
isEmpty
(
oldpwd
))
throw
new
BadRequestAlertException
(
"旧密码为空"
,
"ClientAuthenticationResource"
,
""
);
throw
new
BadRequestAlertException
(
"旧密码为空"
,
"ClientAuthenticationResource"
,
""
);
...
@@ -84,12 +86,12 @@ public class ClientAuthenticationResource
...
@@ -84,12 +86,12 @@ public class ClientAuthenticationResource
// 获取当前登录用户并加密旧密码
// 获取当前登录用户并加密旧密码
AuthenticationUser
authenticationUser
=
AuthenticationUser
.
getAuthenticationUser
();
AuthenticationUser
authenticationUser
=
AuthenticationUser
.
getAuthenticationUser
();
IBZUSER
ibzuser
=
ibz
userService
.
getById
(
authenticationUser
.
getUserid
());
SysUser
sysUser
=
userService
.
getById
(
authenticationUser
.
getUserid
());
if
(
pwencrymode
==
1
)
if
(
pwencrymode
==
1
)
oldpwd
=
DigestUtils
.
md5DigestAsHex
(
oldpwd
.
getBytes
());
oldpwd
=
DigestUtils
.
md5DigestAsHex
(
oldpwd
.
getBytes
());
else
if
(
pwencrymode
==
2
)
else
if
(
pwencrymode
==
2
)
oldpwd
=
DigestUtils
.
md5DigestAsHex
(
String
.
format
(
"%1$s||%2$s"
,
authenticationUser
.
getUsername
(),
oldpwd
).
getBytes
());
oldpwd
=
DigestUtils
.
md5DigestAsHex
(
String
.
format
(
"%1$s||%2$s"
,
authenticationUser
.
getUsername
(),
oldpwd
).
getBytes
());
if
(!
ibzu
ser
.
getPassword
().
equals
(
oldpwd
)){
if
(!
sysU
ser
.
getPassword
().
equals
(
oldpwd
)){
throw
new
BadRequestAlertException
(
"用户名密码错误"
,
"IBZUSER"
,
authenticationUser
.
getUsername
());
throw
new
BadRequestAlertException
(
"用户名密码错误"
,
"IBZUSER"
,
authenticationUser
.
getUsername
());
}
}
// 加密新密码
// 加密新密码
...
@@ -99,8 +101,8 @@ public class ClientAuthenticationResource
...
@@ -99,8 +101,8 @@ public class ClientAuthenticationResource
newpwd
=
DigestUtils
.
md5DigestAsHex
(
String
.
format
(
"%1$s||%2$s"
,
authenticationUser
.
getUsername
(),
newpwd
).
getBytes
());
newpwd
=
DigestUtils
.
md5DigestAsHex
(
String
.
format
(
"%1$s||%2$s"
,
authenticationUser
.
getUsername
(),
newpwd
).
getBytes
());
// 修改密码
// 修改密码
ibzu
ser
.
setPassword
(
newpwd
);
sysU
ser
.
setPassword
(
newpwd
);
ibzuserService
.
updateById
(
ibzu
ser
);
userService
.
updateById
(
sysU
ser
);
return
ResponseEntity
.
ok
(
true
);
return
ResponseEntity
.
ok
(
true
);
}
}
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录