Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
I
ioc_sixiang_license
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zengtianlai3
ioc_sixiang_license
Commits
c600c541
Commit
c600c541
authored
Jul 17, 2022
by
zengtianlai3
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xss 优化
parent
45a49a85
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
OperateController.java
...ava/iot/sixiang/license/controller/OperateController.java
+3
-1
AlarmReadServiceImpl.java
...ot/sixiang/license/service/impl/AlarmReadServiceImpl.java
+5
-0
No files found.
license/src/main/java/iot/sixiang/license/controller/OperateController.java
View file @
c600c541
...
@@ -25,6 +25,7 @@ import iot.sixiang.license.service.AlarmReadService;
...
@@ -25,6 +25,7 @@ import iot.sixiang.license.service.AlarmReadService;
import
iot.sixiang.license.service.AlarmService
;
import
iot.sixiang.license.service.AlarmService
;
import
iot.sixiang.license.service.MonitorService
;
import
iot.sixiang.license.service.MonitorService
;
import
iot.sixiang.license.service.ServerService
;
import
iot.sixiang.license.service.ServerService
;
import
iot.sixiang.license.xss.BeanCopyUtil
;
import
iot.sixiang.license.xss.XssUtil
;
import
iot.sixiang.license.xss.XssUtil
;
import
lombok.extern.slf4j.Slf4j
;
import
lombok.extern.slf4j.Slf4j
;
import
org.owasp.esapi.ESAPI
;
import
org.owasp.esapi.ESAPI
;
...
@@ -103,7 +104,8 @@ public class OperateController {
...
@@ -103,7 +104,8 @@ public class OperateController {
String
user
=
UserUtils
.
getLoginUserId
();
String
user
=
UserUtils
.
getLoginUserId
();
int
userI
=
Integer
.
valueOf
(
user
);
int
userI
=
Integer
.
valueOf
(
user
);
List
<
AlarmVo
>
alarmList
=
alarmService
.
getAlarmList
(
userI
);
List
<
AlarmVo
>
alarmList
=
alarmService
.
getAlarmList
(
userI
);
return
ResResult
.
success
().
goRecord
(
alarmList
);
List
<
AlarmVo
>
alarmVos
=
BeanCopyUtil
.
copyListProperties
(
alarmList
,
AlarmVo:
:
new
);
return
ResResult
.
success
().
goRecord
(
alarmVos
);
}
}
@ApiOperation
(
value
=
"告警已读接口"
,
notes
=
"将告警信息状态设为已读"
)
@ApiOperation
(
value
=
"告警已读接口"
,
notes
=
"将告警信息状态设为已读"
)
...
...
license/src/main/java/iot/sixiang/license/service/impl/AlarmReadServiceImpl.java
View file @
c600c541
...
@@ -50,6 +50,11 @@ public class AlarmReadServiceImpl extends ServiceImpl<AlarmReadMapper, AlarmRead
...
@@ -50,6 +50,11 @@ public class AlarmReadServiceImpl extends ServiceImpl<AlarmReadMapper, AlarmRead
String
title
=
alarm
.
getTitle
();
String
title
=
alarm
.
getTitle
();
String
content
=
alarm
.
getContent
();
String
content
=
alarm
.
getContent
();
alarmId
=
Integer
.
valueOf
(
XssUtil
.
checkXSS
(
String
.
valueOf
(
alarmId
)));
typeId
=
Integer
.
valueOf
(
XssUtil
.
checkXSS
(
String
.
valueOf
(
typeId
)));
title
=
XssUtil
.
checkXSS
(
title
);
content
=
XssUtil
.
checkXSS
(
content
);
boolean
res
=
alarmReadMapper
.
readAlarm
(
alarmId
,
typeId
,
title
,
content
,
userId
);
boolean
res
=
alarmReadMapper
.
readAlarm
(
alarmId
,
typeId
,
title
,
content
,
userId
);
if
(!
res
)
{
if
(!
res
)
{
return
false
;
return
false
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment