mirror of
https://github.com/Mrs4s/MiraiGo.git
synced 2025-05-05 03:23:50 +08:00
refactor: use new protobuf impl oidb0x8a7
This commit is contained in:
parent
a8760a5821
commit
a105f65e45
@ -5,6 +5,8 @@ import (
|
|||||||
"encoding/base64"
|
"encoding/base64"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"github.com/Mrs4s/MiraiGo/internal/protobuf/data/oidb/oidb0x8a7"
|
||||||
|
"go.dedis.ch/protobuf"
|
||||||
"math"
|
"math"
|
||||||
"math/rand"
|
"math/rand"
|
||||||
"strconv"
|
"strconv"
|
||||||
@ -284,7 +286,7 @@ func (c *QQClient) buildGetGroupMsgRequest(groupCode, beginSeq, endSeq int64) (u
|
|||||||
|
|
||||||
func (c *QQClient) buildAtAllRemainRequestPacket(groupCode int64) (uint16, []byte) {
|
func (c *QQClient) buildAtAllRemainRequestPacket(groupCode int64) (uint16, []byte) {
|
||||||
seq := c.nextSeq()
|
seq := c.nextSeq()
|
||||||
payload := c.packOIDBPackageProto(2215, 0, &oidb.D8A7ReqBody{
|
payload := c.packOIDBPackageProto2(2215, 0, &oidb0x8a7.ReqBody{
|
||||||
SubCmd: proto.Uint32(1),
|
SubCmd: proto.Uint32(1),
|
||||||
LimitIntervalTypeForUin: proto.Uint32(2),
|
LimitIntervalTypeForUin: proto.Uint32(2),
|
||||||
LimitIntervalTypeForGroup: proto.Uint32(1),
|
LimitIntervalTypeForGroup: proto.Uint32(1),
|
||||||
@ -403,11 +405,11 @@ func decodeGetGroupMsgResponse(c *QQClient, info *incomingPacketInfo, payload []
|
|||||||
|
|
||||||
func decodeAtAllRemainResponse(_ *QQClient, _ *incomingPacketInfo, payload []byte) (interface{}, error) {
|
func decodeAtAllRemainResponse(_ *QQClient, _ *incomingPacketInfo, payload []byte) (interface{}, error) {
|
||||||
pkg := oidb.OIDBSSOPkg{}
|
pkg := oidb.OIDBSSOPkg{}
|
||||||
rsp := oidb.D8A7RspBody{}
|
rsp := oidb0x8a7.RspBody{}
|
||||||
if err := proto.Unmarshal(payload, &pkg); err != nil {
|
if err := proto.Unmarshal(payload, &pkg); err != nil {
|
||||||
return nil, errors.Wrap(err, "failed to unmarshal protobuf message")
|
return nil, errors.Wrap(err, "failed to unmarshal protobuf message")
|
||||||
}
|
}
|
||||||
if err := proto.Unmarshal(pkg.Bodybuffer, &rsp); err != nil {
|
if err := protobuf.Decode(pkg.Bodybuffer, &rsp); err != nil {
|
||||||
return nil, errors.Wrap(err, "failed to unmarshal protobuf message")
|
return nil, errors.Wrap(err, "failed to unmarshal protobuf message")
|
||||||
}
|
}
|
||||||
return &AtAllRemainInfo{
|
return &AtAllRemainInfo{
|
||||||
|
@ -1,101 +0,0 @@
|
|||||||
syntax = "proto2";
|
|
||||||
|
|
||||||
option go_package = "./;oidb";
|
|
||||||
|
|
||||||
message GroupFileFeedsInfo {
|
|
||||||
optional uint32 busId = 1;
|
|
||||||
optional string fileId = 2;
|
|
||||||
optional uint32 msgRandom = 3;
|
|
||||||
optional bytes ext = 4;
|
|
||||||
optional uint32 feedFlag = 5;
|
|
||||||
}
|
|
||||||
|
|
||||||
message CopyFromReqBody {
|
|
||||||
optional uint64 groupCode = 1;
|
|
||||||
optional uint32 appId = 2;
|
|
||||||
optional uint32 srcBusId = 3;
|
|
||||||
optional bytes srcParentFolder = 4;
|
|
||||||
optional bytes srcFilePath = 5;
|
|
||||||
optional uint32 dstBusId = 6;
|
|
||||||
optional bytes dstFolderId = 7;
|
|
||||||
optional uint64 fileSize = 8;
|
|
||||||
optional string localPath = 9;
|
|
||||||
optional string fileName = 10;
|
|
||||||
optional uint64 srcUin = 11;
|
|
||||||
optional bytes md5 = 12;
|
|
||||||
}
|
|
||||||
|
|
||||||
message CopyFromRspBody {
|
|
||||||
optional int32 retCode = 1;
|
|
||||||
optional string retMsg = 2;
|
|
||||||
optional string clientWording = 3;
|
|
||||||
optional bytes saveFilePath = 4;
|
|
||||||
optional uint32 busId = 5;
|
|
||||||
}
|
|
||||||
|
|
||||||
message CopyToReqBody {
|
|
||||||
optional uint64 groupCode = 1;
|
|
||||||
optional uint32 appId = 2;
|
|
||||||
optional uint32 srcBusId = 3;
|
|
||||||
optional string srcFileId = 4;
|
|
||||||
optional uint32 dstBusId = 5;
|
|
||||||
optional uint64 dstUin = 6;
|
|
||||||
optional string newFileName = 40;
|
|
||||||
optional bytes timCloudPdirKey = 100;
|
|
||||||
optional bytes timCloudPpdirKey = 101;
|
|
||||||
optional bytes timCloudExtensionInfo = 102;
|
|
||||||
optional uint32 timFileExistOption = 103;
|
|
||||||
}
|
|
||||||
|
|
||||||
message CopyToRspBody {
|
|
||||||
optional int32 retCode = 1;
|
|
||||||
optional string retMsg = 2;
|
|
||||||
optional string clientWording = 3;
|
|
||||||
optional string saveFilePath = 4;
|
|
||||||
optional uint32 busId = 5;
|
|
||||||
optional string fileName = 40;
|
|
||||||
}
|
|
||||||
|
|
||||||
message FeedsReqBody {
|
|
||||||
optional uint64 groupCode = 1;
|
|
||||||
optional uint32 appId = 2;
|
|
||||||
repeated GroupFileFeedsInfo feedsInfoList = 3;
|
|
||||||
optional uint32 multiSendSeq = 4;
|
|
||||||
}
|
|
||||||
|
|
||||||
message FeedsRspBody {
|
|
||||||
optional int32 retCode = 1;
|
|
||||||
optional string retMsg = 2;
|
|
||||||
optional string clientWording = 3;
|
|
||||||
//repeated C8639group_file_common.FeedsResult feedsResultList = 4;
|
|
||||||
optional uint32 svrbusyWaitTime = 5;
|
|
||||||
}
|
|
||||||
|
|
||||||
message ReqBody {
|
|
||||||
optional TransFileReqBody transFileReq = 1;
|
|
||||||
optional CopyFromReqBody copyFromReq = 2;
|
|
||||||
optional CopyToReqBody copyToReq = 3;
|
|
||||||
optional FeedsReqBody feedsInfoReq = 5;
|
|
||||||
}
|
|
||||||
|
|
||||||
message RspBody {
|
|
||||||
optional TransFileRspBody transFileRsp = 1;
|
|
||||||
optional CopyFromRspBody copyFromRsp = 2;
|
|
||||||
optional CopyToRspBody copyToRsp = 3;
|
|
||||||
optional FeedsRspBody feedsInfoRsp = 5;
|
|
||||||
}
|
|
||||||
|
|
||||||
message TransFileReqBody {
|
|
||||||
optional uint64 groupCode = 1;
|
|
||||||
optional uint32 appId = 2;
|
|
||||||
optional uint32 busId = 3;
|
|
||||||
optional string fileId = 4;
|
|
||||||
}
|
|
||||||
|
|
||||||
message TransFileRspBody {
|
|
||||||
optional int32 retCode = 1;
|
|
||||||
optional string retMsg = 2;
|
|
||||||
optional string clientWording = 3;
|
|
||||||
optional uint32 saveBusId = 4;
|
|
||||||
optional string saveFilePath = 5;
|
|
||||||
}
|
|
@ -1,290 +0,0 @@
|
|||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.26.0
|
|
||||||
// protoc v3.17.1
|
|
||||||
// source: oidb0x8a7.proto
|
|
||||||
|
|
||||||
package oidb
|
|
||||||
|
|
||||||
import (
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
)
|
|
||||||
|
|
||||||
const (
|
|
||||||
// Verify that this generated code is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
||||||
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
||||||
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
||||||
)
|
|
||||||
|
|
||||||
type D8A7ReqBody struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
SubCmd *uint32 `protobuf:"varint,1,opt,name=subCmd" json:"subCmd,omitempty"`
|
|
||||||
LimitIntervalTypeForUin *uint32 `protobuf:"varint,2,opt,name=limitIntervalTypeForUin" json:"limitIntervalTypeForUin,omitempty"`
|
|
||||||
LimitIntervalTypeForGroup *uint32 `protobuf:"varint,3,opt,name=limitIntervalTypeForGroup" json:"limitIntervalTypeForGroup,omitempty"`
|
|
||||||
Uin *uint64 `protobuf:"varint,4,opt,name=uin" json:"uin,omitempty"`
|
|
||||||
GroupCode *uint64 `protobuf:"varint,5,opt,name=groupCode" json:"groupCode,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *D8A7ReqBody) Reset() {
|
|
||||||
*x = D8A7ReqBody{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_oidb0x8a7_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *D8A7ReqBody) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*D8A7ReqBody) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *D8A7ReqBody) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_oidb0x8a7_proto_msgTypes[0]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use D8A7ReqBody.ProtoReflect.Descriptor instead.
|
|
||||||
func (*D8A7ReqBody) Descriptor() ([]byte, []int) {
|
|
||||||
return file_oidb0x8a7_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *D8A7ReqBody) GetSubCmd() uint32 {
|
|
||||||
if x != nil && x.SubCmd != nil {
|
|
||||||
return *x.SubCmd
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *D8A7ReqBody) GetLimitIntervalTypeForUin() uint32 {
|
|
||||||
if x != nil && x.LimitIntervalTypeForUin != nil {
|
|
||||||
return *x.LimitIntervalTypeForUin
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *D8A7ReqBody) GetLimitIntervalTypeForGroup() uint32 {
|
|
||||||
if x != nil && x.LimitIntervalTypeForGroup != nil {
|
|
||||||
return *x.LimitIntervalTypeForGroup
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *D8A7ReqBody) GetUin() uint64 {
|
|
||||||
if x != nil && x.Uin != nil {
|
|
||||||
return *x.Uin
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *D8A7ReqBody) GetGroupCode() uint64 {
|
|
||||||
if x != nil && x.GroupCode != nil {
|
|
||||||
return *x.GroupCode
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
type D8A7RspBody struct {
|
|
||||||
state protoimpl.MessageState
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
|
|
||||||
CanAtAll *bool `protobuf:"varint,1,opt,name=canAtAll" json:"canAtAll,omitempty"`
|
|
||||||
RemainAtAllCountForUin *uint32 `protobuf:"varint,2,opt,name=remainAtAllCountForUin" json:"remainAtAllCountForUin,omitempty"`
|
|
||||||
RemainAtAllCountForGroup *uint32 `protobuf:"varint,3,opt,name=remainAtAllCountForGroup" json:"remainAtAllCountForGroup,omitempty"`
|
|
||||||
PromptMsg1 []byte `protobuf:"bytes,4,opt,name=promptMsg1" json:"promptMsg1,omitempty"`
|
|
||||||
PromptMsg2 []byte `protobuf:"bytes,5,opt,name=promptMsg2" json:"promptMsg2,omitempty"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *D8A7RspBody) Reset() {
|
|
||||||
*x = D8A7RspBody{}
|
|
||||||
if protoimpl.UnsafeEnabled {
|
|
||||||
mi := &file_oidb0x8a7_proto_msgTypes[1]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *D8A7RspBody) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*D8A7RspBody) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *D8A7RspBody) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_oidb0x8a7_proto_msgTypes[1]
|
|
||||||
if protoimpl.UnsafeEnabled && x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use D8A7RspBody.ProtoReflect.Descriptor instead.
|
|
||||||
func (*D8A7RspBody) Descriptor() ([]byte, []int) {
|
|
||||||
return file_oidb0x8a7_proto_rawDescGZIP(), []int{1}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *D8A7RspBody) GetCanAtAll() bool {
|
|
||||||
if x != nil && x.CanAtAll != nil {
|
|
||||||
return *x.CanAtAll
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *D8A7RspBody) GetRemainAtAllCountForUin() uint32 {
|
|
||||||
if x != nil && x.RemainAtAllCountForUin != nil {
|
|
||||||
return *x.RemainAtAllCountForUin
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *D8A7RspBody) GetRemainAtAllCountForGroup() uint32 {
|
|
||||||
if x != nil && x.RemainAtAllCountForGroup != nil {
|
|
||||||
return *x.RemainAtAllCountForGroup
|
|
||||||
}
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *D8A7RspBody) GetPromptMsg1() []byte {
|
|
||||||
if x != nil {
|
|
||||||
return x.PromptMsg1
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *D8A7RspBody) GetPromptMsg2() []byte {
|
|
||||||
if x != nil {
|
|
||||||
return x.PromptMsg2
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_oidb0x8a7_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
var file_oidb0x8a7_proto_rawDesc = []byte{
|
|
||||||
0x0a, 0x0f, 0x6f, 0x69, 0x64, 0x62, 0x30, 0x78, 0x38, 0x61, 0x37, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
|
||||||
0x6f, 0x22, 0xcd, 0x01, 0x0a, 0x0b, 0x44, 0x38, 0x41, 0x37, 0x52, 0x65, 0x71, 0x42, 0x6f, 0x64,
|
|
||||||
0x79, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x75, 0x62, 0x43, 0x6d, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
||||||
0x0d, 0x52, 0x06, 0x73, 0x75, 0x62, 0x43, 0x6d, 0x64, 0x12, 0x38, 0x0a, 0x17, 0x6c, 0x69, 0x6d,
|
|
||||||
0x69, 0x74, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x46, 0x6f,
|
|
||||||
0x72, 0x55, 0x69, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x17, 0x6c, 0x69, 0x6d, 0x69,
|
|
||||||
0x74, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x46, 0x6f, 0x72,
|
|
||||||
0x55, 0x69, 0x6e, 0x12, 0x3c, 0x0a, 0x19, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x49, 0x6e, 0x74, 0x65,
|
|
||||||
0x72, 0x76, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x46, 0x6f, 0x72, 0x47, 0x72, 0x6f, 0x75, 0x70,
|
|
||||||
0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x19, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x49, 0x6e, 0x74,
|
|
||||||
0x65, 0x72, 0x76, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x46, 0x6f, 0x72, 0x47, 0x72, 0x6f, 0x75,
|
|
||||||
0x70, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x03,
|
|
||||||
0x75, 0x69, 0x6e, 0x12, 0x1c, 0x0a, 0x09, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x6f, 0x64, 0x65,
|
|
||||||
0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x6f, 0x64,
|
|
||||||
0x65, 0x22, 0xdd, 0x01, 0x0a, 0x0b, 0x44, 0x38, 0x41, 0x37, 0x52, 0x73, 0x70, 0x42, 0x6f, 0x64,
|
|
||||||
0x79, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x61, 0x6e, 0x41, 0x74, 0x41, 0x6c, 0x6c, 0x18, 0x01, 0x20,
|
|
||||||
0x01, 0x28, 0x08, 0x52, 0x08, 0x63, 0x61, 0x6e, 0x41, 0x74, 0x41, 0x6c, 0x6c, 0x12, 0x36, 0x0a,
|
|
||||||
0x16, 0x72, 0x65, 0x6d, 0x61, 0x69, 0x6e, 0x41, 0x74, 0x41, 0x6c, 0x6c, 0x43, 0x6f, 0x75, 0x6e,
|
|
||||||
0x74, 0x46, 0x6f, 0x72, 0x55, 0x69, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x16, 0x72,
|
|
||||||
0x65, 0x6d, 0x61, 0x69, 0x6e, 0x41, 0x74, 0x41, 0x6c, 0x6c, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x46,
|
|
||||||
0x6f, 0x72, 0x55, 0x69, 0x6e, 0x12, 0x3a, 0x0a, 0x18, 0x72, 0x65, 0x6d, 0x61, 0x69, 0x6e, 0x41,
|
|
||||||
0x74, 0x41, 0x6c, 0x6c, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x46, 0x6f, 0x72, 0x47, 0x72, 0x6f, 0x75,
|
|
||||||
0x70, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x18, 0x72, 0x65, 0x6d, 0x61, 0x69, 0x6e, 0x41,
|
|
||||||
0x74, 0x41, 0x6c, 0x6c, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x46, 0x6f, 0x72, 0x47, 0x72, 0x6f, 0x75,
|
|
||||||
0x70, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6d, 0x70, 0x74, 0x4d, 0x73, 0x67, 0x31, 0x18,
|
|
||||||
0x04, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x70, 0x72, 0x6f, 0x6d, 0x70, 0x74, 0x4d, 0x73, 0x67,
|
|
||||||
0x31, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6d, 0x70, 0x74, 0x4d, 0x73, 0x67, 0x32, 0x18,
|
|
||||||
0x05, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x70, 0x72, 0x6f, 0x6d, 0x70, 0x74, 0x4d, 0x73, 0x67,
|
|
||||||
0x32, 0x42, 0x09, 0x5a, 0x07, 0x2e, 0x2f, 0x3b, 0x6f, 0x69, 0x64, 0x62,
|
|
||||||
}
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_oidb0x8a7_proto_rawDescOnce sync.Once
|
|
||||||
file_oidb0x8a7_proto_rawDescData = file_oidb0x8a7_proto_rawDesc
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_oidb0x8a7_proto_rawDescGZIP() []byte {
|
|
||||||
file_oidb0x8a7_proto_rawDescOnce.Do(func() {
|
|
||||||
file_oidb0x8a7_proto_rawDescData = protoimpl.X.CompressGZIP(file_oidb0x8a7_proto_rawDescData)
|
|
||||||
})
|
|
||||||
return file_oidb0x8a7_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_oidb0x8a7_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
|
|
||||||
var file_oidb0x8a7_proto_goTypes = []interface{}{
|
|
||||||
(*D8A7ReqBody)(nil), // 0: D8A7ReqBody
|
|
||||||
(*D8A7RspBody)(nil), // 1: D8A7RspBody
|
|
||||||
}
|
|
||||||
var file_oidb0x8a7_proto_depIdxs = []int32{
|
|
||||||
0, // [0:0] is the sub-list for method output_type
|
|
||||||
0, // [0:0] is the sub-list for method input_type
|
|
||||||
0, // [0:0] is the sub-list for extension type_name
|
|
||||||
0, // [0:0] is the sub-list for extension extendee
|
|
||||||
0, // [0:0] is the sub-list for field type_name
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() { file_oidb0x8a7_proto_init() }
|
|
||||||
func file_oidb0x8a7_proto_init() {
|
|
||||||
if File_oidb0x8a7_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if !protoimpl.UnsafeEnabled {
|
|
||||||
file_oidb0x8a7_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*D8A7ReqBody); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
file_oidb0x8a7_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
|
||||||
switch v := v.(*D8A7RspBody); i {
|
|
||||||
case 0:
|
|
||||||
return &v.state
|
|
||||||
case 1:
|
|
||||||
return &v.sizeCache
|
|
||||||
case 2:
|
|
||||||
return &v.unknownFields
|
|
||||||
default:
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: file_oidb0x8a7_proto_rawDesc,
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 2,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 0,
|
|
||||||
},
|
|
||||||
GoTypes: file_oidb0x8a7_proto_goTypes,
|
|
||||||
DependencyIndexes: file_oidb0x8a7_proto_depIdxs,
|
|
||||||
MessageInfos: file_oidb0x8a7_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_oidb0x8a7_proto = out.File
|
|
||||||
file_oidb0x8a7_proto_rawDesc = nil
|
|
||||||
file_oidb0x8a7_proto_goTypes = nil
|
|
||||||
file_oidb0x8a7_proto_depIdxs = nil
|
|
||||||
}
|
|
@ -1,18 +0,0 @@
|
|||||||
syntax = "proto2";
|
|
||||||
|
|
||||||
option go_package = "./;oidb";
|
|
||||||
|
|
||||||
message D8A7ReqBody {
|
|
||||||
optional uint32 subCmd = 1;
|
|
||||||
optional uint32 limitIntervalTypeForUin = 2;
|
|
||||||
optional uint32 limitIntervalTypeForGroup = 3;
|
|
||||||
optional uint64 uin = 4;
|
|
||||||
optional uint64 groupCode = 5;
|
|
||||||
}
|
|
||||||
message D8A7RspBody {
|
|
||||||
optional bool canAtAll = 1;
|
|
||||||
optional uint32 remainAtAllCountForUin = 2;
|
|
||||||
optional uint32 remainAtAllCountForGroup = 3;
|
|
||||||
optional bytes promptMsg1 = 4;
|
|
||||||
optional bytes promptMsg2 = 5;
|
|
||||||
}
|
|
97
internal/protobuf/data/oidb/oidb0x8a7/oidb0x8a7.go
Normal file
97
internal/protobuf/data/oidb/oidb0x8a7/oidb0x8a7.go
Normal file
@ -0,0 +1,97 @@
|
|||||||
|
// Code generated by Proto2Go.Net. Only used for MiraiGo. DO NOT EDIT.
|
||||||
|
// Source: oidb0x8a7.proto
|
||||||
|
|
||||||
|
package oidb0x8a7
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/pkg/errors"
|
||||||
|
"go.dedis.ch/protobuf"
|
||||||
|
)
|
||||||
|
|
||||||
|
type (
|
||||||
|
ReqBody struct {
|
||||||
|
SubCmd *uint32 `protobuf:"1,opt"`
|
||||||
|
LimitIntervalTypeForUin *uint32 `protobuf:"2,opt"`
|
||||||
|
LimitIntervalTypeForGroup *uint32 `protobuf:"3,opt"`
|
||||||
|
Uin *uint64 `protobuf:"4,opt"`
|
||||||
|
GroupCode *uint64 `protobuf:"5,opt"`
|
||||||
|
}
|
||||||
|
|
||||||
|
RspBody struct {
|
||||||
|
CanAtAll *bool `protobuf:"1,opt"`
|
||||||
|
RemainAtAllCountForUin *uint32 `protobuf:"2,opt"`
|
||||||
|
RemainAtAllCountForGroup *uint32 `protobuf:"3,opt"`
|
||||||
|
PromptMsg1 []byte `protobuf:"4,opt"`
|
||||||
|
PromptMsg2 []byte `protobuf:"5,opt"`
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
func (x *ReqBody) GetSubCmd() uint32 {
|
||||||
|
if x != nil && x.SubCmd != nil {
|
||||||
|
return *x.SubCmd
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *ReqBody) GetLimitIntervalTypeForUin() uint32 {
|
||||||
|
if x != nil && x.LimitIntervalTypeForUin != nil {
|
||||||
|
return *x.LimitIntervalTypeForUin
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *ReqBody) GetLimitIntervalTypeForGroup() uint32 {
|
||||||
|
if x != nil && x.LimitIntervalTypeForGroup != nil {
|
||||||
|
return *x.LimitIntervalTypeForGroup
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *ReqBody) GetUin() uint64 {
|
||||||
|
if x != nil && x.Uin != nil {
|
||||||
|
return *x.Uin
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *ReqBody) GetGroupCode() uint64 {
|
||||||
|
if x != nil && x.GroupCode != nil {
|
||||||
|
return *x.GroupCode
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *ReqBody) Marshal() ([]byte, error) {
|
||||||
|
if x == nil {
|
||||||
|
return nil, errors.New("nil pointer error")
|
||||||
|
}
|
||||||
|
return protobuf.Encode(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *RspBody) GetCanAtAll() bool {
|
||||||
|
if x != nil && x.CanAtAll != nil {
|
||||||
|
return *x.CanAtAll
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *RspBody) GetRemainAtAllCountForUin() uint32 {
|
||||||
|
if x != nil && x.RemainAtAllCountForUin != nil {
|
||||||
|
return *x.RemainAtAllCountForUin
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *RspBody) GetRemainAtAllCountForGroup() uint32 {
|
||||||
|
if x != nil && x.RemainAtAllCountForGroup != nil {
|
||||||
|
return *x.RemainAtAllCountForGroup
|
||||||
|
}
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *RspBody) Marshal() ([]byte, error) {
|
||||||
|
if x == nil {
|
||||||
|
return nil, errors.New("nil pointer error")
|
||||||
|
}
|
||||||
|
return protobuf.Encode(x)
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user