Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibznotify
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibznotify
提交
a6d79f3c
提交
a6d79f3c
编写于
2月 03, 2021
作者:
tangyaolong
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
完善代码
上级
7925886a
变更
2
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
29 行增加
和
19 行删除
+29
-19
NotifyCoreService.java
...cn/ibizlab/core/extensions/service/NotifyCoreService.java
+22
-13
NotifyCoreResource.java
...va/cn/ibizlab/api/rest/extensions/NotifyCoreResource.java
+7
-6
未找到文件。
ibznotify-core/src/main/java/cn/ibizlab/core/extensions/service/NotifyCoreService.java
浏览文件 @
a6d79f3c
...
...
@@ -41,6 +41,8 @@ import org.springframework.http.HttpEntity;
import
org.springframework.http.ResponseEntity
;
import
org.springframework.scheduling.annotation.Scheduled
;
import
org.springframework.stereotype.Service
;
import
org.springframework.util.DigestUtils
;
import
org.springframework.util.ObjectUtils
;
import
org.springframework.util.StringUtils
;
import
org.springframework.web.client.RestTemplate
;
...
...
@@ -111,8 +113,6 @@ public class NotifyCoreService {
createWorkRecordClient
=
new
DefaultDingTalkClient
(
dingTalkCreateWorkRecordApi
);
finishWorkRecordClient
=
new
DefaultDingTalkClient
(
dingTalkFinishWorkRecordApi
);
}
@Value
(
"${ibiz.notify.pagesize:10}"
)
private
int
pageSize
;
@Value
(
"${ibiz.notify.expiretime:300000}"
)
private
Long
expireTime
;
...
...
@@ -658,10 +658,15 @@ public class NotifyCoreService {
* 获取某个用户全量存储催办消息
* @return
*/
public
Page
<
MsgBody
>
getBacklogAllContent
(
String
toUserId
)
{
public
Page
<
MsgBody
>
getBacklogAllContent
(
String
toUserId
,
int
msgType
)
{
if
(
StringUtils
.
isEmpty
(
toUserId
))
throw
new
BadRequestAlertException
(
"无效用户ID"
,
"NotifyCoreService"
,
"getBacklogAllContent"
);
if
(
ObjectUtils
.
isEmpty
(
msgType
))
throw
new
BadRequestAlertException
(
"无效消息种类"
,
"NotifyCoreService"
,
"getBacklogAllContent"
);
MsgBodySearchContext
context
=
new
MsgBodySearchContext
();
context
.
setN_tousers_in
(
toUserId
);
context
.
setSize
(
Integer
.
MAX_VALUE
);
context
.
setN_msgtype_eq
(
msgType
);
context
.
setN_tousers_eq
(
toUserId
);
Page
<
MsgBody
>
result
=
msgBodyService
.
searchDefault
(
context
);
return
result
;
...
...
@@ -671,13 +676,10 @@ public class NotifyCoreService {
* 获取某个用户分页存储催办消息
* @return
*/
public
Page
<
MsgBody
>
getBacklogPageContent
(
String
toUserId
)
{
MsgBodySearchContext
context
=
new
MsgBodySearchContext
();
context
.
setSize
(
pageSize
);
context
.
setN_tousers_eq
(
toUserId
);
public
Page
<
MsgBody
>
getBacklogPageContent
(
MsgBodySearchContext
context
)
{
Page
<
MsgBody
>
result
=
msgBodyService
.
searchDefault
(
context
);
msgMap
.
put
(
toUserId
,
result
);
expireMap
.
put
(
toUserId
,
System
.
currentTimeMillis
())
;
msgMap
.
put
(
context
.
getN_tousers_eq
()
,
result
);
expireMap
.
put
(
context
.
getN_tousers_eq
()
,
System
.
currentTimeMillis
())
;
return
result
;
}
...
...
@@ -685,14 +687,21 @@ public class NotifyCoreService {
* 缓存某个用户分页催办消息
* @return
*/
public
Page
<
MsgBody
>
getBacklogByPage
(
String
toUserId
)
{
public
Page
<
MsgBody
>
getBacklogByPage
(
MsgBodySearchContext
context
)
{
if
(
ObjectUtils
.
isEmpty
(
context
))
throw
new
BadRequestAlertException
(
"无效消息上下文"
,
"NotifyCoreService"
,
"getBacklogAllContent"
);
String
toUserId
=
context
.
getN_tousers_eq
();
if
(!
msgMap
.
containsKey
(
toUserId
)
&&
!
expireMap
.
containsKey
(
toUserId
)){
return
getBacklogPageContent
(
toUserId
);
return
getBacklogPageContent
(
context
);
}
else
{
if
(
msgMap
.
get
(
toUserId
).
getSize
()
!=
context
.
getSize
()){
return
getBacklogPageContent
(
context
);
}
if
(
System
.
currentTimeMillis
()
-
expireMap
.
get
(
toUserId
)
<=
expireTime
){
return
msgMap
.
get
(
toUserId
);
}
else
{
return
getBacklogPageContent
(
toUserId
);
return
getBacklogPageContent
(
context
);
}
}
}
...
...
ibznotify-provider/ibznotify-provider-api/src/main/java/cn/ibizlab/api/rest/extensions/NotifyCoreResource.java
浏览文件 @
a6d79f3c
...
...
@@ -6,6 +6,7 @@ import cn.ibizlab.core.extensions.domain.Template;
import
cn.ibizlab.core.extensions.service.NotifyCoreService
;
import
cn.ibizlab.core.notify.domain.MsgBody
;
import
cn.ibizlab.core.notify.filter.MsgBodySearchContext
;
import
cn.ibizlab.core.notify.filter.MsgOpenAccessSearchContext
;
import
cn.ibizlab.core.notify.filter.MsgUserAccountSearchContext
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.data.domain.Page
;
...
...
@@ -78,9 +79,9 @@ public class NotifyCoreResource {
* @param
* @return
*/
@RequestMapping
(
method
=
RequestMethod
.
POST
,
value
=
"/notify/msgbody/get
backlogbypage/{tousers}
"
)
public
ResponseEntity
<
Page
>
getAllBacklogAll
(
@
Validated
@NotNull
@PathVariable
(
"tousers"
)
String
toUsers
){
Page
page
=
notifyCoreService
.
getBacklogAllContent
(
toUsers
);
@RequestMapping
(
method
=
RequestMethod
.
POST
,
value
=
"/notify/msgbody/get
allbacklogall
"
)
public
ResponseEntity
<
Page
>
getAllBacklogAll
(
@
RequestBody
MsgBodyDTO
dto
){
Page
page
=
notifyCoreService
.
getBacklogAllContent
(
dto
.
getToUsers
(),
dto
.
getMsgType
()
);
return
ResponseEntity
.
status
(
HttpStatus
.
OK
).
body
(
new
PageImpl
(
mapping
.
toDto
(
page
.
getContent
()),
page
.
getPageable
(),
page
.
getTotalElements
()));
}
/**
...
...
@@ -88,9 +89,9 @@ public class NotifyCoreResource {
* @param
* @return
*/
@RequestMapping
(
method
=
RequestMethod
.
POST
,
value
=
"/notify/msgbody/getbacklogbypage
/{tousers}
"
)
public
ResponseEntity
<
Page
>
getBacklogByPage
(
@
Validated
@NotNull
@PathVariable
(
"tousers"
)
String
toUsers
)
{
Page
page
=
notifyCoreService
.
getBacklogByPage
(
toUsers
);
@RequestMapping
(
method
=
RequestMethod
.
POST
,
value
=
"/notify/msgbody/getbacklogbypage"
)
public
ResponseEntity
<
Page
>
getBacklogByPage
(
@
RequestBody
MsgBodySearchContext
context
)
{
Page
page
=
notifyCoreService
.
getBacklogByPage
(
context
);
return
ResponseEntity
.
status
(
HttpStatus
.
OK
).
body
(
new
PageImpl
(
mapping
.
toDto
(
page
.
getContent
()),
page
.
getPageable
(),
page
.
getTotalElements
()));
}
}
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录