# Conflicts: # config/config.yamlpull/168/head
commit
53cdf884ef
@ -0,0 +1 @@
|
|||||||
|
package auth
|
@ -0,0 +1 @@
|
|||||||
|
package friend
|
@ -0,0 +1,9 @@
|
|||||||
|
package group
|
||||||
|
|
||||||
|
import (
|
||||||
|
pbGroup "Open_IM/pkg/proto/group"
|
||||||
|
)
|
||||||
|
|
||||||
|
func callbackBeforeCreateGroup(req *pbGroup.CreateGroupReq) (bool, error) {
|
||||||
|
return true, nil
|
||||||
|
}
|
@ -0,0 +1,112 @@
|
|||||||
|
package msg
|
||||||
|
|
||||||
|
import (
|
||||||
|
cbApi "Open_IM/pkg/call_back_struct"
|
||||||
|
"Open_IM/pkg/common/config"
|
||||||
|
"Open_IM/pkg/common/constant"
|
||||||
|
"Open_IM/pkg/common/http"
|
||||||
|
"Open_IM/pkg/common/log"
|
||||||
|
pbChat "Open_IM/pkg/proto/chat"
|
||||||
|
"Open_IM/pkg/utils"
|
||||||
|
)
|
||||||
|
|
||||||
|
func callbackBeforeSendSingleMsg(msg *pbChat.SendMsgReq) (canSend bool, err error) {
|
||||||
|
log.NewDebug(msg.OperationID, utils.GetSelfFuncName(), msg)
|
||||||
|
if !config.Config.Callback.CallbackbeforeSendSingleMsg.Enable {
|
||||||
|
return true, nil
|
||||||
|
}
|
||||||
|
req := cbApi.CallbackBeforeSendSingleMsgReq{CommonCallbackReq:cbApi.CommonCallbackReq{
|
||||||
|
}}
|
||||||
|
resp := &cbApi.CallbackBeforeSendSingleMsgResp{CommonCallbackResp:cbApi.CommonCallbackResp{
|
||||||
|
}}
|
||||||
|
defer log.NewDebug(msg.OperationID, utils.GetSelfFuncName(), req, resp)
|
||||||
|
utils.CopyStructFields(req, msg.MsgData)
|
||||||
|
if err := http.PostReturn(config.Config.Callback.CallbackUrl, req, resp, config.Config.Callback.CallbackbeforeSendSingleMsg.CallbackTimeOut); err != nil{
|
||||||
|
if !config.Config.Callback.CallbackbeforeSendSingleMsg.CallbackFailedContinue {
|
||||||
|
return false, err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if resp.ActionCode == constant.ActionForbidden {
|
||||||
|
return false, nil
|
||||||
|
}
|
||||||
|
return true, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
func callbackAfterSendSingleMsg(msg *pbChat.SendMsgReq) error {
|
||||||
|
log.NewDebug(msg.OperationID, utils.GetSelfFuncName(), msg)
|
||||||
|
if !config.Config.Callback.CallbackAfterSendSingleMsg.Enable {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
req := cbApi.CallbackAfterSendSingleMsgReq{CommonCallbackReq: cbApi.CommonCallbackReq{}}
|
||||||
|
resp := &cbApi.CallbackAfterSendSingleMsgResp{CommonCallbackResp: cbApi.CommonCallbackResp{}}
|
||||||
|
defer log.NewDebug(msg.OperationID, utils.GetSelfFuncName(), req, resp)
|
||||||
|
utils.CopyStructFields(req, msg.MsgData)
|
||||||
|
if err := http.PostReturn(config.Config.Callback.CallbackUrl, req, resp, config.Config.Callback.CallbackAfterSendSingleMsg.CallbackTimeOut); err != nil{
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
func callbackBeforeSendGroupMsg(msg *pbChat.SendMsgReq) (canSend bool, err error) {
|
||||||
|
log.NewDebug(msg.OperationID, utils.GetSelfFuncName(), msg)
|
||||||
|
if !config.Config.Callback.CallbackBeforeSendGroupMsg.Enable {
|
||||||
|
return true, nil
|
||||||
|
}
|
||||||
|
req := cbApi.CallbackBeforeSendSingleMsgReq{CommonCallbackReq: cbApi.CommonCallbackReq{}}
|
||||||
|
resp := &cbApi.CallbackBeforeSendGroupMsgResp{CommonCallbackResp: cbApi.CommonCallbackResp{}}
|
||||||
|
defer log.NewDebug(msg.OperationID, utils.GetSelfFuncName(), req, resp)
|
||||||
|
utils.CopyStructFields(req, msg.MsgData)
|
||||||
|
if err := http.PostReturn(config.Config.Callback.CallbackUrl, req, resp, config.Config.Callback.CallbackBeforeSendGroupMsg.CallbackTimeOut); err != nil {
|
||||||
|
if !config.Config.Callback.CallbackBeforeSendGroupMsg.CallbackFailedContinue {
|
||||||
|
return false, nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if resp.ActionCode == constant.ActionForbidden {
|
||||||
|
return false, nil
|
||||||
|
}
|
||||||
|
return true, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func callbackAfterSendGroupMsg(msg *pbChat.SendMsgReq) error {
|
||||||
|
log.NewDebug(msg.OperationID, utils.GetSelfFuncName(), msg)
|
||||||
|
if !config.Config.Callback.CallbackAfterSendGroupMsg.Enable {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
req := cbApi.CallbackAfterSendGroupMsgReq{CommonCallbackReq: cbApi.CommonCallbackReq{}}
|
||||||
|
resp := &cbApi.CallbackAfterSendGroupMsgResp{CommonCallbackResp: cbApi.CommonCallbackResp{}}
|
||||||
|
defer log.NewDebug(msg.OperationID, utils.GetSelfFuncName(), req, resp)
|
||||||
|
utils.CopyStructFields(req, msg.MsgData)
|
||||||
|
if err := http.PostReturn(config.Config.Callback.CallbackUrl, req, resp, config.Config.Callback.CallbackAfterSendGroupMsg.CallbackTimeOut); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
func callBackWordFilter(msg *pbChat.SendMsgReq) (canSend bool, err error) {
|
||||||
|
log.NewDebug(msg.OperationID, utils.GetSelfFuncName(), msg)
|
||||||
|
if !config.Config.Callback.CallbackWordFilter.Enable || msg.MsgData.ContentType != constant.Text {
|
||||||
|
return true, nil
|
||||||
|
}
|
||||||
|
req := cbApi.CallbackWordFilterReq{CommonCallbackReq: cbApi.CommonCallbackReq{}}
|
||||||
|
resp := &cbApi.CallbackWordFilterResp{CommonCallbackResp: cbApi.CommonCallbackResp{}}
|
||||||
|
defer log.NewDebug(msg.OperationID, utils.GetSelfFuncName(), req, resp)
|
||||||
|
utils.CopyStructFields(&req, msg.MsgData)
|
||||||
|
if err := http.PostReturn(msg.OperationID, req, resp, config.Config.Callback.CallbackWordFilter.CallbackTimeOut); err != nil {
|
||||||
|
if !config.Config.Callback.CallbackWordFilter.CallbackFailedContinue {
|
||||||
|
return false, err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if resp.ActionCode == constant.ActionForbidden {
|
||||||
|
return false, nil
|
||||||
|
}
|
||||||
|
msg.MsgData.Content = resp.Content
|
||||||
|
return true, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
package user
|
@ -0,0 +1 @@
|
|||||||
|
package utils
|
@ -1 +1,17 @@
|
|||||||
package call_back_struct
|
package call_back_struct
|
||||||
|
|
||||||
|
type CommonCallbackReq struct {
|
||||||
|
CallbackCommand string `json:"callbackCommand"`
|
||||||
|
ServerMsgID string `json:"serverID"`
|
||||||
|
ClientID string `json:"clientID"`
|
||||||
|
OperationID string `json:"operationID"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type CommonCallbackResp struct {
|
||||||
|
ActionCode int `json:"actionCode"`
|
||||||
|
ErrCode int `json:"errCode"`
|
||||||
|
ErrMsg string `json:"errMsg"`
|
||||||
|
OperationID string `json:"operationID"`
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -0,0 +1,9 @@
|
|||||||
|
package call_back_struct
|
||||||
|
|
||||||
|
type CallbackBeforeCreateGroupReq struct {
|
||||||
|
CommonCallbackReq
|
||||||
|
}
|
||||||
|
|
||||||
|
type CallbackAfterCreateGroupResp struct {
|
||||||
|
CommonCallbackResp
|
||||||
|
}
|
@ -1 +1,67 @@
|
|||||||
package call_back_struct
|
package call_back_struct
|
||||||
|
|
||||||
|
type msg struct {
|
||||||
|
SendID string `json:"sendID"`
|
||||||
|
ClientMsgID string `json:"clientMsgID"`
|
||||||
|
ServerMsgID string `json:"serverMsgId"`
|
||||||
|
CreateTime int64 `json:"createTime"`
|
||||||
|
Content []byte `json:"content"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type singleMsg struct {
|
||||||
|
msg
|
||||||
|
RecvID string `json:"recvID"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type CallbackBeforeSendSingleMsgReq struct {
|
||||||
|
CommonCallbackReq
|
||||||
|
singleMsg
|
||||||
|
}
|
||||||
|
|
||||||
|
type CallbackBeforeSendSingleMsgResp struct {
|
||||||
|
CommonCallbackResp
|
||||||
|
singleMsg
|
||||||
|
}
|
||||||
|
|
||||||
|
type CallbackAfterSendSingleMsgReq struct {
|
||||||
|
CommonCallbackReq
|
||||||
|
singleMsg
|
||||||
|
}
|
||||||
|
|
||||||
|
type CallbackAfterSendSingleMsgResp struct {
|
||||||
|
CommonCallbackResp
|
||||||
|
}
|
||||||
|
|
||||||
|
type groupMsg struct {
|
||||||
|
msg
|
||||||
|
GroupID string `json:"groupID"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type CallbackBeforeSendGroupMsgReq struct {
|
||||||
|
CommonCallbackReq
|
||||||
|
groupMsg
|
||||||
|
}
|
||||||
|
|
||||||
|
type CallbackBeforeSendGroupMsgResp struct {
|
||||||
|
CommonCallbackResp
|
||||||
|
groupMsg
|
||||||
|
}
|
||||||
|
|
||||||
|
type CallbackAfterSendGroupMsgReq struct {
|
||||||
|
groupMsg
|
||||||
|
CommonCallbackReq
|
||||||
|
}
|
||||||
|
|
||||||
|
type CallbackAfterSendGroupMsgResp struct {
|
||||||
|
CommonCallbackResp
|
||||||
|
}
|
||||||
|
|
||||||
|
type CallbackWordFilterReq struct {
|
||||||
|
CommonCallbackReq
|
||||||
|
Content []byte `json:"content"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type CallbackWordFilterResp struct {
|
||||||
|
CommonCallbackResp
|
||||||
|
Content []byte `json:"content"`
|
||||||
|
}
|
||||||
|
Loading…
Reference in new issue