mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-11-01 00:42:13 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			62 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Protocol Buffer
		
	
	
	
	
	
| syntax = "proto3";
 | |
| import "Open_IM/pkg/proto/sdk_ws/ws.proto";
 | |
| option go_package = "./relay;pbRelay";
 | |
| package relay;
 | |
| 
 | |
| message OnlinePushMsgReq {
 | |
|   string OperationID = 1;
 | |
|   server_api_params.MsgData msgData = 2;
 | |
|   string pushToUserID = 3;
 | |
| }
 | |
| message OnlinePushMsgResp{
 | |
| repeated SingleMsgToUser resp = 1;
 | |
| }//message SendMsgByWSReq{
 | |
| //  string SendID = 1;
 | |
| //  string RecvID = 2;
 | |
| //  string Content = 3;
 | |
| //  int64 SendTime = 4;
 | |
| //  int64  MsgFrom = 5;
 | |
| //  int64  ContentType = 6;
 | |
| //  int64  SessionType = 7;
 | |
| //  string OperationID = 8;
 | |
| //  int64  PlatformID = 9;
 | |
| //}
 | |
| 
 | |
| message SingleMsgToUser{
 | |
|   int64   ResultCode = 1;
 | |
|   string  RecvID = 2;
 | |
|   int32   RecvPlatFormID = 3;
 | |
| }
 | |
| message GetUsersOnlineStatusReq{
 | |
|   repeated string  userIDList = 1;
 | |
|   string  operationID = 2;
 | |
|   string opUserID = 3;
 | |
| }
 | |
| message GetUsersOnlineStatusResp{
 | |
|   int32  errCode = 1;
 | |
|   string errMsg = 2;
 | |
|   repeated SuccessResult successResult = 3;
 | |
|   repeated FailedDetail failedResult = 4;
 | |
|   message SuccessDetail{
 | |
|     string platform = 1;
 | |
|     string status = 2;
 | |
|   }
 | |
|   message FailedDetail{
 | |
|     string userID = 3;
 | |
|     int32  errCode = 1;
 | |
|     string errMsg = 2;
 | |
|   }
 | |
|   message SuccessResult{
 | |
|     string userID = 1;
 | |
|     string status = 2;
 | |
|     repeated SuccessDetail detailPlatformStatus = 3;
 | |
| 
 | |
|   }
 | |
| }
 | |
| service OnlineMessageRelayService {
 | |
|   rpc OnlinePushMsg(OnlinePushMsgReq) returns(OnlinePushMsgResp);
 | |
|   rpc GetUsersOnlineStatus(GetUsersOnlineStatusReq)returns(GetUsersOnlineStatusResp);
 | |
| //  rpc SendMsgByWS(SendMsgByWSReq)  returns(MsgToUserResp);
 | |
| }
 | |
| 
 |