mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
msg update
This commit is contained in:
parent
adfd117926
commit
c92e48dfa3
@ -192,18 +192,6 @@ func (m *Message) SendMessage(c *gin.Context) {
|
||||
apiresp.GinError(c, errs.ErrArgs.Wrap(err.Error()))
|
||||
return
|
||||
}
|
||||
//switch params.SessionType {
|
||||
//case constant.SingleChatType:
|
||||
// if len(params.RecvID) == 0 {
|
||||
// apiresp.GinError(c, errs.ErrData)
|
||||
// return
|
||||
// }
|
||||
//case constant.GroupChatType, constant.SuperGroupChatType:
|
||||
// if len(params.GroupID) == 0 {
|
||||
// apiresp.GinError(c, errs.ErrData)
|
||||
// return
|
||||
// }
|
||||
//}
|
||||
pbReq := m.newUserSendMsgReq(c, ¶ms)
|
||||
conn, err := m.c.GetConn(config.Config.RpcRegisterName.OpenImMsgName)
|
||||
if err != nil {
|
||||
|
@ -1,8 +1,8 @@
|
||||
package api
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/config"
|
||||
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/constant"
|
||||
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/log"
|
||||
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/mw"
|
||||
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/prome"
|
||||
@ -166,19 +166,12 @@ func NewGinRouter(zk discoveryregistry.SvcDiscoveryRegistry, rdb redis.Universal
|
||||
func RequiredIf(fl validator.FieldLevel) bool {
|
||||
sessionType := fl.Parent().FieldByName("SessionType").Int()
|
||||
switch sessionType {
|
||||
case 1, 4:
|
||||
fmt.Println("1", sessionType)
|
||||
case constant.SingleChatType, constant.NotificationChatType:
|
||||
if fl.FieldName() == "RecvID" {
|
||||
fmt.Println("2", sessionType)
|
||||
|
||||
return fl.Field().String() != ""
|
||||
}
|
||||
case 2, 3:
|
||||
fmt.Println("3", sessionType)
|
||||
|
||||
case constant.GroupChatType, constant.SuperGroupChatType:
|
||||
if fl.FieldName() == "GroupID" {
|
||||
fmt.Println("4", sessionType)
|
||||
|
||||
return fl.Field().String() != ""
|
||||
}
|
||||
default:
|
||||
|
Loading…
x
Reference in New Issue
Block a user