mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-10-31 16:32:12 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			777 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			777 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package msg
 | |
| 
 | |
| import (
 | |
| 	"Open_IM/pkg/common/constant"
 | |
| 	"Open_IM/pkg/common/db"
 | |
| 	"Open_IM/pkg/common/log"
 | |
| 	commonPb "Open_IM/pkg/proto/sdk_ws"
 | |
| 	"Open_IM/pkg/utils"
 | |
| 	"context"
 | |
| )
 | |
| 
 | |
| func (rpc *rpcChat) DelMsgList(_ context.Context, req *commonPb.DelMsgListReq) (*commonPb.DelMsgListResp, error) {
 | |
| 	log.NewInfo(req.OperationID, utils.GetSelfFuncName(), "req: ", req.String())
 | |
| 	resp := &commonPb.DelMsgListResp{}
 | |
| 	if err := db.DB.DelMsgLogic(req.UserID, req.SeqList, req.OperationID); err != nil {
 | |
| 		log.NewError(req.OperationID, utils.GetSelfFuncName(), "DelMsg failed", err.Error())
 | |
| 		resp.ErrMsg = constant.ErrDB.ErrMsg
 | |
| 		resp.ErrCode = constant.ErrDB.ErrCode
 | |
| 		return resp, nil
 | |
| 	}
 | |
| 	log.NewInfo(req.OperationID, utils.GetSelfFuncName(), "resp: ", resp.String())
 | |
| 	return resp, nil
 | |
| }
 |