@@ -17,6 +17,10 @@ package conversation_msg
17
17
import (
18
18
"context"
19
19
"errors"
20
+ "sort"
21
+ "strings"
22
+ "time"
23
+
20
24
_ "github.com/openimsdk/openim-sdk-core/v3/internal/common"
21
25
"github.com/openimsdk/openim-sdk-core/v3/internal/util"
22
26
"github.com/openimsdk/openim-sdk-core/v3/pkg/common"
@@ -28,9 +32,6 @@ import (
28
32
"github.com/openimsdk/openim-sdk-core/v3/pkg/utils"
29
33
"github.com/openimsdk/openim-sdk-core/v3/sdk_struct"
30
34
"github.com/openimsdk/tools/utils/datautil"
31
- "sort"
32
- "strings"
33
- "time"
34
35
35
36
"github.com/jinzhu/copier"
36
37
@@ -247,7 +248,7 @@ func (c *Conversation) typingStatusUpdate(ctx context.Context, recvID, msgTip st
247
248
248
249
}
249
250
250
- // funcation (c *Conversation) markMessageAsReadByConID(callback open_im_sdk_callback.Base, msgIDList sdk.MarkMessageAsReadByConIDParams, conversationID, operationID string) {
251
+ // func (c *Conversation) markMessageAsReadByConID(callback open_im_sdk_callback.Base, msgIDList sdk.MarkMessageAsReadByConIDParams, conversationID, operationID string) {
251
252
// var localMessage db.LocalChatLog
252
253
// var newMessageIDList []string
253
254
// messages, err := c.db.GetMultipleMessage(msgIDList)
@@ -561,7 +562,7 @@ func (c *Conversation) delMsgBySeqSplit(seqList []uint32) error {
561
562
}
562
563
563
564
// old WS method
564
- //funcation (c *Conversation) deleteMessageFromSvr(callback open_im_sdk_callback.Base, s *sdk_struct.MsgStruct, operationID string) {
565
+ //func (c *Conversation) deleteMessageFromSvr(callback open_im_sdk_callback.Base, s *sdk_struct.MsgStruct, operationID string) {
565
566
// seq, err := c.db.GetMsgSeqByClientMsgID(s.ClientMsgID)
566
567
// common.CheckDBErrCallback(callback, err, operationID)
567
568
// if seq == 0 {
@@ -879,7 +880,7 @@ func (c *Conversation) getMessageListReactionExtensions(ctx context.Context, con
879
880
880
881
}
881
882
882
- // funcation (c *Conversation) getMessageListSomeReactionExtensions(callback open_im_sdk_callback.Base, messageList []*sdk_struct.MsgStruct, keyList []string, operationID string) server_api_params.GetMessageListReactionExtensionsResp {
883
+ // func (c *Conversation) getMessageListSomeReactionExtensions(callback open_im_sdk_callback.Base, messageList []*sdk_struct.MsgStruct, keyList []string, operationID string) server_api_params.GetMessageListReactionExtensionsResp {
883
884
// if len(messageList) == 0 {
884
885
// common.CheckAnyErrCallback(callback, 201, errors.New("message list is null"), operationID)
885
886
// }
@@ -936,7 +937,7 @@ func (c *Conversation) getMessageListReactionExtensions(ctx context.Context, con
936
937
// return result
937
938
// }
938
939
//
939
- // funcation (c *Conversation) setTypeKeyInfo(callback open_im_sdk_callback.Base, s *sdk_struct.MsgStruct, typeKey, ex string, isCanRepeat bool, operationID string) []*server_api_params.ExtensionResult {
940
+ // func (c *Conversation) setTypeKeyInfo(callback open_im_sdk_callback.Base, s *sdk_struct.MsgStruct, typeKey, ex string, isCanRepeat bool, operationID string) []*server_api_params.ExtensionResult {
940
941
// message, err := c.db.GetMessageController(s)
941
942
// common.CheckDBErrCallback(callback, err, operationID)
942
943
// if message.Status != constant.MsgStatusSendSuccess {
@@ -1074,7 +1075,7 @@ func (c *Conversation) getMessageListReactionExtensions(ctx context.Context, con
1074
1075
// return apiResp.ApiResult.Result
1075
1076
// }
1076
1077
//
1077
- // funcation getIndexTypeKey(typeKey string, index int) string {
1078
+ // func getIndexTypeKey(typeKey string, index int) string {
1078
1079
// return typeKey + "$" + utils.IntToString(index)
1079
1080
// }
1080
1081
func getPrefixTypeKey (typeKey string ) string {
@@ -1085,7 +1086,7 @@ func getPrefixTypeKey(typeKey string) string {
1085
1086
return ""
1086
1087
}
1087
1088
1088
- //funcation (c *Conversation) getTypeKeyListInfo(callback open_im_sdk_callback.Base, s *sdk_struct.MsgStruct, keyList []string, operationID string) (result []*sdk.SingleTypeKeyInfoSum) {
1089
+ //func (c *Conversation) getTypeKeyListInfo(callback open_im_sdk_callback.Base, s *sdk_struct.MsgStruct, keyList []string, operationID string) (result []*sdk.SingleTypeKeyInfoSum) {
1089
1090
// message, err := c.db.GetMessageController(s)
1090
1091
// common.CheckDBErrCallback(callback, err, operationID)
1091
1092
// if message.Status != constant.MsgStatusSendSuccess {
@@ -1126,7 +1127,7 @@ func getPrefixTypeKey(typeKey string) string {
1126
1127
// return result
1127
1128
//}
1128
1129
//
1129
- //funcation (c *Conversation) getAllTypeKeyInfo(callback open_im_sdk_callback.Base, s *sdk_struct.MsgStruct, operationID string) (result []*sdk.SingleTypeKeyInfoSum) {
1130
+ //func (c *Conversation) getAllTypeKeyInfo(callback open_im_sdk_callback.Base, s *sdk_struct.MsgStruct, operationID string) (result []*sdk.SingleTypeKeyInfoSum) {
1130
1131
// message, err := c.db.GetMessageController(s)
1131
1132
// common.CheckDBErrCallback(callback, err, operationID)
1132
1133
// if message.Status != constant.MsgStatusSendSuccess {
0 commit comments