diff options
Diffstat (limited to '')
| -rw-r--r-- | telebot/makefile | 14 | ||||
| -rw-r--r-- | telebot/protobuf/telegram.pb.go | 256 | ||||
| -rw-r--r-- | telebot/protobuf/telegram.proto | 22 | 
3 files changed, 292 insertions, 0 deletions
| diff --git a/telebot/makefile b/telebot/makefile new file mode 100644 index 0000000..af3354d --- /dev/null +++ b/telebot/makefile @@ -0,0 +1,14 @@ +DST_DIR?=./protobuf +SRC_DIR?=./protobuf +PROTOBUF_SRC_LIST:=$(shell find ./protobuf -name '*.proto' ) +ARTIFACT_LIST:=$(patsubst %.proto, %.pb.go, $(shell find ./protobuf -name '*.proto')) + +DEFAULT: default + +default: $(ARTIFACT_LIST) + +$(SRC_DIR)/%.pb.go:$(SRC_DIR)/%.proto +	protoc --proto_path=$(SRC_DIR) --go_out=$(DST_DIR) $< + +clean: +	- rm $(ARTIFACT_LIST) diff --git a/telebot/protobuf/telegram.pb.go b/telebot/protobuf/telegram.pb.go new file mode 100644 index 0000000..0fc0595 --- /dev/null +++ b/telebot/protobuf/telegram.pb.go @@ -0,0 +1,256 @@ +// 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 new file mode 100644 index 0000000..8a7e6be --- /dev/null +++ b/telebot/protobuf/telegram.proto @@ -0,0 +1,22 @@ +syntax= "proto3"; +package hived; + +import "google/protobuf/timestamp.proto"; +option go_package ="../protobuf"; + +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); +} | 
