2023-07-04 11:15:20 +08:00
// Copyright © 2023 OpenIM. 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.
2023-06-30 09:45:02 +08:00
package relation
import (
2023-10-23 16:24:55 +08:00
//nolint:staticcheck //tofix: SA1019: "github.com/golang/protobuf/jsonpb" is deprecated: Use the "google.golang.org/protobuf/encoding/protojson" package instead.
2023-07-03 16:29:22 +08:00
"github.com/golang/protobuf/jsonpb"
"github.com/jinzhu/copier"
"google.golang.org/protobuf/proto"
"gorm.io/gorm"
2023-07-26 19:45:23 +08:00
"github.com/OpenIMSDK/protocol/constant"
2023-08-23 16:45:52 +08:00
pbmsg "github.com/OpenIMSDK/protocol/msg"
2023-07-25 20:13:32 +08:00
sdkws "github.com/OpenIMSDK/protocol/sdkws"
"github.com/OpenIMSDK/tools/utils"
2023-08-04 21:38:30 +08:00
2023-09-07 19:04:36 +08:00
"github.com/openimsdk/open-im-server/v3/pkg/common/db/table/relation"
2023-06-30 09:45:02 +08:00
)
type ChatLogGorm struct {
* MetaDB
}
func NewChatLogGorm ( db * gorm . DB ) relation . ChatLogModelInterface {
return & ChatLogGorm { NewMetaDB ( db , & relation . ChatLogModel { } ) }
}
2023-08-23 16:45:52 +08:00
func ( c * ChatLogGorm ) Create ( msg * pbmsg . MsgDataToMQ ) error {
2023-06-30 09:45:02 +08:00
chatLog := new ( relation . ChatLogModel )
2023-10-23 16:24:55 +08:00
err := copier . Copy ( chatLog , msg . MsgData )
if err != nil {
return err
}
2023-06-30 09:45:02 +08:00
switch msg . MsgData . SessionType {
case constant . GroupChatType , constant . SuperGroupChatType :
chatLog . RecvID = msg . MsgData . GroupID
case constant . SingleChatType :
chatLog . RecvID = msg . MsgData . RecvID
}
if msg . MsgData . ContentType >= constant . NotificationBegin && msg . MsgData . ContentType <= constant . NotificationEnd {
var tips sdkws . TipsComm
_ = proto . Unmarshal ( msg . MsgData . Content , & tips )
marshaler := jsonpb . Marshaler {
OrigName : true ,
EnumsAsInts : false ,
EmitDefaults : false ,
}
chatLog . Content , _ = marshaler . MarshalToString ( & tips )
} else {
chatLog . Content = string ( msg . MsgData . Content )
}
chatLog . CreateTime = utils . UnixMillSecondToTime ( msg . MsgData . CreateTime )
chatLog . SendTime = utils . UnixMillSecondToTime ( msg . MsgData . SendTime )
2023-10-23 16:24:55 +08:00
2023-06-30 09:45:02 +08:00
return c . DB . Create ( chatLog ) . Error
}