2023-07-09 11:16:52 +00:00
|
|
|
package routes
|
|
|
|
|
|
|
|
import "go.mau.fi/mautrix-gmessages/libgm/binary"
|
|
|
|
|
|
|
|
var IS_BUGLE_DEFAULT = Route{
|
|
|
|
Action: binary.ActionType_IS_BUGLE_DEFAULT,
|
|
|
|
MessageType: binary.MessageType_BUGLE_MESSAGE,
|
|
|
|
BugleRoute: binary.BugleRoute_DataEvent,
|
|
|
|
ResponseStruct: &binary.IsBugleDefaultResponse{},
|
|
|
|
UseSessionID: false,
|
|
|
|
UseTTL: true,
|
|
|
|
}
|
|
|
|
|
|
|
|
var GET_UPDATES = Route{
|
|
|
|
Action: binary.ActionType_GET_UPDATES,
|
|
|
|
MessageType: binary.MessageType_BUGLE_MESSAGE,
|
|
|
|
BugleRoute: binary.BugleRoute_DataEvent,
|
|
|
|
ResponseStruct: &binary.UpdateEvents{},
|
|
|
|
UseSessionID: true,
|
|
|
|
UseTTL: false,
|
|
|
|
}
|
|
|
|
|
|
|
|
var NOTIFY_DITTO_ACTIVITY = Route{
|
|
|
|
Action: binary.ActionType_NOTIFY_DITTO_ACTIVITY,
|
|
|
|
MessageType: binary.MessageType_BUGLE_MESSAGE,
|
|
|
|
BugleRoute: binary.BugleRoute_DataEvent,
|
|
|
|
ResponseStruct: nil,
|
|
|
|
UseSessionID: false,
|
|
|
|
UseTTL: true,
|
|
|
|
}
|
2023-07-16 21:51:17 +00:00
|
|
|
|
|
|
|
var LIST_CONTACTS = Route{
|
|
|
|
Action: binary.ActionType_LIST_CONTACTS,
|
|
|
|
MessageType: binary.MessageType_BUGLE_MESSAGE,
|
|
|
|
BugleRoute: binary.BugleRoute_DataEvent,
|
|
|
|
ResponseStruct: &binary.ListContactsResponse{},
|
|
|
|
UseSessionID: false,
|
|
|
|
UseTTL: true,
|
|
|
|
}
|
|
|
|
|
|
|
|
var LIST_TOP_CONTACTS = Route{
|
|
|
|
Action: binary.ActionType_LIST_TOP_CONTACTS,
|
|
|
|
MessageType: binary.MessageType_BUGLE_MESSAGE,
|
|
|
|
BugleRoute: binary.BugleRoute_DataEvent,
|
|
|
|
ResponseStruct: &binary.ListTopContactsResponse{},
|
|
|
|
UseSessionID: false,
|
|
|
|
UseTTL: true,
|
|
|
|
}
|
|
|
|
|
|
|
|
var GET_OR_CREATE_CONVERSATION = Route{
|
|
|
|
Action: binary.ActionType_GET_OR_CREATE_CONVERSATION,
|
|
|
|
MessageType: binary.MessageType_BUGLE_MESSAGE,
|
|
|
|
BugleRoute: binary.BugleRoute_DataEvent,
|
|
|
|
ResponseStruct: &binary.GetOrCreateConversationResponse{},
|
|
|
|
UseSessionID: false,
|
|
|
|
UseTTL: true,
|
|
|
|
}
|