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.
207 lines
5.5 KiB
207 lines
5.5 KiB
// Copyright © 2023 OpenIM SDK. All rights reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package common
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"github.com/openimsdk/openim-sdk-core/v3/pkg/constant"
|
|
"github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
|
|
"github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
|
|
"time"
|
|
|
|
"github.com/openimsdk/tools/log"
|
|
|
|
"github.com/openimsdk/protocol/sdkws"
|
|
)
|
|
|
|
func TriggerCmdJoinedSuperGroup(cmd sdk_struct.CmdJoinedSuperGroup, joinedSuperGroupCh chan Cmd2Value) error {
|
|
if joinedSuperGroupCh == nil {
|
|
return utils.Wrap(errors.New("ch == nil"), "")
|
|
}
|
|
c2v := Cmd2Value{Cmd: constant.CmdJoinedSuperGroup, Value: cmd}
|
|
return sendCmd(joinedSuperGroupCh, c2v, 100)
|
|
}
|
|
|
|
func TriggerCmdNewMsgCome(ctx context.Context, msg sdk_struct.CmdNewMsgComeToConversation, conversationCh chan Cmd2Value) error {
|
|
if conversationCh == nil {
|
|
return utils.Wrap(errors.New("ch == nil"), "")
|
|
}
|
|
|
|
c2v := Cmd2Value{Cmd: constant.CmdNewMsgCome, Value: msg, Ctx: ctx}
|
|
return sendCmd(conversationCh, c2v, 100)
|
|
}
|
|
|
|
func TriggerCmdNotification(ctx context.Context, msg sdk_struct.CmdNewMsgComeToConversation, conversationCh chan Cmd2Value) {
|
|
c2v := Cmd2Value{Cmd: constant.CmdNotification, Value: msg, Ctx: ctx}
|
|
err := sendCmd(conversationCh, c2v, 100)
|
|
if err != nil {
|
|
log.ZWarn(ctx, "TriggerCmdNotification error", err, "msg", msg)
|
|
}
|
|
}
|
|
|
|
func TriggerCmdWakeUp(ch chan Cmd2Value) error {
|
|
if ch == nil {
|
|
return utils.Wrap(errors.New("ch == nil"), "")
|
|
}
|
|
c2v := Cmd2Value{Cmd: constant.CmdWakeUp, Value: nil}
|
|
return sendCmd(ch, c2v, 100)
|
|
}
|
|
|
|
func TriggerCmdSyncReactionExtensions(node SyncReactionExtensionsNode, conversationCh chan Cmd2Value) error {
|
|
if conversationCh == nil {
|
|
return utils.Wrap(errors.New("ch == nil"), "")
|
|
}
|
|
c2v := Cmd2Value{
|
|
Cmd: constant.CmSyncReactionExtensions,
|
|
Value: node,
|
|
}
|
|
|
|
return sendCmd(conversationCh, c2v, 100)
|
|
}
|
|
|
|
func TriggerCmdUpdateConversation(ctx context.Context, node UpdateConNode, conversationCh chan<- Cmd2Value) error {
|
|
c2v := Cmd2Value{
|
|
Cmd: constant.CmdUpdateConversation,
|
|
Value: node,
|
|
Ctx: ctx,
|
|
}
|
|
|
|
return sendCmd(conversationCh, c2v, 100)
|
|
}
|
|
|
|
func TriggerCmdUpdateMessage(ctx context.Context, node UpdateMessageNode, conversationCh chan Cmd2Value) error {
|
|
c2v := Cmd2Value{
|
|
Cmd: constant.CmdUpdateMessage,
|
|
Value: node,
|
|
Ctx: ctx,
|
|
}
|
|
|
|
return sendCmd(conversationCh, c2v, 100)
|
|
}
|
|
|
|
// Push message, msg for msgData slice
|
|
func TriggerCmdPushMsg(ctx context.Context, msg *sdkws.PushMessages, ch chan Cmd2Value) error {
|
|
if ch == nil {
|
|
return utils.Wrap(errors.New("ch == nil"), "")
|
|
}
|
|
|
|
c2v := Cmd2Value{Cmd: constant.CmdPushMsg, Value: msg, Ctx: ctx}
|
|
return sendCmd(ch, c2v, 100)
|
|
}
|
|
|
|
// seq trigger
|
|
func TriggerCmdMaxSeq(ctx context.Context, seq *sdk_struct.CmdMaxSeqToMsgSync, ch chan Cmd2Value) error {
|
|
if ch == nil {
|
|
return utils.Wrap(errors.New("ch == nil"), "")
|
|
}
|
|
c2v := Cmd2Value{Cmd: constant.CmdMaxSeq, Value: seq, Ctx: ctx}
|
|
return sendCmd(ch, c2v, 100)
|
|
}
|
|
|
|
func TriggerCmdLogOut(ctx context.Context, ch chan Cmd2Value) error {
|
|
if ch == nil {
|
|
return utils.Wrap(errors.New("ch == nil"), "")
|
|
}
|
|
c2v := Cmd2Value{Cmd: constant.CmdLogOut, Ctx: ctx}
|
|
return sendCmd(ch, c2v, 100)
|
|
}
|
|
|
|
// Connection success trigger
|
|
func TriggerCmdConnected(ctx context.Context, ch chan Cmd2Value) error {
|
|
if ch == nil {
|
|
return utils.Wrap(errors.New("ch == nil"), "")
|
|
}
|
|
c2v := Cmd2Value{Cmd: constant.CmdConnSuccesss, Value: nil, Ctx: ctx}
|
|
return sendCmd(ch, c2v, 100)
|
|
}
|
|
|
|
type DeleteConNode struct {
|
|
SourceID string
|
|
ConversationID string
|
|
SessionType int
|
|
}
|
|
type SyncReactionExtensionsNode struct {
|
|
OperationID string
|
|
Action int
|
|
Args interface{}
|
|
}
|
|
type UpdateConNode struct {
|
|
ConID string
|
|
Action int //1 Delete the conversation; 2 Update the latest news in the conversation or add a conversation; 3 Put a conversation on the top;
|
|
// 4 Cancel a conversation on the top, 5 Messages are not read and set to 0, 6 New conversations
|
|
Args interface{}
|
|
}
|
|
type UpdateMessageNode struct {
|
|
Action int
|
|
Args interface{}
|
|
}
|
|
|
|
type Cmd2Value struct {
|
|
Cmd string
|
|
Value interface{}
|
|
Ctx context.Context
|
|
}
|
|
type UpdateConInfo struct {
|
|
UserID string
|
|
GroupID string
|
|
}
|
|
type UpdateMessageInfo struct {
|
|
SessionType int32
|
|
UserID string
|
|
FaceURL string
|
|
Nickname string
|
|
GroupID string
|
|
}
|
|
|
|
type SourceIDAndSessionType struct {
|
|
SourceID string
|
|
SessionType int32
|
|
FaceURL string
|
|
Nickname string
|
|
}
|
|
|
|
func UnInitAll(conversationCh chan Cmd2Value) error {
|
|
c2v := Cmd2Value{Cmd: constant.CmdUnInit}
|
|
return sendCmd(conversationCh, c2v, 100)
|
|
}
|
|
|
|
type goroutine interface {
|
|
Work(cmd Cmd2Value)
|
|
GetCh() chan Cmd2Value
|
|
//GetContext() context.Context
|
|
}
|
|
|
|
func DoListener(Li goroutine, ctx context.Context) {
|
|
for {
|
|
select {
|
|
case cmd := <-Li.GetCh():
|
|
Li.Work(cmd)
|
|
case <-ctx.Done():
|
|
log.ZInfo(ctx, "conversation done sdk logout.....")
|
|
return
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
func sendCmd(ch chan<- Cmd2Value, value Cmd2Value, timeout int64) error {
|
|
select {
|
|
case ch <- value:
|
|
return nil
|
|
case <-time.After(time.Millisecond * time.Duration(timeout)):
|
|
return errors.New("send cmd timeout")
|
|
}
|
|
}
|
|
|