by Robin at 20241127
This commit is contained in:
parent
f03238d753
commit
7be56f9775
|
@ -98,7 +98,7 @@ const (
|
||||||
const (
|
const (
|
||||||
RedisStreamerPrefix = "streamer:" //streamer服务前缀
|
RedisStreamerPrefix = "streamer:" //streamer服务前缀
|
||||||
RedisMomentPrefix = "moment:" //moment服务前缀
|
RedisMomentPrefix = "moment:" //moment服务前缀
|
||||||
RedisNotificationPrefix = "notification:" //notification服务前缀
|
RedisNotificationPrefix = "notif:" //notification服务前缀
|
||||||
RedisContactCustomerServicePrefix = "contact_customer_service:" //contact_customer_service服务前缀
|
RedisContactCustomerServicePrefix = "contact_customer_service:" //contact_customer_service服务前缀
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -354,8 +354,8 @@ const (
|
||||||
|
|
||||||
// 系统通知表的已读状态
|
// 系统通知表的已读状态
|
||||||
const (
|
const (
|
||||||
Notification_NotRead = 0 //未读
|
NotifReceive_NotRead = 0 //未读
|
||||||
Notification_Read = 1 //已读
|
NotifReceive_Read = 1 //已读
|
||||||
)
|
)
|
||||||
|
|
||||||
// 系统通知表的推送状态
|
// 系统通知表的推送状态
|
||||||
|
|
|
@ -36,3 +36,32 @@ type ApiReceiveResp struct {
|
||||||
base.BaseResponse
|
base.BaseResponse
|
||||||
Data *ApiReceiveData `json:"data"`
|
Data *ApiReceiveData `json:"data"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// op 计数
|
||||||
|
type ApiCountUnreadReq struct {
|
||||||
|
base.BaseRequest
|
||||||
|
NType *int64 `json:"n_type"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type ApiCountUnreadData struct {
|
||||||
|
}
|
||||||
|
|
||||||
|
type ApiCountUnreadResp struct {
|
||||||
|
base.BaseResponse
|
||||||
|
Data *ApiCountUnreadData `json:"data"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// op 计数
|
||||||
|
type ApiReadReq struct {
|
||||||
|
base.BaseRequest
|
||||||
|
Ids []int64 `json:"ids"`
|
||||||
|
NType int64 `json:"n_type"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type ApiReadData struct {
|
||||||
|
}
|
||||||
|
|
||||||
|
type ApiReadResp struct {
|
||||||
|
base.BaseResponse
|
||||||
|
Data *ApiReadData `json:"data"`
|
||||||
|
}
|
||||||
|
|
|
@ -6576,6 +6576,24 @@ func (m *Mongo) CreateNotifReceives(ctx *gin.Context, notifReceives []*dbstruct.
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (m *Mongo) ReadNotifReceiveByIds(ctx *gin.Context, req *notificationproto.ApiReadReq) (*qmgo.UpdateResult, error) {
|
||||||
|
col := m.getColNotifReceive()
|
||||||
|
update := qmgo.M{
|
||||||
|
"$set": qmgo.M{
|
||||||
|
"is_read": consts.NotifReceive_Read,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
filter := qmgo.M{
|
||||||
|
"_id": qmgo.M{
|
||||||
|
"$in": req.Ids,
|
||||||
|
},
|
||||||
|
"is_read": consts.NotifReceive_NotRead,
|
||||||
|
"n_type": req.NType,
|
||||||
|
}
|
||||||
|
result, err := col.UpdateAll(ctx, filter, update)
|
||||||
|
return result, err
|
||||||
|
}
|
||||||
|
|
||||||
func (m *Mongo) DeleteNotifReceiveByIds(ctx *gin.Context, ids []int64) error {
|
func (m *Mongo) DeleteNotifReceiveByIds(ctx *gin.Context, ids []int64) error {
|
||||||
col := m.getColNotifReceive()
|
col := m.getColNotifReceive()
|
||||||
update := qmgo.M{
|
update := qmgo.M{
|
||||||
|
|
|
@ -4677,3 +4677,47 @@ func (s *Service) ApiReceiveAllBcstedNotifs(ctx *gin.Context, req *notificationp
|
||||||
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (s *Service) ApiReadNotification(ctx *gin.Context, req *notificationproto.ApiReadReq) (ec errcode.ErrCode) {
|
||||||
|
ec = errcode.ErrCodeNotificationSrvOk
|
||||||
|
|
||||||
|
// 标记已读
|
||||||
|
result, err := _DefaultNotifReceive.OpReadByIds(ctx, req)
|
||||||
|
if err != nil {
|
||||||
|
logger.Error("_DefaultNotifReceive OpReadByIds fail, req: %v, err: %v", util.ToJson(req), err)
|
||||||
|
ec = errcode.ErrCodeNotificationSrvFail
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
// 以真更新的条数decr
|
||||||
|
key := util.GetNotifUrcIdForRedis(req.BaseRequest.Mid, req.NType)
|
||||||
|
_, err = redis.GetRedisClient().DecrBy(key, result.ModifiedCount)
|
||||||
|
if err != nil {
|
||||||
|
logger.Error("Redis DecrBy fail, err: %v", err)
|
||||||
|
ec = errcode.ErrCodeNotificationSrvFail
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *Service) ApiGetNotificationUrcByMid(ctx *gin.Context, req *notificationproto.ApiCountUnreadReq) (mp map[int64]int64, ec errcode.ErrCode) {
|
||||||
|
ec = errcode.ErrCodeNotificationSrvOk
|
||||||
|
|
||||||
|
// 从redis中读取数据
|
||||||
|
mp = make(map[int64]int64)
|
||||||
|
if req.NType != nil {
|
||||||
|
nType := util.DerefInt64(req.NType)
|
||||||
|
total, _ := redis.GetRedisClient().GetInt64(util.GetNotifUrcIdForRedis(req.BaseRequest.Mid, nType))
|
||||||
|
mp[nType] = total
|
||||||
|
} else {
|
||||||
|
sysTotal, _ := redis.GetRedisClient().GetInt64(util.GetNotifUrcIdForRedis(req.BaseRequest.Mid, consts.Notif_System))
|
||||||
|
audTotal, _ := redis.GetRedisClient().GetInt64(util.GetNotifUrcIdForRedis(req.BaseRequest.Mid, consts.Notif_Audit))
|
||||||
|
vasTotal, _ := redis.GetRedisClient().GetInt64(util.GetNotifUrcIdForRedis(req.BaseRequest.Mid, consts.Notif_Vas))
|
||||||
|
mp[consts.Notif_System] = sysTotal
|
||||||
|
mp[consts.Notif_Audit] = audTotal
|
||||||
|
mp[consts.Notif_Vas] = vasTotal
|
||||||
|
}
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
|
@ -10,6 +10,7 @@ import (
|
||||||
notificationproto "service/api/proto/notification/proto"
|
notificationproto "service/api/proto/notification/proto"
|
||||||
|
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
|
"github.com/qiniu/qmgo"
|
||||||
)
|
)
|
||||||
|
|
||||||
type NotifReceive struct {
|
type NotifReceive struct {
|
||||||
|
@ -44,6 +45,15 @@ func (p *NotifReceive) OpCreateBatch(ctx *gin.Context, notifReceives []*dbstruct
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (p *NotifReceive) OpReadByIds(ctx *gin.Context, req *notificationproto.ApiReadReq) (*qmgo.UpdateResult, error) {
|
||||||
|
result, err := p.store.ReadNotifReceiveByIds(ctx, req)
|
||||||
|
if err != nil {
|
||||||
|
logger.Error("DeleteNotifBcstByIds fail, err: %v", err)
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return result, nil
|
||||||
|
}
|
||||||
|
|
||||||
func (p *NotifReceive) OpDeleteByIds(ctx *gin.Context, ids []int64) error {
|
func (p *NotifReceive) OpDeleteByIds(ctx *gin.Context, ids []int64) error {
|
||||||
err := p.store.DeleteNotifReceiveByIds(ctx, ids)
|
err := p.store.DeleteNotifReceiveByIds(ctx, ids)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
package logic
|
package logic
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
|
||||||
"service/api/consts"
|
"service/api/consts"
|
||||||
notificationproto "service/api/proto/notification/proto"
|
notificationproto "service/api/proto/notification/proto"
|
||||||
"service/app/mix/dao"
|
"service/app/mix/dao"
|
||||||
|
@ -107,7 +106,3 @@ func (p *Notification) OpUpdateByIds(ctx *gin.Context, notification *dbstruct.No
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func GetNotificationCountIdForRedis(mid int64) string {
|
|
||||||
return fmt.Sprintf("%sunread_count_%d", consts.RedisNotificationPrefix, mid)
|
|
||||||
}
|
|
||||||
|
|
|
@ -2,8 +2,10 @@ package service
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"service/api/consts"
|
"service/api/consts"
|
||||||
|
"service/bizcommon/util"
|
||||||
"service/dbstruct"
|
"service/dbstruct"
|
||||||
"service/library/logger"
|
"service/library/logger"
|
||||||
|
"service/library/redis"
|
||||||
|
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
goproto "google.golang.org/protobuf/proto"
|
goproto "google.golang.org/protobuf/proto"
|
||||||
|
@ -82,20 +84,48 @@ func (s *NotifBcstCenter) bcstNotifsToAll(ctx *gin.Context, nids []int64, objTyp
|
||||||
|
|
||||||
// 直接推送至用户
|
// 直接推送至用户
|
||||||
func (s *NotifBcstCenter) pushNotifsToMids(ctx *gin.Context, nids []int64, objMids []int64) error {
|
func (s *NotifBcstCenter) pushNotifsToMids(ctx *gin.Context, nids []int64, objMids []int64) error {
|
||||||
|
|
||||||
|
// 查询得到消息
|
||||||
|
notifMap := make(map[int64]*dbstruct.Notification)
|
||||||
|
nTypeTotalMap := make(map[int64]int64)
|
||||||
|
notifs, err := _DefaultNotification.GetListByIds(ctx, nids)
|
||||||
|
if err != nil {
|
||||||
|
logger.Error("GetNotificationListByIds fail, err: %v", err)
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
for _, notif := range notifs {
|
||||||
|
notifMap[notif.GetId()] = notif
|
||||||
|
nTypeTotalMap[notif.GetNType()]++
|
||||||
|
}
|
||||||
|
|
||||||
notifReceives := make([]*dbstruct.NotifReceive, 0)
|
notifReceives := make([]*dbstruct.NotifReceive, 0)
|
||||||
for _, mid := range objMids {
|
for _, mid := range objMids {
|
||||||
for _, nid := range nids {
|
for _, nid := range nids {
|
||||||
notifReceives = append(notifReceives, &dbstruct.NotifReceive{
|
notifReceives = append(notifReceives, &dbstruct.NotifReceive{
|
||||||
ObjMid: mid,
|
ObjMid: mid,
|
||||||
Nid: nid,
|
Nid: nid,
|
||||||
|
NType: notifMap[nid].GetNType(),
|
||||||
|
IsRead: consts.NotifReceive_NotRead,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
err := _DefaultNotifReceive.OpCreateBatch(ctx, notifReceives)
|
err = _DefaultNotifReceive.OpCreateBatch(ctx, notifReceives)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
logger.Error("OpCreateBatch fail, err: %v", err)
|
logger.Error("OpCreateBatch fail, err: %v", err)
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 记录未读总数
|
||||||
|
for _, mid := range objMids {
|
||||||
|
for nType, total := range nTypeTotalMap {
|
||||||
|
_, err = redis.GetRedisClient().IncrBy(util.GetNotifUrcIdForRedis(mid, nType), total)
|
||||||
|
if err != nil {
|
||||||
|
logger.Error("Redis IncrBy fail, err: %v", err)
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -161,6 +191,7 @@ func (s *NotifBcstCenter) pullAllBcstedNotifs(ctx *gin.Context, vers, receiveVer
|
||||||
notifReceive := &dbstruct.NotifReceive{
|
notifReceive := &dbstruct.NotifReceive{
|
||||||
ObjMid: objMid,
|
ObjMid: objMid,
|
||||||
Nid: nid,
|
Nid: nid,
|
||||||
|
IsRead: consts.NotifReceive_NotRead,
|
||||||
}
|
}
|
||||||
notifReceives = append(notifReceives, notifReceive)
|
notifReceives = append(notifReceives, notifReceive)
|
||||||
notifReceiveMap[nid] = notifReceive
|
notifReceiveMap[nid] = notifReceive
|
||||||
|
@ -168,6 +199,7 @@ func (s *NotifBcstCenter) pullAllBcstedNotifs(ctx *gin.Context, vers, receiveVer
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
nTypeTotalMap := make(map[int64]int64)
|
||||||
notifs, err := _DefaultNotification.GetListByIds(ctx, nids)
|
notifs, err := _DefaultNotification.GetListByIds(ctx, nids)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
logger.Error("GetNotificationListByIds fail, err: %v", err)
|
logger.Error("GetNotificationListByIds fail, err: %v", err)
|
||||||
|
@ -178,6 +210,7 @@ func (s *NotifBcstCenter) pullAllBcstedNotifs(ctx *gin.Context, vers, receiveVer
|
||||||
if ok {
|
if ok {
|
||||||
ntf.NType = notif.GetNType()
|
ntf.NType = notif.GetNType()
|
||||||
}
|
}
|
||||||
|
nTypeTotalMap[notif.GetNType()]++
|
||||||
}
|
}
|
||||||
|
|
||||||
err = _DefaultNotifReceive.OpCreateBatch(ctx, notifReceives)
|
err = _DefaultNotifReceive.OpCreateBatch(ctx, notifReceives)
|
||||||
|
@ -185,5 +218,15 @@ func (s *NotifBcstCenter) pullAllBcstedNotifs(ctx *gin.Context, vers, receiveVer
|
||||||
logger.Error("OpCreateBatch fail, err: %v", err)
|
logger.Error("OpCreateBatch fail, err: %v", err)
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 记录未读总数
|
||||||
|
for nType, total := range nTypeTotalMap {
|
||||||
|
_, err = redis.GetRedisClient().IncrBy(util.GetNotifUrcIdForRedis(objMid, nType), total)
|
||||||
|
if err != nil {
|
||||||
|
logger.Error("Redis IncrBy fail, err: %v", err)
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
|
@ -451,3 +451,7 @@ func FormatTsAsNotifT(timestamp int64) string {
|
||||||
func GetNotifScene(key string, option int64) int64 {
|
func GetNotifScene(key string, option int64) int64 {
|
||||||
return consts.AudNotifTempKeyMap[key][option]
|
return consts.AudNotifTempKeyMap[key][option]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func GetNotifUrcIdForRedis(mid, nType int64) string {
|
||||||
|
return fmt.Sprintf("%surc_%d_%d", consts.RedisNotificationPrefix, mid, nType)
|
||||||
|
}
|
||||||
|
|
|
@ -81,6 +81,7 @@ type NotifReceive struct {
|
||||||
ObjMid int64 `json:"obj_mid" bson:"obj_mid"` // 通知接收人mid
|
ObjMid int64 `json:"obj_mid" bson:"obj_mid"` // 通知接收人mid
|
||||||
Nid int64 `json:"nid" bson:"nid"` // 系统通知表id
|
Nid int64 `json:"nid" bson:"nid"` // 系统通知表id
|
||||||
NType int64 `json:"n_type" bson:"n_type"` // 消息类型
|
NType int64 `json:"n_type" bson:"n_type"` // 消息类型
|
||||||
|
IsRead int64 `json:"is_read" bson:"is_read"` // 是否已读
|
||||||
Ct int64 `json:"ct" bson:"ct"` // 创建时间
|
Ct int64 `json:"ct" bson:"ct"` // 创建时间
|
||||||
Ut int64 `json:"ut" bson:"ut"` // 更新时间
|
Ut int64 `json:"ut" bson:"ut"` // 更新时间
|
||||||
DelFlag int64 `json:"del_flag" bson:"del_flag"` // 删除标记
|
DelFlag int64 `json:"del_flag" bson:"del_flag"` // 删除标记
|
||||||
|
|
Loading…
Reference in New Issue