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.
95 lines
3.4 KiB
95 lines
3.4 KiB
package apiChat
|
|
|
|
import (
|
|
"Open_IM/pkg/common/config"
|
|
"Open_IM/pkg/common/log"
|
|
pbChat "Open_IM/pkg/proto/chat"
|
|
"Open_IM/pkg/utils"
|
|
"context"
|
|
|
|
"Open_IM/pkg/grpc-etcdv3/getcdv3"
|
|
"github.com/gin-gonic/gin"
|
|
"net/http"
|
|
"strings"
|
|
)
|
|
|
|
type paramsUserSendMsg struct {
|
|
ReqIdentifier int32 `json:"reqIdentifier" binding:"required"`
|
|
PlatformID int32 `json:"platformID" binding:"required"`
|
|
SendID string `json:"sendID" binding:"required"`
|
|
SenderNickName string `json:"senderNickName"`
|
|
SenderFaceURL string `json:"senderFaceUrl"`
|
|
OperationID string `json:"operationID" binding:"required"`
|
|
Data struct {
|
|
SessionType int32 `json:"sessionType" binding:"required"`
|
|
MsgFrom int32 `json:"msgFrom" binding:"required"`
|
|
ContentType int32 `json:"contentType" binding:"required"`
|
|
RecvID string `json:"recvID" binding:"required"`
|
|
ForceList []string `json:"forceList"`
|
|
Content string `json:"content" binding:"required"`
|
|
Options map[string]interface{} `json:"options" `
|
|
ClientMsgID string `json:"clientMsgID" binding:"required"`
|
|
OffLineInfo map[string]interface{} `json:"offlineInfo" `
|
|
Ex map[string]interface{} `json:"ext"`
|
|
}
|
|
}
|
|
|
|
func newUserSendMsgReq(token string, params *paramsUserSendMsg) *pbChat.UserSendMsgReq {
|
|
pbData := pbChat.UserSendMsgReq{
|
|
ReqIdentifier: params.ReqIdentifier,
|
|
Token: token,
|
|
SendID: params.SendID,
|
|
SenderNickName: params.SenderNickName,
|
|
SenderFaceURL: params.SenderFaceURL,
|
|
OperationID: params.OperationID,
|
|
PlatformID: params.PlatformID,
|
|
SessionType: params.Data.SessionType,
|
|
MsgFrom: params.Data.MsgFrom,
|
|
ContentType: params.Data.ContentType,
|
|
RecvID: params.Data.RecvID,
|
|
ForceList: params.Data.ForceList,
|
|
Content: params.Data.Content,
|
|
Options: utils.MapToJsonString(params.Data.Options),
|
|
ClientMsgID: params.Data.ClientMsgID,
|
|
OffLineInfo: utils.MapToJsonString(params.Data.OffLineInfo),
|
|
Ex: utils.MapToJsonString(params.Data.Ex),
|
|
}
|
|
return &pbData
|
|
}
|
|
|
|
func UserSendMsg(c *gin.Context) {
|
|
params := paramsUserSendMsg{}
|
|
if err := c.BindJSON(¶ms); err != nil {
|
|
c.JSON(http.StatusBadRequest, gin.H{"errCode": 400, "errMsg": err.Error()})
|
|
log.ErrorByKv("json unmarshal err", "", "err", err.Error(), "data", c.PostForm("data"))
|
|
return
|
|
}
|
|
|
|
token := c.Request.Header.Get("token")
|
|
|
|
log.InfoByKv("Ws call success to sendMsgReq", params.OperationID, "Parameters", params)
|
|
|
|
pbData := newUserSendMsgReq(token, ¶ms)
|
|
log.Info("", "", "api UserSendMsg call start..., [data: %s]", pbData.String())
|
|
|
|
etcdConn := getcdv3.GetConn(config.Config.Etcd.EtcdSchema, strings.Join(config.Config.Etcd.EtcdAddr, ","), config.Config.RpcRegisterName.OpenImOfflineMessageName)
|
|
client := pbChat.NewChatClient(etcdConn)
|
|
|
|
log.Info("", "", "api UserSendMsg call, api call rpc...")
|
|
|
|
reply, _ := client.UserSendMsg(context.Background(), pbData)
|
|
log.Info("", "", "api UserSendMsg call end..., [data: %s] [reply: %s]", pbData.String(), reply.String())
|
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
"errCode": reply.ErrCode,
|
|
"errMsg": reply.ErrMsg,
|
|
"reqIdentifier": reply.ReqIdentifier,
|
|
"data": gin.H{
|
|
"clientMsgID": reply.ClientMsgID,
|
|
"serverMsgID": reply.ServerMsgID,
|
|
"sendTime": reply.SendTime,
|
|
},
|
|
})
|
|
|
|
}
|