You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package msg
|
|
|
|
|
|
|
|
import (
|
|
|
|
"Open_IM/pkg/common/constant"
|
|
|
|
"Open_IM/pkg/common/log"
|
|
|
|
pbOffice "Open_IM/pkg/proto/office"
|
|
|
|
sdk "Open_IM/pkg/proto/sdk_ws"
|
|
|
|
"Open_IM/pkg/utils"
|
|
|
|
"github.com/golang/protobuf/jsonpb"
|
|
|
|
"github.com/golang/protobuf/proto"
|
|
|
|
)
|
|
|
|
|
|
|
|
func WorkMomentSendNotification(operationID, recvID string, notificationMsg *pbOffice.WorkMomentNotificationMsg) {
|
|
|
|
log.NewInfo(operationID, utils.GetSelfFuncName(), recvID, notificationMsg)
|
|
|
|
WorkMomentNotification(operationID, recvID, recvID, notificationMsg)
|
|
|
|
}
|
|
|
|
|
|
|
|
func WorkMomentNotification(operationID, sendID, recvID string, m proto.Message) {
|
|
|
|
var tips sdk.TipsComm
|
|
|
|
var err error
|
|
|
|
marshaler := jsonpb.Marshaler{
|
|
|
|
OrigName: true,
|
|
|
|
EnumsAsInts: false,
|
|
|
|
EmitDefaults: false,
|
|
|
|
}
|
|
|
|
tips.JsonDetail, _ = marshaler.MarshalToString(m)
|
|
|
|
n := &NotificationMsg{
|
|
|
|
SendID: sendID,
|
|
|
|
RecvID: recvID,
|
|
|
|
MsgFrom: constant.UserMsgType,
|
|
|
|
ContentType: constant.WorkMomentNotification,
|
|
|
|
SessionType: constant.SingleChatType,
|
|
|
|
OperationID: operationID,
|
|
|
|
}
|
|
|
|
n.Content, err = proto.Marshal(&tips)
|
|
|
|
if err != nil {
|
|
|
|
log.NewError(operationID, utils.GetSelfFuncName(), "proto.Marshal failed")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
log.NewInfo(operationID, utils.GetSelfFuncName(), string(n.Content))
|
|
|
|
Notification(n)
|
|
|
|
}
|