From 3c24c7ba319e277414455d68360043e155d7a3ca Mon Sep 17 00:00:00 2001 From: terminaldweller Date: Fri, 12 Nov 2021 15:33:15 +0330 Subject: updates and fixes --- telebot/go.mod | 8 ++ telebot/go.sum | 11 ++ telebot/makefile | 8 +- telebot/protobuf/telegram.pb.go | 256 ------------------------------------ telebot/protobuf/telegram.proto | 22 ---- telebot/protobuf/v1/telegram.pb.go | 259 +++++++++++++++++++++++++++++++++++++ telebot/protobuf/v1/telegram.proto | 22 ++++ 7 files changed, 305 insertions(+), 281 deletions(-) create mode 100644 telebot/go.mod create mode 100644 telebot/go.sum delete mode 100644 telebot/protobuf/telegram.pb.go delete mode 100644 telebot/protobuf/telegram.proto create mode 100644 telebot/protobuf/v1/telegram.pb.go create mode 100644 telebot/protobuf/v1/telegram.proto diff --git a/telebot/go.mod b/telebot/go.mod new file mode 100644 index 0000000..c010507 --- /dev/null +++ b/telebot/go.mod @@ -0,0 +1,8 @@ +module github.com/terminaldweller/grpc/telebot/protobuf/v1 + +go 1.15 + +require ( + github.com/golang/protobuf v1.5.2 + google.golang.org/protobuf v1.27.1 +) diff --git a/telebot/go.sum b/telebot/go.sum new file mode 100644 index 0000000..85ba719 --- /dev/null +++ b/telebot/go.sum @@ -0,0 +1,11 @@ +github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= +github.com/golang/protobuf v1.5.2 h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw= +github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY= +github.com/google/go-cmp v0.5.5 h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU= +github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4= +golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= +google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= +google.golang.org/protobuf v1.27.1 h1:SnqbnDw1V7RiZcXPx5MEeqPv2s79L9i7BJUlG/+RurQ= +google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= diff --git a/telebot/makefile b/telebot/makefile index af3354d..9f91c59 100644 --- a/telebot/makefile +++ b/telebot/makefile @@ -1,5 +1,5 @@ -DST_DIR?=./protobuf -SRC_DIR?=./protobuf +DST_DIR?=./protobuf/v1 +SRC_DIR?=./protobuf/v1 PROTOBUF_SRC_LIST:=$(shell find ./protobuf -name '*.proto' ) ARTIFACT_LIST:=$(patsubst %.proto, %.pb.go, $(shell find ./protobuf -name '*.proto')) @@ -8,7 +8,9 @@ DEFAULT: default default: $(ARTIFACT_LIST) $(SRC_DIR)/%.pb.go:$(SRC_DIR)/%.proto - protoc --proto_path=$(SRC_DIR) --go_out=$(DST_DIR) $< + protoc --proto_path=$(SRC_DIR) --go_out=$(DST_DIR) --go_opt=paths=source_relative $< + if [ -d go.mod ];then : else;go mod init github.com/terminaldweller/grpc/telebot/protobuf/v1;fi + go mod tidy clean: - rm $(ARTIFACT_LIST) diff --git a/telebot/protobuf/telegram.pb.go b/telebot/protobuf/telegram.pb.go deleted file mode 100644 index 0fc0595..0000000 --- a/telebot/protobuf/telegram.pb.go +++ /dev/null @@ -1,256 +0,0 @@ -// Code generated by protoc-gen-go. DO NOT EDIT. -// versions: -// protoc-gen-go v1.23.0 -// protoc v3.15.6 -// source: telegram.proto - -package protobuf - -import ( - proto "github.com/golang/protobuf/proto" - protoreflect "google.golang.org/protobuf/reflect/protoreflect" - protoimpl "google.golang.org/protobuf/runtime/protoimpl" - timestamppb "google.golang.org/protobuf/types/known/timestamppb" - reflect "reflect" - sync "sync" -) - -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) -) - -// This is a compile-time assertion that a sufficiently up-to-date version -// of the legacy proto package is being used. -const _ = proto.ProtoPackageIsVersion4 - -type NotificationRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - NotificationText string `protobuf:"bytes,1,opt,name=notificationText,proto3" json:"notificationText,omitempty"` - ChannelId int64 `protobuf:"varint,2,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"` - RequestTime *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=request_time,json=requestTime,proto3" json:"request_time,omitempty"` -} - -func (x *NotificationRequest) Reset() { - *x = NotificationRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_telegram_proto_msgTypes[0] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *NotificationRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*NotificationRequest) ProtoMessage() {} - -func (x *NotificationRequest) ProtoReflect() protoreflect.Message { - mi := &file_telegram_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 NotificationRequest.ProtoReflect.Descriptor instead. -func (*NotificationRequest) Descriptor() ([]byte, []int) { - return file_telegram_proto_rawDescGZIP(), []int{0} -} - -func (x *NotificationRequest) GetNotificationText() string { - if x != nil { - return x.NotificationText - } - return "" -} - -func (x *NotificationRequest) GetChannelId() int64 { - if x != nil { - return x.ChannelId - } - return 0 -} - -func (x *NotificationRequest) GetRequestTime() *timestamppb.Timestamp { - if x != nil { - return x.RequestTime - } - return nil -} - -type NotificationResponse struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - Error string `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"` - IsOK bool `protobuf:"varint,1,opt,name=isOK,proto3" json:"isOK,omitempty"` -} - -func (x *NotificationResponse) Reset() { - *x = NotificationResponse{} - if protoimpl.UnsafeEnabled { - mi := &file_telegram_proto_msgTypes[1] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *NotificationResponse) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*NotificationResponse) ProtoMessage() {} - -func (x *NotificationResponse) ProtoReflect() protoreflect.Message { - mi := &file_telegram_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 NotificationResponse.ProtoReflect.Descriptor instead. -func (*NotificationResponse) Descriptor() ([]byte, []int) { - return file_telegram_proto_rawDescGZIP(), []int{1} -} - -func (x *NotificationResponse) GetError() string { - if x != nil { - return x.Error - } - return "" -} - -func (x *NotificationResponse) GetIsOK() bool { - if x != nil { - return x.IsOK - } - return false -} - -var File_telegram_proto protoreflect.FileDescriptor - -var file_telegram_proto_rawDesc = []byte{ - 0x0a, 0x0e, 0x74, 0x65, 0x6c, 0x65, 0x67, 0x72, 0x61, 0x6d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x12, 0x05, 0x68, 0x69, 0x76, 0x65, 0x64, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, - 0x6d, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xa5, 0x01, 0x0a, 0x13, 0x4e, 0x6f, 0x74, - 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, - 0x12, 0x2a, 0x0a, 0x10, 0x6e, 0x6f, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x54, 0x65, 0x78, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x6e, 0x6f, 0x74, 0x69, - 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x65, 0x78, 0x74, 0x12, 0x1d, 0x0a, 0x0a, - 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, - 0x52, 0x09, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x49, 0x64, 0x12, 0x3d, 0x0a, 0x0c, 0x72, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0b, 0x72, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x4a, 0x04, 0x08, 0x04, 0x10, 0x08, - 0x22, 0x46, 0x0a, 0x14, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, - 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x12, - 0x0a, 0x04, 0x69, 0x73, 0x4f, 0x4b, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x04, 0x69, 0x73, - 0x4f, 0x4b, 0x4a, 0x04, 0x08, 0x03, 0x10, 0x07, 0x32, 0x58, 0x0a, 0x13, 0x4e, 0x6f, 0x74, 0x69, - 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, - 0x41, 0x0a, 0x06, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x12, 0x1a, 0x2e, 0x68, 0x69, 0x76, 0x65, - 0x64, 0x2e, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, - 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x68, 0x69, 0x76, 0x65, 0x64, 0x2e, 0x4e, 0x6f, - 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, - 0x73, 0x65, 0x42, 0x0d, 0x5a, 0x0b, 0x2e, 0x2e, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, - 0x66, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, -} - -var ( - file_telegram_proto_rawDescOnce sync.Once - file_telegram_proto_rawDescData = file_telegram_proto_rawDesc -) - -func file_telegram_proto_rawDescGZIP() []byte { - file_telegram_proto_rawDescOnce.Do(func() { - file_telegram_proto_rawDescData = protoimpl.X.CompressGZIP(file_telegram_proto_rawDescData) - }) - return file_telegram_proto_rawDescData -} - -var file_telegram_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_telegram_proto_goTypes = []interface{}{ - (*NotificationRequest)(nil), // 0: hived.NotificationRequest - (*NotificationResponse)(nil), // 1: hived.NotificationResponse - (*timestamppb.Timestamp)(nil), // 2: google.protobuf.Timestamp -} -var file_telegram_proto_depIdxs = []int32{ - 2, // 0: hived.NotificationRequest.request_time:type_name -> google.protobuf.Timestamp - 0, // 1: hived.NotificationService.Notify:input_type -> hived.NotificationRequest - 1, // 2: hived.NotificationService.Notify:output_type -> hived.NotificationResponse - 2, // [2:3] is the sub-list for method output_type - 1, // [1:2] is the sub-list for method input_type - 1, // [1:1] is the sub-list for extension type_name - 1, // [1:1] is the sub-list for extension extendee - 0, // [0:1] is the sub-list for field type_name -} - -func init() { file_telegram_proto_init() } -func file_telegram_proto_init() { - if File_telegram_proto != nil { - return - } - if !protoimpl.UnsafeEnabled { - file_telegram_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*NotificationRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_telegram_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*NotificationResponse); 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_telegram_proto_rawDesc, - NumEnums: 0, - NumMessages: 2, - NumExtensions: 0, - NumServices: 1, - }, - GoTypes: file_telegram_proto_goTypes, - DependencyIndexes: file_telegram_proto_depIdxs, - MessageInfos: file_telegram_proto_msgTypes, - }.Build() - File_telegram_proto = out.File - file_telegram_proto_rawDesc = nil - file_telegram_proto_goTypes = nil - file_telegram_proto_depIdxs = nil -} diff --git a/telebot/protobuf/telegram.proto b/telebot/protobuf/telegram.proto deleted file mode 100644 index d01fa9a..0000000 --- a/telebot/protobuf/telegram.proto +++ /dev/null @@ -1,22 +0,0 @@ -syntax= "proto3"; -package hived; - -import "google/protobuf/timestamp.proto"; -option go_package ="github.com/terminaldweller/grpc/telebot/protobuf/telegram.pb.go"; - -message NotificationRequest { - reserved 4 to 7; - string notificationText = 1; - int64 channel_id = 2; - google.protobuf.Timestamp request_time = 3; -} - -message NotificationResponse { - reserved 3 to 6; - string error = 2; - bool isOK = 1; -} - -service NotificationService { - rpc Notify(NotificationRequest) returns (NotificationResponse); -} diff --git a/telebot/protobuf/v1/telegram.pb.go b/telebot/protobuf/v1/telegram.pb.go new file mode 100644 index 0000000..ab46f67 --- /dev/null +++ b/telebot/protobuf/v1/telegram.pb.go @@ -0,0 +1,259 @@ +// Code generated by protoc-gen-go. DO NOT EDIT. +// versions: +// protoc-gen-go v1.23.0 +// protoc v3.15.6 +// source: telegram.proto + +package v1 + +import ( + proto "github.com/golang/protobuf/proto" + protoreflect "google.golang.org/protobuf/reflect/protoreflect" + protoimpl "google.golang.org/protobuf/runtime/protoimpl" + timestamppb "google.golang.org/protobuf/types/known/timestamppb" + reflect "reflect" + sync "sync" +) + +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) +) + +// This is a compile-time assertion that a sufficiently up-to-date version +// of the legacy proto package is being used. +const _ = proto.ProtoPackageIsVersion4 + +type NotificationRequest struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + NotificationText string `protobuf:"bytes,1,opt,name=notificationText,proto3" json:"notificationText,omitempty"` + ChannelId int64 `protobuf:"varint,2,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"` + RequestTime *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=request_time,json=requestTime,proto3" json:"request_time,omitempty"` +} + +func (x *NotificationRequest) Reset() { + *x = NotificationRequest{} + if protoimpl.UnsafeEnabled { + mi := &file_telegram_proto_msgTypes[0] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *NotificationRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*NotificationRequest) ProtoMessage() {} + +func (x *NotificationRequest) ProtoReflect() protoreflect.Message { + mi := &file_telegram_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 NotificationRequest.ProtoReflect.Descriptor instead. +func (*NotificationRequest) Descriptor() ([]byte, []int) { + return file_telegram_proto_rawDescGZIP(), []int{0} +} + +func (x *NotificationRequest) GetNotificationText() string { + if x != nil { + return x.NotificationText + } + return "" +} + +func (x *NotificationRequest) GetChannelId() int64 { + if x != nil { + return x.ChannelId + } + return 0 +} + +func (x *NotificationRequest) GetRequestTime() *timestamppb.Timestamp { + if x != nil { + return x.RequestTime + } + return nil +} + +type NotificationResponse struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + Error string `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"` + IsOK bool `protobuf:"varint,1,opt,name=isOK,proto3" json:"isOK,omitempty"` +} + +func (x *NotificationResponse) Reset() { + *x = NotificationResponse{} + if protoimpl.UnsafeEnabled { + mi := &file_telegram_proto_msgTypes[1] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *NotificationResponse) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*NotificationResponse) ProtoMessage() {} + +func (x *NotificationResponse) ProtoReflect() protoreflect.Message { + mi := &file_telegram_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 NotificationResponse.ProtoReflect.Descriptor instead. +func (*NotificationResponse) Descriptor() ([]byte, []int) { + return file_telegram_proto_rawDescGZIP(), []int{1} +} + +func (x *NotificationResponse) GetError() string { + if x != nil { + return x.Error + } + return "" +} + +func (x *NotificationResponse) GetIsOK() bool { + if x != nil { + return x.IsOK + } + return false +} + +var File_telegram_proto protoreflect.FileDescriptor + +var file_telegram_proto_rawDesc = []byte{ + 0x0a, 0x0e, 0x74, 0x65, 0x6c, 0x65, 0x67, 0x72, 0x61, 0x6d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x12, 0x05, 0x68, 0x69, 0x76, 0x65, 0x64, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, + 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, + 0x6d, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xa5, 0x01, 0x0a, 0x13, 0x4e, 0x6f, 0x74, + 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, + 0x12, 0x2a, 0x0a, 0x10, 0x6e, 0x6f, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x54, 0x65, 0x78, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x6e, 0x6f, 0x74, 0x69, + 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x65, 0x78, 0x74, 0x12, 0x1d, 0x0a, 0x0a, + 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, + 0x52, 0x09, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x49, 0x64, 0x12, 0x3d, 0x0a, 0x0c, 0x72, + 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, + 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0b, 0x72, + 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x4a, 0x04, 0x08, 0x04, 0x10, 0x08, + 0x22, 0x46, 0x0a, 0x14, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, + 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x12, + 0x0a, 0x04, 0x69, 0x73, 0x4f, 0x4b, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x04, 0x69, 0x73, + 0x4f, 0x4b, 0x4a, 0x04, 0x08, 0x03, 0x10, 0x07, 0x32, 0x58, 0x0a, 0x13, 0x4e, 0x6f, 0x74, 0x69, + 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, + 0x41, 0x0a, 0x06, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x79, 0x12, 0x1a, 0x2e, 0x68, 0x69, 0x76, 0x65, + 0x64, 0x2e, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, + 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1b, 0x2e, 0x68, 0x69, 0x76, 0x65, 0x64, 0x2e, 0x4e, 0x6f, + 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, + 0x73, 0x65, 0x42, 0x35, 0x5a, 0x33, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, + 0x2f, 0x74, 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x61, 0x6c, 0x64, 0x77, 0x65, 0x6c, 0x6c, 0x65, 0x72, + 0x2f, 0x67, 0x72, 0x70, 0x63, 0x2f, 0x74, 0x65, 0x6c, 0x65, 0x62, 0x6f, 0x74, 0x2f, 0x70, 0x72, + 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x76, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x33, +} + +var ( + file_telegram_proto_rawDescOnce sync.Once + file_telegram_proto_rawDescData = file_telegram_proto_rawDesc +) + +func file_telegram_proto_rawDescGZIP() []byte { + file_telegram_proto_rawDescOnce.Do(func() { + file_telegram_proto_rawDescData = protoimpl.X.CompressGZIP(file_telegram_proto_rawDescData) + }) + return file_telegram_proto_rawDescData +} + +var file_telegram_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_telegram_proto_goTypes = []interface{}{ + (*NotificationRequest)(nil), // 0: hived.NotificationRequest + (*NotificationResponse)(nil), // 1: hived.NotificationResponse + (*timestamppb.Timestamp)(nil), // 2: google.protobuf.Timestamp +} +var file_telegram_proto_depIdxs = []int32{ + 2, // 0: hived.NotificationRequest.request_time:type_name -> google.protobuf.Timestamp + 0, // 1: hived.NotificationService.Notify:input_type -> hived.NotificationRequest + 1, // 2: hived.NotificationService.Notify:output_type -> hived.NotificationResponse + 2, // [2:3] is the sub-list for method output_type + 1, // [1:2] is the sub-list for method input_type + 1, // [1:1] is the sub-list for extension type_name + 1, // [1:1] is the sub-list for extension extendee + 0, // [0:1] is the sub-list for field type_name +} + +func init() { file_telegram_proto_init() } +func file_telegram_proto_init() { + if File_telegram_proto != nil { + return + } + if !protoimpl.UnsafeEnabled { + file_telegram_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*NotificationRequest); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_telegram_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*NotificationResponse); 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_telegram_proto_rawDesc, + NumEnums: 0, + NumMessages: 2, + NumExtensions: 0, + NumServices: 1, + }, + GoTypes: file_telegram_proto_goTypes, + DependencyIndexes: file_telegram_proto_depIdxs, + MessageInfos: file_telegram_proto_msgTypes, + }.Build() + File_telegram_proto = out.File + file_telegram_proto_rawDesc = nil + file_telegram_proto_goTypes = nil + file_telegram_proto_depIdxs = nil +} diff --git a/telebot/protobuf/v1/telegram.proto b/telebot/protobuf/v1/telegram.proto new file mode 100644 index 0000000..9a8ab6f --- /dev/null +++ b/telebot/protobuf/v1/telegram.proto @@ -0,0 +1,22 @@ +syntax= "proto3"; +package hived; + +import "google/protobuf/timestamp.proto"; +option go_package = "github.com/terminaldweller/grpc/telebot/protobuf/v1"; + +message NotificationRequest { + reserved 4 to 7; + string notificationText = 1; + int64 channel_id = 2; + google.protobuf.Timestamp request_time = 3; +} + +message NotificationResponse { + reserved 3 to 6; + string error = 2; + bool isOK = 1; +} + +service NotificationService { + rpc Notify(NotificationRequest) returns (NotificationResponse); +} -- cgit v1.2.3