Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5c5bb28ebc | |||
| 5f4f42b9b9 | |||
| 10fcecf508 |
361
gen/events.pb.go
361
gen/events.pb.go
@@ -9,6 +9,7 @@ package gen
|
|||||||
import (
|
import (
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
||||||
|
timestamppb "google.golang.org/protobuf/types/known/timestamppb"
|
||||||
reflect "reflect"
|
reflect "reflect"
|
||||||
sync "sync"
|
sync "sync"
|
||||||
unsafe "unsafe"
|
unsafe "unsafe"
|
||||||
@@ -73,32 +74,32 @@ func (EventType) EnumDescriptor() ([]byte, []int) {
|
|||||||
return file_events_proto_rawDescGZIP(), []int{0}
|
return file_events_proto_rawDescGZIP(), []int{0}
|
||||||
}
|
}
|
||||||
|
|
||||||
type Controller struct {
|
type Events struct {
|
||||||
state protoimpl.MessageState `protogen:"open.v1"`
|
state protoimpl.MessageState `protogen:"open.v1"`
|
||||||
Type EventType `protobuf:"varint,1,opt,name=type,proto3,enum=slug.EventType" json:"type,omitempty"`
|
Type EventType `protobuf:"varint,1,opt,name=type,proto3,enum=events.EventType" json:"type,omitempty"`
|
||||||
// Types that are valid to be assigned to Payload:
|
// Types that are valid to be assigned to Payload:
|
||||||
//
|
//
|
||||||
// *Controller_SlugEvent
|
// *Events_SlugEvent
|
||||||
// *Controller_GetSessionsEvent
|
// *Events_GetSessionsEvent
|
||||||
Payload isController_Payload `protobuf_oneof:"payload"`
|
Payload isEvents_Payload `protobuf_oneof:"payload"`
|
||||||
unknownFields protoimpl.UnknownFields
|
unknownFields protoimpl.UnknownFields
|
||||||
sizeCache protoimpl.SizeCache
|
sizeCache protoimpl.SizeCache
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *Controller) Reset() {
|
func (x *Events) Reset() {
|
||||||
*x = Controller{}
|
*x = Events{}
|
||||||
mi := &file_events_proto_msgTypes[0]
|
mi := &file_events_proto_msgTypes[0]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *Controller) String() string {
|
func (x *Events) String() string {
|
||||||
return protoimpl.X.MessageStringOf(x)
|
return protoimpl.X.MessageStringOf(x)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (*Controller) ProtoMessage() {}
|
func (*Events) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *Controller) ProtoReflect() protoreflect.Message {
|
func (x *Events) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_events_proto_msgTypes[0]
|
mi := &file_events_proto_msgTypes[0]
|
||||||
if x != nil {
|
if x != nil {
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
@@ -110,86 +111,86 @@ func (x *Controller) ProtoReflect() protoreflect.Message {
|
|||||||
return mi.MessageOf(x)
|
return mi.MessageOf(x)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Deprecated: Use Controller.ProtoReflect.Descriptor instead.
|
// Deprecated: Use Events.ProtoReflect.Descriptor instead.
|
||||||
func (*Controller) Descriptor() ([]byte, []int) {
|
func (*Events) Descriptor() ([]byte, []int) {
|
||||||
return file_events_proto_rawDescGZIP(), []int{0}
|
return file_events_proto_rawDescGZIP(), []int{0}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *Controller) GetType() EventType {
|
func (x *Events) GetType() EventType {
|
||||||
if x != nil {
|
if x != nil {
|
||||||
return x.Type
|
return x.Type
|
||||||
}
|
}
|
||||||
return EventType_AUTHENTICATION
|
return EventType_AUTHENTICATION
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *Controller) GetPayload() isController_Payload {
|
func (x *Events) GetPayload() isEvents_Payload {
|
||||||
if x != nil {
|
if x != nil {
|
||||||
return x.Payload
|
return x.Payload
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *Controller) GetSlugEvent() *SlugChangeEvent {
|
func (x *Events) GetSlugEvent() *SlugChangeEvent {
|
||||||
if x != nil {
|
if x != nil {
|
||||||
if x, ok := x.Payload.(*Controller_SlugEvent); ok {
|
if x, ok := x.Payload.(*Events_SlugEvent); ok {
|
||||||
return x.SlugEvent
|
return x.SlugEvent
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *Controller) GetGetSessionsEvent() *GetSessionsEvent {
|
func (x *Events) GetGetSessionsEvent() *GetSessionsEvent {
|
||||||
if x != nil {
|
if x != nil {
|
||||||
if x, ok := x.Payload.(*Controller_GetSessionsEvent); ok {
|
if x, ok := x.Payload.(*Events_GetSessionsEvent); ok {
|
||||||
return x.GetSessionsEvent
|
return x.GetSessionsEvent
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
type isController_Payload interface {
|
type isEvents_Payload interface {
|
||||||
isController_Payload()
|
isEvents_Payload()
|
||||||
}
|
}
|
||||||
|
|
||||||
type Controller_SlugEvent struct {
|
type Events_SlugEvent struct {
|
||||||
SlugEvent *SlugChangeEvent `protobuf:"bytes,11,opt,name=slug_event,json=slugEvent,proto3,oneof"`
|
SlugEvent *SlugChangeEvent `protobuf:"bytes,11,opt,name=slug_event,json=slugEvent,proto3,oneof"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type Controller_GetSessionsEvent struct {
|
type Events_GetSessionsEvent struct {
|
||||||
GetSessionsEvent *GetSessionsEvent `protobuf:"bytes,12,opt,name=get_sessions_event,json=getSessionsEvent,proto3,oneof"`
|
GetSessionsEvent *GetSessionsEvent `protobuf:"bytes,12,opt,name=get_sessions_event,json=getSessionsEvent,proto3,oneof"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (*Controller_SlugEvent) isController_Payload() {}
|
func (*Events_SlugEvent) isEvents_Payload() {}
|
||||||
|
|
||||||
func (*Controller_GetSessionsEvent) isController_Payload() {}
|
func (*Events_GetSessionsEvent) isEvents_Payload() {}
|
||||||
|
|
||||||
type Client struct {
|
type Node struct {
|
||||||
state protoimpl.MessageState `protogen:"open.v1"`
|
state protoimpl.MessageState `protogen:"open.v1"`
|
||||||
Type EventType `protobuf:"varint,1,opt,name=type,proto3,enum=slug.EventType" json:"type,omitempty"`
|
Type EventType `protobuf:"varint,1,opt,name=type,proto3,enum=events.EventType" json:"type,omitempty"`
|
||||||
// Types that are valid to be assigned to Payload:
|
// Types that are valid to be assigned to Payload:
|
||||||
//
|
//
|
||||||
// *Client_AuthEvent
|
// *Node_AuthEvent
|
||||||
// *Client_SlugEventResponse
|
// *Node_SlugEventResponse
|
||||||
// *Client_GetSessionsEvent
|
// *Node_GetSessionsEvent
|
||||||
Payload isClient_Payload `protobuf_oneof:"payload"`
|
Payload isNode_Payload `protobuf_oneof:"payload"`
|
||||||
unknownFields protoimpl.UnknownFields
|
unknownFields protoimpl.UnknownFields
|
||||||
sizeCache protoimpl.SizeCache
|
sizeCache protoimpl.SizeCache
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *Client) Reset() {
|
func (x *Node) Reset() {
|
||||||
*x = Client{}
|
*x = Node{}
|
||||||
mi := &file_events_proto_msgTypes[1]
|
mi := &file_events_proto_msgTypes[1]
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
ms.StoreMessageInfo(mi)
|
ms.StoreMessageInfo(mi)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *Client) String() string {
|
func (x *Node) String() string {
|
||||||
return protoimpl.X.MessageStringOf(x)
|
return protoimpl.X.MessageStringOf(x)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (*Client) ProtoMessage() {}
|
func (*Node) ProtoMessage() {}
|
||||||
|
|
||||||
func (x *Client) ProtoReflect() protoreflect.Message {
|
func (x *Node) ProtoReflect() protoreflect.Message {
|
||||||
mi := &file_events_proto_msgTypes[1]
|
mi := &file_events_proto_msgTypes[1]
|
||||||
if x != nil {
|
if x != nil {
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
@@ -201,73 +202,73 @@ func (x *Client) ProtoReflect() protoreflect.Message {
|
|||||||
return mi.MessageOf(x)
|
return mi.MessageOf(x)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Deprecated: Use Client.ProtoReflect.Descriptor instead.
|
// Deprecated: Use Node.ProtoReflect.Descriptor instead.
|
||||||
func (*Client) Descriptor() ([]byte, []int) {
|
func (*Node) Descriptor() ([]byte, []int) {
|
||||||
return file_events_proto_rawDescGZIP(), []int{1}
|
return file_events_proto_rawDescGZIP(), []int{1}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *Client) GetType() EventType {
|
func (x *Node) GetType() EventType {
|
||||||
if x != nil {
|
if x != nil {
|
||||||
return x.Type
|
return x.Type
|
||||||
}
|
}
|
||||||
return EventType_AUTHENTICATION
|
return EventType_AUTHENTICATION
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *Client) GetPayload() isClient_Payload {
|
func (x *Node) GetPayload() isNode_Payload {
|
||||||
if x != nil {
|
if x != nil {
|
||||||
return x.Payload
|
return x.Payload
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *Client) GetAuthEvent() *Authentication {
|
func (x *Node) GetAuthEvent() *Authentication {
|
||||||
if x != nil {
|
if x != nil {
|
||||||
if x, ok := x.Payload.(*Client_AuthEvent); ok {
|
if x, ok := x.Payload.(*Node_AuthEvent); ok {
|
||||||
return x.AuthEvent
|
return x.AuthEvent
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *Client) GetSlugEventResponse() *SlugChangeEventResponse {
|
func (x *Node) GetSlugEventResponse() *SlugChangeEventResponse {
|
||||||
if x != nil {
|
if x != nil {
|
||||||
if x, ok := x.Payload.(*Client_SlugEventResponse); ok {
|
if x, ok := x.Payload.(*Node_SlugEventResponse); ok {
|
||||||
return x.SlugEventResponse
|
return x.SlugEventResponse
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (x *Client) GetGetSessionsEvent() *GetSessionsResponse {
|
func (x *Node) GetGetSessionsEvent() *GetSessionsResponse {
|
||||||
if x != nil {
|
if x != nil {
|
||||||
if x, ok := x.Payload.(*Client_GetSessionsEvent); ok {
|
if x, ok := x.Payload.(*Node_GetSessionsEvent); ok {
|
||||||
return x.GetSessionsEvent
|
return x.GetSessionsEvent
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
type isClient_Payload interface {
|
type isNode_Payload interface {
|
||||||
isClient_Payload()
|
isNode_Payload()
|
||||||
}
|
}
|
||||||
|
|
||||||
type Client_AuthEvent struct {
|
type Node_AuthEvent struct {
|
||||||
AuthEvent *Authentication `protobuf:"bytes,10,opt,name=auth_event,json=authEvent,proto3,oneof"`
|
AuthEvent *Authentication `protobuf:"bytes,10,opt,name=auth_event,json=authEvent,proto3,oneof"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type Client_SlugEventResponse struct {
|
type Node_SlugEventResponse struct {
|
||||||
SlugEventResponse *SlugChangeEventResponse `protobuf:"bytes,11,opt,name=slug_event_response,json=slugEventResponse,proto3,oneof"`
|
SlugEventResponse *SlugChangeEventResponse `protobuf:"bytes,11,opt,name=slug_event_response,json=slugEventResponse,proto3,oneof"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type Client_GetSessionsEvent struct {
|
type Node_GetSessionsEvent struct {
|
||||||
GetSessionsEvent *GetSessionsResponse `protobuf:"bytes,12,opt,name=get_sessions_event,json=getSessionsEvent,proto3,oneof"`
|
GetSessionsEvent *GetSessionsResponse `protobuf:"bytes,12,opt,name=get_sessions_event,json=getSessionsEvent,proto3,oneof"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func (*Client_AuthEvent) isClient_Payload() {}
|
func (*Node_AuthEvent) isNode_Payload() {}
|
||||||
|
|
||||||
func (*Client_SlugEventResponse) isClient_Payload() {}
|
func (*Node_SlugEventResponse) isNode_Payload() {}
|
||||||
|
|
||||||
func (*Client_GetSessionsEvent) isClient_Payload() {}
|
func (*Node_GetSessionsEvent) isNode_Payload() {}
|
||||||
|
|
||||||
type Authentication struct {
|
type Authentication struct {
|
||||||
state protoimpl.MessageState `protogen:"open.v1"`
|
state protoimpl.MessageState `protogen:"open.v1"`
|
||||||
@@ -323,8 +324,9 @@ func (x *Authentication) GetIdentity() string {
|
|||||||
|
|
||||||
type SlugChangeEvent struct {
|
type SlugChangeEvent struct {
|
||||||
state protoimpl.MessageState `protogen:"open.v1"`
|
state protoimpl.MessageState `protogen:"open.v1"`
|
||||||
Old string `protobuf:"bytes,1,opt,name=old,proto3" json:"old,omitempty"`
|
User string `protobuf:"bytes,1,opt,name=user,proto3" json:"user,omitempty"`
|
||||||
New string `protobuf:"bytes,2,opt,name=new,proto3" json:"new,omitempty"`
|
Old string `protobuf:"bytes,2,opt,name=old,proto3" json:"old,omitempty"`
|
||||||
|
New string `protobuf:"bytes,3,opt,name=new,proto3" json:"new,omitempty"`
|
||||||
unknownFields protoimpl.UnknownFields
|
unknownFields protoimpl.UnknownFields
|
||||||
sizeCache protoimpl.SizeCache
|
sizeCache protoimpl.SizeCache
|
||||||
}
|
}
|
||||||
@@ -359,6 +361,13 @@ func (*SlugChangeEvent) Descriptor() ([]byte, []int) {
|
|||||||
return file_events_proto_rawDescGZIP(), []int{3}
|
return file_events_proto_rawDescGZIP(), []int{3}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (x *SlugChangeEvent) GetUser() string {
|
||||||
|
if x != nil {
|
||||||
|
return x.User
|
||||||
|
}
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
func (x *SlugChangeEvent) GetOld() string {
|
func (x *SlugChangeEvent) GetOld() string {
|
||||||
if x != nil {
|
if x != nil {
|
||||||
return x.Old
|
return x.Old
|
||||||
@@ -469,46 +478,183 @@ func (x *GetSessionsEvent) GetIdentity() string {
|
|||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type GetSessionsResponse struct {
|
||||||
|
state protoimpl.MessageState `protogen:"open.v1"`
|
||||||
|
Details []*Detail `protobuf:"bytes,1,rep,name=details,proto3" json:"details,omitempty"`
|
||||||
|
unknownFields protoimpl.UnknownFields
|
||||||
|
sizeCache protoimpl.SizeCache
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *GetSessionsResponse) Reset() {
|
||||||
|
*x = GetSessionsResponse{}
|
||||||
|
mi := &file_events_proto_msgTypes[6]
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *GetSessionsResponse) String() string {
|
||||||
|
return protoimpl.X.MessageStringOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (*GetSessionsResponse) ProtoMessage() {}
|
||||||
|
|
||||||
|
func (x *GetSessionsResponse) ProtoReflect() protoreflect.Message {
|
||||||
|
mi := &file_events_proto_msgTypes[6]
|
||||||
|
if x != nil {
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
return ms
|
||||||
|
}
|
||||||
|
return mi.MessageOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Deprecated: Use GetSessionsResponse.ProtoReflect.Descriptor instead.
|
||||||
|
func (*GetSessionsResponse) Descriptor() ([]byte, []int) {
|
||||||
|
return file_events_proto_rawDescGZIP(), []int{6}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *GetSessionsResponse) GetDetails() []*Detail {
|
||||||
|
if x != nil {
|
||||||
|
return x.Details
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
type Detail struct {
|
||||||
|
state protoimpl.MessageState `protogen:"open.v1"`
|
||||||
|
Node string `protobuf:"bytes,1,opt,name=node,proto3" json:"node,omitempty"`
|
||||||
|
ForwardingType string `protobuf:"bytes,2,opt,name=forwarding_type,json=forwardingType,proto3" json:"forwarding_type,omitempty"`
|
||||||
|
Slug string `protobuf:"bytes,3,opt,name=slug,proto3" json:"slug,omitempty"`
|
||||||
|
UserId string `protobuf:"bytes,4,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
|
||||||
|
Active bool `protobuf:"varint,5,opt,name=active,proto3" json:"active,omitempty"`
|
||||||
|
StartedAt *timestamppb.Timestamp `protobuf:"bytes,6,opt,name=started_at,json=startedAt,proto3" json:"started_at,omitempty"`
|
||||||
|
unknownFields protoimpl.UnknownFields
|
||||||
|
sizeCache protoimpl.SizeCache
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *Detail) Reset() {
|
||||||
|
*x = Detail{}
|
||||||
|
mi := &file_events_proto_msgTypes[7]
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *Detail) String() string {
|
||||||
|
return protoimpl.X.MessageStringOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (*Detail) ProtoMessage() {}
|
||||||
|
|
||||||
|
func (x *Detail) ProtoReflect() protoreflect.Message {
|
||||||
|
mi := &file_events_proto_msgTypes[7]
|
||||||
|
if x != nil {
|
||||||
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||||
|
if ms.LoadMessageInfo() == nil {
|
||||||
|
ms.StoreMessageInfo(mi)
|
||||||
|
}
|
||||||
|
return ms
|
||||||
|
}
|
||||||
|
return mi.MessageOf(x)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Deprecated: Use Detail.ProtoReflect.Descriptor instead.
|
||||||
|
func (*Detail) Descriptor() ([]byte, []int) {
|
||||||
|
return file_events_proto_rawDescGZIP(), []int{7}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *Detail) GetNode() string {
|
||||||
|
if x != nil {
|
||||||
|
return x.Node
|
||||||
|
}
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *Detail) GetForwardingType() string {
|
||||||
|
if x != nil {
|
||||||
|
return x.ForwardingType
|
||||||
|
}
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *Detail) GetSlug() string {
|
||||||
|
if x != nil {
|
||||||
|
return x.Slug
|
||||||
|
}
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *Detail) GetUserId() string {
|
||||||
|
if x != nil {
|
||||||
|
return x.UserId
|
||||||
|
}
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *Detail) GetActive() bool {
|
||||||
|
if x != nil {
|
||||||
|
return x.Active
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
func (x *Detail) GetStartedAt() *timestamppb.Timestamp {
|
||||||
|
if x != nil {
|
||||||
|
return x.StartedAt
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
var File_events_proto protoreflect.FileDescriptor
|
var File_events_proto protoreflect.FileDescriptor
|
||||||
|
|
||||||
const file_events_proto_rawDesc = "" +
|
const file_events_proto_rawDesc = "" +
|
||||||
"\n" +
|
"\n" +
|
||||||
"\fevents.proto\x12\x04slug\x1a\n" +
|
"\fevents.proto\x12\x06events\x1a\x1fgoogle/protobuf/timestamp.proto\"\xbe\x01\n" +
|
||||||
"user.proto\"\xbc\x01\n" +
|
"\x06Events\x12%\n" +
|
||||||
|
"\x04type\x18\x01 \x01(\x0e2\x11.events.EventTypeR\x04type\x128\n" +
|
||||||
"\n" +
|
"\n" +
|
||||||
"Controller\x12#\n" +
|
"slug_event\x18\v \x01(\v2\x17.events.SlugChangeEventH\x00R\tslugEvent\x12H\n" +
|
||||||
"\x04type\x18\x01 \x01(\x0e2\x0f.slug.EventTypeR\x04type\x126\n" +
|
"\x12get_sessions_event\x18\f \x01(\v2\x18.events.GetSessionsEventH\x00R\x10getSessionsEventB\t\n" +
|
||||||
"\n" +
|
"\apayload\"\x91\x02\n" +
|
||||||
"slug_event\x18\v \x01(\v2\x15.slug.SlugChangeEventH\x00R\tslugEvent\x12F\n" +
|
"\x04Node\x12%\n" +
|
||||||
"\x12get_sessions_event\x18\f \x01(\v2\x16.slug.GetSessionsEventH\x00R\x10getSessionsEventB\t\n" +
|
"\x04type\x18\x01 \x01(\x0e2\x11.events.EventTypeR\x04type\x127\n" +
|
||||||
"\apayload\"\x8b\x02\n" +
|
|
||||||
"\x06Client\x12#\n" +
|
|
||||||
"\x04type\x18\x01 \x01(\x0e2\x0f.slug.EventTypeR\x04type\x125\n" +
|
|
||||||
"\n" +
|
"\n" +
|
||||||
"auth_event\x18\n" +
|
"auth_event\x18\n" +
|
||||||
" \x01(\v2\x14.slug.AuthenticationH\x00R\tauthEvent\x12O\n" +
|
" \x01(\v2\x16.events.AuthenticationH\x00R\tauthEvent\x12Q\n" +
|
||||||
"\x13slug_event_response\x18\v \x01(\v2\x1d.slug.SlugChangeEventResponseH\x00R\x11slugEventResponse\x12I\n" +
|
"\x13slug_event_response\x18\v \x01(\v2\x1f.events.SlugChangeEventResponseH\x00R\x11slugEventResponse\x12K\n" +
|
||||||
"\x12get_sessions_event\x18\f \x01(\v2\x19.slug.GetSessionsResponseH\x00R\x10getSessionsEventB\t\n" +
|
"\x12get_sessions_event\x18\f \x01(\v2\x1b.events.GetSessionsResponseH\x00R\x10getSessionsEventB\t\n" +
|
||||||
"\apayload\"K\n" +
|
"\apayload\"K\n" +
|
||||||
"\x0eAuthentication\x12\x1d\n" +
|
"\x0eAuthentication\x12\x1d\n" +
|
||||||
"\n" +
|
"\n" +
|
||||||
"auth_token\x18\x01 \x01(\tR\tauthToken\x12\x1a\n" +
|
"auth_token\x18\x01 \x01(\tR\tauthToken\x12\x1a\n" +
|
||||||
"\bidentity\x18\x02 \x01(\tR\bidentity\"5\n" +
|
"\bidentity\x18\x02 \x01(\tR\bidentity\"I\n" +
|
||||||
"\x0fSlugChangeEvent\x12\x10\n" +
|
"\x0fSlugChangeEvent\x12\x12\n" +
|
||||||
"\x03old\x18\x01 \x01(\tR\x03old\x12\x10\n" +
|
"\x04user\x18\x01 \x01(\tR\x04user\x12\x10\n" +
|
||||||
"\x03new\x18\x02 \x01(\tR\x03new\"M\n" +
|
"\x03old\x18\x02 \x01(\tR\x03old\x12\x10\n" +
|
||||||
|
"\x03new\x18\x03 \x01(\tR\x03new\"M\n" +
|
||||||
"\x17SlugChangeEventResponse\x12\x18\n" +
|
"\x17SlugChangeEventResponse\x12\x18\n" +
|
||||||
"\asuccess\x18\x01 \x01(\bR\asuccess\x12\x18\n" +
|
"\asuccess\x18\x01 \x01(\bR\asuccess\x12\x18\n" +
|
||||||
"\amessage\x18\x02 \x01(\tR\amessage\".\n" +
|
"\amessage\x18\x02 \x01(\tR\amessage\".\n" +
|
||||||
"\x10GetSessionsEvent\x12\x1a\n" +
|
"\x10GetSessionsEvent\x12\x1a\n" +
|
||||||
"\bidentity\x18\x01 \x01(\tR\bidentity*\\\n" +
|
"\bidentity\x18\x01 \x01(\tR\bidentity\"?\n" +
|
||||||
|
"\x13GetSessionsResponse\x12(\n" +
|
||||||
|
"\adetails\x18\x01 \x03(\v2\x0e.events.DetailR\adetails\"\xc5\x01\n" +
|
||||||
|
"\x06Detail\x12\x12\n" +
|
||||||
|
"\x04node\x18\x01 \x01(\tR\x04node\x12'\n" +
|
||||||
|
"\x0fforwarding_type\x18\x02 \x01(\tR\x0eforwardingType\x12\x12\n" +
|
||||||
|
"\x04slug\x18\x03 \x01(\tR\x04slug\x12\x17\n" +
|
||||||
|
"\auser_id\x18\x04 \x01(\tR\x06userId\x12\x16\n" +
|
||||||
|
"\x06active\x18\x05 \x01(\bR\x06active\x129\n" +
|
||||||
|
"\n" +
|
||||||
|
"started_at\x18\x06 \x01(\v2\x1a.google.protobuf.TimestampR\tstartedAt*\\\n" +
|
||||||
"\tEventType\x12\x12\n" +
|
"\tEventType\x12\x12\n" +
|
||||||
"\x0eAUTHENTICATION\x10\x00\x12\x0f\n" +
|
"\x0eAUTHENTICATION\x10\x00\x12\x0f\n" +
|
||||||
"\vSLUG_CHANGE\x10\x01\x12\x18\n" +
|
"\vSLUG_CHANGE\x10\x01\x12\x18\n" +
|
||||||
"\x14SLUG_CHANGE_RESPONSE\x10\x02\x12\x10\n" +
|
"\x14SLUG_CHANGE_RESPONSE\x10\x02\x12\x10\n" +
|
||||||
"\fGET_SESSIONS\x10\x032?\n" +
|
"\fGET_SESSIONS\x10\x032=\n" +
|
||||||
"\fEventService\x12/\n" +
|
"\fEventService\x12-\n" +
|
||||||
"\tSubscribe\x12\f.slug.Client\x1a\x10.slug.Controller(\x010\x01B\aZ\x05./genb\x06proto3"
|
"\tSubscribe\x12\f.events.Node\x1a\x0e.events.Events(\x010\x01B\aZ\x05./genb\x06proto3"
|
||||||
|
|
||||||
var (
|
var (
|
||||||
file_events_proto_rawDescOnce sync.Once
|
file_events_proto_rawDescOnce sync.Once
|
||||||
@@ -523,32 +669,36 @@ func file_events_proto_rawDescGZIP() []byte {
|
|||||||
}
|
}
|
||||||
|
|
||||||
var file_events_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
|
var file_events_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
|
||||||
var file_events_proto_msgTypes = make([]protoimpl.MessageInfo, 6)
|
var file_events_proto_msgTypes = make([]protoimpl.MessageInfo, 8)
|
||||||
var file_events_proto_goTypes = []any{
|
var file_events_proto_goTypes = []any{
|
||||||
(EventType)(0), // 0: slug.EventType
|
(EventType)(0), // 0: events.EventType
|
||||||
(*Controller)(nil), // 1: slug.Controller
|
(*Events)(nil), // 1: events.Events
|
||||||
(*Client)(nil), // 2: slug.Client
|
(*Node)(nil), // 2: events.Node
|
||||||
(*Authentication)(nil), // 3: slug.Authentication
|
(*Authentication)(nil), // 3: events.Authentication
|
||||||
(*SlugChangeEvent)(nil), // 4: slug.SlugChangeEvent
|
(*SlugChangeEvent)(nil), // 4: events.SlugChangeEvent
|
||||||
(*SlugChangeEventResponse)(nil), // 5: slug.SlugChangeEventResponse
|
(*SlugChangeEventResponse)(nil), // 5: events.SlugChangeEventResponse
|
||||||
(*GetSessionsEvent)(nil), // 6: slug.GetSessionsEvent
|
(*GetSessionsEvent)(nil), // 6: events.GetSessionsEvent
|
||||||
(*GetSessionsResponse)(nil), // 7: slug.GetSessionsResponse
|
(*GetSessionsResponse)(nil), // 7: events.GetSessionsResponse
|
||||||
|
(*Detail)(nil), // 8: events.Detail
|
||||||
|
(*timestamppb.Timestamp)(nil), // 9: google.protobuf.Timestamp
|
||||||
}
|
}
|
||||||
var file_events_proto_depIdxs = []int32{
|
var file_events_proto_depIdxs = []int32{
|
||||||
0, // 0: slug.Controller.type:type_name -> slug.EventType
|
0, // 0: events.Events.type:type_name -> events.EventType
|
||||||
4, // 1: slug.Controller.slug_event:type_name -> slug.SlugChangeEvent
|
4, // 1: events.Events.slug_event:type_name -> events.SlugChangeEvent
|
||||||
6, // 2: slug.Controller.get_sessions_event:type_name -> slug.GetSessionsEvent
|
6, // 2: events.Events.get_sessions_event:type_name -> events.GetSessionsEvent
|
||||||
0, // 3: slug.Client.type:type_name -> slug.EventType
|
0, // 3: events.Node.type:type_name -> events.EventType
|
||||||
3, // 4: slug.Client.auth_event:type_name -> slug.Authentication
|
3, // 4: events.Node.auth_event:type_name -> events.Authentication
|
||||||
5, // 5: slug.Client.slug_event_response:type_name -> slug.SlugChangeEventResponse
|
5, // 5: events.Node.slug_event_response:type_name -> events.SlugChangeEventResponse
|
||||||
7, // 6: slug.Client.get_sessions_event:type_name -> slug.GetSessionsResponse
|
7, // 6: events.Node.get_sessions_event:type_name -> events.GetSessionsResponse
|
||||||
2, // 7: slug.EventService.Subscribe:input_type -> slug.Client
|
8, // 7: events.GetSessionsResponse.details:type_name -> events.Detail
|
||||||
1, // 8: slug.EventService.Subscribe:output_type -> slug.Controller
|
9, // 8: events.Detail.started_at:type_name -> google.protobuf.Timestamp
|
||||||
8, // [8:9] is the sub-list for method output_type
|
2, // 9: events.EventService.Subscribe:input_type -> events.Node
|
||||||
7, // [7:8] is the sub-list for method input_type
|
1, // 10: events.EventService.Subscribe:output_type -> events.Events
|
||||||
7, // [7:7] is the sub-list for extension type_name
|
10, // [10:11] is the sub-list for method output_type
|
||||||
7, // [7:7] is the sub-list for extension extendee
|
9, // [9:10] is the sub-list for method input_type
|
||||||
0, // [0:7] is the sub-list for field type_name
|
9, // [9:9] is the sub-list for extension type_name
|
||||||
|
9, // [9:9] is the sub-list for extension extendee
|
||||||
|
0, // [0:9] is the sub-list for field type_name
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() { file_events_proto_init() }
|
func init() { file_events_proto_init() }
|
||||||
@@ -556,15 +706,14 @@ func file_events_proto_init() {
|
|||||||
if File_events_proto != nil {
|
if File_events_proto != nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
file_user_proto_init()
|
|
||||||
file_events_proto_msgTypes[0].OneofWrappers = []any{
|
file_events_proto_msgTypes[0].OneofWrappers = []any{
|
||||||
(*Controller_SlugEvent)(nil),
|
(*Events_SlugEvent)(nil),
|
||||||
(*Controller_GetSessionsEvent)(nil),
|
(*Events_GetSessionsEvent)(nil),
|
||||||
}
|
}
|
||||||
file_events_proto_msgTypes[1].OneofWrappers = []any{
|
file_events_proto_msgTypes[1].OneofWrappers = []any{
|
||||||
(*Client_AuthEvent)(nil),
|
(*Node_AuthEvent)(nil),
|
||||||
(*Client_SlugEventResponse)(nil),
|
(*Node_SlugEventResponse)(nil),
|
||||||
(*Client_GetSessionsEvent)(nil),
|
(*Node_GetSessionsEvent)(nil),
|
||||||
}
|
}
|
||||||
type x struct{}
|
type x struct{}
|
||||||
out := protoimpl.TypeBuilder{
|
out := protoimpl.TypeBuilder{
|
||||||
@@ -572,7 +721,7 @@ func file_events_proto_init() {
|
|||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||||||
RawDescriptor: unsafe.Slice(unsafe.StringData(file_events_proto_rawDesc), len(file_events_proto_rawDesc)),
|
RawDescriptor: unsafe.Slice(unsafe.StringData(file_events_proto_rawDesc), len(file_events_proto_rawDesc)),
|
||||||
NumEnums: 1,
|
NumEnums: 1,
|
||||||
NumMessages: 6,
|
NumMessages: 8,
|
||||||
NumExtensions: 0,
|
NumExtensions: 0,
|
||||||
NumServices: 1,
|
NumServices: 1,
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -19,14 +19,14 @@ import (
|
|||||||
const _ = grpc.SupportPackageIsVersion9
|
const _ = grpc.SupportPackageIsVersion9
|
||||||
|
|
||||||
const (
|
const (
|
||||||
EventService_Subscribe_FullMethodName = "/slug.EventService/Subscribe"
|
EventService_Subscribe_FullMethodName = "/events.EventService/Subscribe"
|
||||||
)
|
)
|
||||||
|
|
||||||
// EventServiceClient is the client API for EventService service.
|
// EventServiceClient is the client API for EventService service.
|
||||||
//
|
//
|
||||||
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
|
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
|
||||||
type EventServiceClient interface {
|
type EventServiceClient interface {
|
||||||
Subscribe(ctx context.Context, opts ...grpc.CallOption) (grpc.BidiStreamingClient[Client, Controller], error)
|
Subscribe(ctx context.Context, opts ...grpc.CallOption) (grpc.BidiStreamingClient[Node, Events], error)
|
||||||
}
|
}
|
||||||
|
|
||||||
type eventServiceClient struct {
|
type eventServiceClient struct {
|
||||||
@@ -37,24 +37,24 @@ func NewEventServiceClient(cc grpc.ClientConnInterface) EventServiceClient {
|
|||||||
return &eventServiceClient{cc}
|
return &eventServiceClient{cc}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *eventServiceClient) Subscribe(ctx context.Context, opts ...grpc.CallOption) (grpc.BidiStreamingClient[Client, Controller], error) {
|
func (c *eventServiceClient) Subscribe(ctx context.Context, opts ...grpc.CallOption) (grpc.BidiStreamingClient[Node, Events], error) {
|
||||||
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
|
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
|
||||||
stream, err := c.cc.NewStream(ctx, &EventService_ServiceDesc.Streams[0], EventService_Subscribe_FullMethodName, cOpts...)
|
stream, err := c.cc.NewStream(ctx, &EventService_ServiceDesc.Streams[0], EventService_Subscribe_FullMethodName, cOpts...)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
x := &grpc.GenericClientStream[Client, Controller]{ClientStream: stream}
|
x := &grpc.GenericClientStream[Node, Events]{ClientStream: stream}
|
||||||
return x, nil
|
return x, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// This type alias is provided for backwards compatibility with existing code that references the prior non-generic stream type by name.
|
// This type alias is provided for backwards compatibility with existing code that references the prior non-generic stream type by name.
|
||||||
type EventService_SubscribeClient = grpc.BidiStreamingClient[Client, Controller]
|
type EventService_SubscribeClient = grpc.BidiStreamingClient[Node, Events]
|
||||||
|
|
||||||
// EventServiceServer is the server API for EventService service.
|
// EventServiceServer is the server API for EventService service.
|
||||||
// All implementations must embed UnimplementedEventServiceServer
|
// All implementations must embed UnimplementedEventServiceServer
|
||||||
// for forward compatibility.
|
// for forward compatibility.
|
||||||
type EventServiceServer interface {
|
type EventServiceServer interface {
|
||||||
Subscribe(grpc.BidiStreamingServer[Client, Controller]) error
|
Subscribe(grpc.BidiStreamingServer[Node, Events]) error
|
||||||
mustEmbedUnimplementedEventServiceServer()
|
mustEmbedUnimplementedEventServiceServer()
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -65,7 +65,7 @@ type EventServiceServer interface {
|
|||||||
// pointer dereference when methods are called.
|
// pointer dereference when methods are called.
|
||||||
type UnimplementedEventServiceServer struct{}
|
type UnimplementedEventServiceServer struct{}
|
||||||
|
|
||||||
func (UnimplementedEventServiceServer) Subscribe(grpc.BidiStreamingServer[Client, Controller]) error {
|
func (UnimplementedEventServiceServer) Subscribe(grpc.BidiStreamingServer[Node, Events]) error {
|
||||||
return status.Error(codes.Unimplemented, "method Subscribe not implemented")
|
return status.Error(codes.Unimplemented, "method Subscribe not implemented")
|
||||||
}
|
}
|
||||||
func (UnimplementedEventServiceServer) mustEmbedUnimplementedEventServiceServer() {}
|
func (UnimplementedEventServiceServer) mustEmbedUnimplementedEventServiceServer() {}
|
||||||
@@ -90,17 +90,17 @@ func RegisterEventServiceServer(s grpc.ServiceRegistrar, srv EventServiceServer)
|
|||||||
}
|
}
|
||||||
|
|
||||||
func _EventService_Subscribe_Handler(srv interface{}, stream grpc.ServerStream) error {
|
func _EventService_Subscribe_Handler(srv interface{}, stream grpc.ServerStream) error {
|
||||||
return srv.(EventServiceServer).Subscribe(&grpc.GenericServerStream[Client, Controller]{ServerStream: stream})
|
return srv.(EventServiceServer).Subscribe(&grpc.GenericServerStream[Node, Events]{ServerStream: stream})
|
||||||
}
|
}
|
||||||
|
|
||||||
// This type alias is provided for backwards compatibility with existing code that references the prior non-generic stream type by name.
|
// This type alias is provided for backwards compatibility with existing code that references the prior non-generic stream type by name.
|
||||||
type EventService_SubscribeServer = grpc.BidiStreamingServer[Client, Controller]
|
type EventService_SubscribeServer = grpc.BidiStreamingServer[Node, Events]
|
||||||
|
|
||||||
// EventService_ServiceDesc is the grpc.ServiceDesc for EventService service.
|
// EventService_ServiceDesc is the grpc.ServiceDesc for EventService service.
|
||||||
// It's only intended for direct use with grpc.RegisterService,
|
// It's only intended for direct use with grpc.RegisterService,
|
||||||
// and not to be introspected or modified (even as a copy)
|
// and not to be introspected or modified (even as a copy)
|
||||||
var EventService_ServiceDesc = grpc.ServiceDesc{
|
var EventService_ServiceDesc = grpc.ServiceDesc{
|
||||||
ServiceName: "slug.EventService",
|
ServiceName: "events.EventService",
|
||||||
HandlerType: (*EventServiceServer)(nil),
|
HandlerType: (*EventServiceServer)(nil),
|
||||||
Methods: []grpc.MethodDesc{},
|
Methods: []grpc.MethodDesc{},
|
||||||
Streams: []grpc.StreamDesc{
|
Streams: []grpc.StreamDesc{
|
||||||
|
|||||||
202
gen/slug.pb.go
202
gen/slug.pb.go
@@ -1,202 +0,0 @@
|
|||||||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-go v1.36.11
|
|
||||||
// protoc v6.33.2
|
|
||||||
// source: slug.proto
|
|
||||||
|
|
||||||
package gen
|
|
||||||
|
|
||||||
import (
|
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
||||||
reflect "reflect"
|
|
||||||
sync "sync"
|
|
||||||
unsafe "unsafe"
|
|
||||||
)
|
|
||||||
|
|
||||||
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 ChangeSlugRequest struct {
|
|
||||||
state protoimpl.MessageState `protogen:"open.v1"`
|
|
||||||
Node string `protobuf:"bytes,1,opt,name=node,proto3" json:"node,omitempty"`
|
|
||||||
Old string `protobuf:"bytes,2,opt,name=old,proto3" json:"old,omitempty"`
|
|
||||||
New string `protobuf:"bytes,3,opt,name=new,proto3" json:"new,omitempty"`
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ChangeSlugRequest) Reset() {
|
|
||||||
*x = ChangeSlugRequest{}
|
|
||||||
mi := &file_slug_proto_msgTypes[0]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ChangeSlugRequest) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*ChangeSlugRequest) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *ChangeSlugRequest) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_slug_proto_msgTypes[0]
|
|
||||||
if x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use ChangeSlugRequest.ProtoReflect.Descriptor instead.
|
|
||||||
func (*ChangeSlugRequest) Descriptor() ([]byte, []int) {
|
|
||||||
return file_slug_proto_rawDescGZIP(), []int{0}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ChangeSlugRequest) GetNode() string {
|
|
||||||
if x != nil {
|
|
||||||
return x.Node
|
|
||||||
}
|
|
||||||
return ""
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ChangeSlugRequest) GetOld() string {
|
|
||||||
if x != nil {
|
|
||||||
return x.Old
|
|
||||||
}
|
|
||||||
return ""
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ChangeSlugRequest) GetNew() string {
|
|
||||||
if x != nil {
|
|
||||||
return x.New
|
|
||||||
}
|
|
||||||
return ""
|
|
||||||
}
|
|
||||||
|
|
||||||
type ChangeSlugResponse struct {
|
|
||||||
state protoimpl.MessageState `protogen:"open.v1"`
|
|
||||||
Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
|
|
||||||
Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ChangeSlugResponse) Reset() {
|
|
||||||
*x = ChangeSlugResponse{}
|
|
||||||
mi := &file_slug_proto_msgTypes[1]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ChangeSlugResponse) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*ChangeSlugResponse) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *ChangeSlugResponse) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_slug_proto_msgTypes[1]
|
|
||||||
if x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use ChangeSlugResponse.ProtoReflect.Descriptor instead.
|
|
||||||
func (*ChangeSlugResponse) Descriptor() ([]byte, []int) {
|
|
||||||
return file_slug_proto_rawDescGZIP(), []int{1}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ChangeSlugResponse) GetSuccess() bool {
|
|
||||||
if x != nil {
|
|
||||||
return x.Success
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *ChangeSlugResponse) GetMessage() string {
|
|
||||||
if x != nil {
|
|
||||||
return x.Message
|
|
||||||
}
|
|
||||||
return ""
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_slug_proto protoreflect.FileDescriptor
|
|
||||||
|
|
||||||
const file_slug_proto_rawDesc = "" +
|
|
||||||
"\n" +
|
|
||||||
"\n" +
|
|
||||||
"slug.proto\x12\x04slug\"K\n" +
|
|
||||||
"\x11ChangeSlugRequest\x12\x12\n" +
|
|
||||||
"\x04node\x18\x01 \x01(\tR\x04node\x12\x10\n" +
|
|
||||||
"\x03old\x18\x02 \x01(\tR\x03old\x12\x10\n" +
|
|
||||||
"\x03new\x18\x03 \x01(\tR\x03new\"H\n" +
|
|
||||||
"\x12ChangeSlugResponse\x12\x18\n" +
|
|
||||||
"\asuccess\x18\x01 \x01(\bR\asuccess\x12\x18\n" +
|
|
||||||
"\amessage\x18\x02 \x01(\tR\amessage2T\n" +
|
|
||||||
"\n" +
|
|
||||||
"SlugChange\x12F\n" +
|
|
||||||
"\x11RequestChangeSlug\x12\x17.slug.ChangeSlugRequest\x1a\x18.slug.ChangeSlugResponseB\aZ\x05./genb\x06proto3"
|
|
||||||
|
|
||||||
var (
|
|
||||||
file_slug_proto_rawDescOnce sync.Once
|
|
||||||
file_slug_proto_rawDescData []byte
|
|
||||||
)
|
|
||||||
|
|
||||||
func file_slug_proto_rawDescGZIP() []byte {
|
|
||||||
file_slug_proto_rawDescOnce.Do(func() {
|
|
||||||
file_slug_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_slug_proto_rawDesc), len(file_slug_proto_rawDesc)))
|
|
||||||
})
|
|
||||||
return file_slug_proto_rawDescData
|
|
||||||
}
|
|
||||||
|
|
||||||
var file_slug_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
|
|
||||||
var file_slug_proto_goTypes = []any{
|
|
||||||
(*ChangeSlugRequest)(nil), // 0: slug.ChangeSlugRequest
|
|
||||||
(*ChangeSlugResponse)(nil), // 1: slug.ChangeSlugResponse
|
|
||||||
}
|
|
||||||
var file_slug_proto_depIdxs = []int32{
|
|
||||||
0, // 0: slug.SlugChange.RequestChangeSlug:input_type -> slug.ChangeSlugRequest
|
|
||||||
1, // 1: slug.SlugChange.RequestChangeSlug:output_type -> slug.ChangeSlugResponse
|
|
||||||
1, // [1:2] is the sub-list for method output_type
|
|
||||||
0, // [0:1] 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_slug_proto_init() }
|
|
||||||
func file_slug_proto_init() {
|
|
||||||
if File_slug_proto != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
type x struct{}
|
|
||||||
out := protoimpl.TypeBuilder{
|
|
||||||
File: protoimpl.DescBuilder{
|
|
||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
||||||
RawDescriptor: unsafe.Slice(unsafe.StringData(file_slug_proto_rawDesc), len(file_slug_proto_rawDesc)),
|
|
||||||
NumEnums: 0,
|
|
||||||
NumMessages: 2,
|
|
||||||
NumExtensions: 0,
|
|
||||||
NumServices: 1,
|
|
||||||
},
|
|
||||||
GoTypes: file_slug_proto_goTypes,
|
|
||||||
DependencyIndexes: file_slug_proto_depIdxs,
|
|
||||||
MessageInfos: file_slug_proto_msgTypes,
|
|
||||||
}.Build()
|
|
||||||
File_slug_proto = out.File
|
|
||||||
file_slug_proto_goTypes = nil
|
|
||||||
file_slug_proto_depIdxs = nil
|
|
||||||
}
|
|
||||||
@@ -1,121 +0,0 @@
|
|||||||
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// - protoc-gen-go-grpc v1.6.0
|
|
||||||
// - protoc v6.33.2
|
|
||||||
// source: slug.proto
|
|
||||||
|
|
||||||
package gen
|
|
||||||
|
|
||||||
import (
|
|
||||||
context "context"
|
|
||||||
grpc "google.golang.org/grpc"
|
|
||||||
codes "google.golang.org/grpc/codes"
|
|
||||||
status "google.golang.org/grpc/status"
|
|
||||||
)
|
|
||||||
|
|
||||||
// This is a compile-time assertion to ensure that this generated file
|
|
||||||
// is compatible with the grpc package it is being compiled against.
|
|
||||||
// Requires gRPC-Go v1.64.0 or later.
|
|
||||||
const _ = grpc.SupportPackageIsVersion9
|
|
||||||
|
|
||||||
const (
|
|
||||||
SlugChange_RequestChangeSlug_FullMethodName = "/slug.SlugChange/RequestChangeSlug"
|
|
||||||
)
|
|
||||||
|
|
||||||
// SlugChangeClient is the client API for SlugChange service.
|
|
||||||
//
|
|
||||||
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
|
|
||||||
type SlugChangeClient interface {
|
|
||||||
RequestChangeSlug(ctx context.Context, in *ChangeSlugRequest, opts ...grpc.CallOption) (*ChangeSlugResponse, error)
|
|
||||||
}
|
|
||||||
|
|
||||||
type slugChangeClient struct {
|
|
||||||
cc grpc.ClientConnInterface
|
|
||||||
}
|
|
||||||
|
|
||||||
func NewSlugChangeClient(cc grpc.ClientConnInterface) SlugChangeClient {
|
|
||||||
return &slugChangeClient{cc}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (c *slugChangeClient) RequestChangeSlug(ctx context.Context, in *ChangeSlugRequest, opts ...grpc.CallOption) (*ChangeSlugResponse, error) {
|
|
||||||
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
|
|
||||||
out := new(ChangeSlugResponse)
|
|
||||||
err := c.cc.Invoke(ctx, SlugChange_RequestChangeSlug_FullMethodName, in, out, cOpts...)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return out, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// SlugChangeServer is the server API for SlugChange service.
|
|
||||||
// All implementations must embed UnimplementedSlugChangeServer
|
|
||||||
// for forward compatibility.
|
|
||||||
type SlugChangeServer interface {
|
|
||||||
RequestChangeSlug(context.Context, *ChangeSlugRequest) (*ChangeSlugResponse, error)
|
|
||||||
mustEmbedUnimplementedSlugChangeServer()
|
|
||||||
}
|
|
||||||
|
|
||||||
// UnimplementedSlugChangeServer must be embedded to have
|
|
||||||
// forward compatible implementations.
|
|
||||||
//
|
|
||||||
// NOTE: this should be embedded by value instead of pointer to avoid a nil
|
|
||||||
// pointer dereference when methods are called.
|
|
||||||
type UnimplementedSlugChangeServer struct{}
|
|
||||||
|
|
||||||
func (UnimplementedSlugChangeServer) RequestChangeSlug(context.Context, *ChangeSlugRequest) (*ChangeSlugResponse, error) {
|
|
||||||
return nil, status.Error(codes.Unimplemented, "method RequestChangeSlug not implemented")
|
|
||||||
}
|
|
||||||
func (UnimplementedSlugChangeServer) mustEmbedUnimplementedSlugChangeServer() {}
|
|
||||||
func (UnimplementedSlugChangeServer) testEmbeddedByValue() {}
|
|
||||||
|
|
||||||
// UnsafeSlugChangeServer may be embedded to opt out of forward compatibility for this service.
|
|
||||||
// Use of this interface is not recommended, as added methods to SlugChangeServer will
|
|
||||||
// result in compilation errors.
|
|
||||||
type UnsafeSlugChangeServer interface {
|
|
||||||
mustEmbedUnimplementedSlugChangeServer()
|
|
||||||
}
|
|
||||||
|
|
||||||
func RegisterSlugChangeServer(s grpc.ServiceRegistrar, srv SlugChangeServer) {
|
|
||||||
// If the following call panics, it indicates UnimplementedSlugChangeServer was
|
|
||||||
// embedded by pointer and is nil. This will cause panics if an
|
|
||||||
// unimplemented method is ever invoked, so we test this at initialization
|
|
||||||
// time to prevent it from happening at runtime later due to I/O.
|
|
||||||
if t, ok := srv.(interface{ testEmbeddedByValue() }); ok {
|
|
||||||
t.testEmbeddedByValue()
|
|
||||||
}
|
|
||||||
s.RegisterService(&SlugChange_ServiceDesc, srv)
|
|
||||||
}
|
|
||||||
|
|
||||||
func _SlugChange_RequestChangeSlug_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
||||||
in := new(ChangeSlugRequest)
|
|
||||||
if err := dec(in); err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
if interceptor == nil {
|
|
||||||
return srv.(SlugChangeServer).RequestChangeSlug(ctx, in)
|
|
||||||
}
|
|
||||||
info := &grpc.UnaryServerInfo{
|
|
||||||
Server: srv,
|
|
||||||
FullMethod: SlugChange_RequestChangeSlug_FullMethodName,
|
|
||||||
}
|
|
||||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
||||||
return srv.(SlugChangeServer).RequestChangeSlug(ctx, req.(*ChangeSlugRequest))
|
|
||||||
}
|
|
||||||
return interceptor(ctx, in, info, handler)
|
|
||||||
}
|
|
||||||
|
|
||||||
// SlugChange_ServiceDesc is the grpc.ServiceDesc for SlugChange service.
|
|
||||||
// It's only intended for direct use with grpc.RegisterService,
|
|
||||||
// and not to be introspected or modified (even as a copy)
|
|
||||||
var SlugChange_ServiceDesc = grpc.ServiceDesc{
|
|
||||||
ServiceName: "slug.SlugChange",
|
|
||||||
HandlerType: (*SlugChangeServer)(nil),
|
|
||||||
Methods: []grpc.MethodDesc{
|
|
||||||
{
|
|
||||||
MethodName: "RequestChangeSlug",
|
|
||||||
Handler: _SlugChange_RequestChangeSlug_Handler,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
Streams: []grpc.StreamDesc{},
|
|
||||||
Metadata: "slug.proto",
|
|
||||||
}
|
|
||||||
224
gen/user.pb.go
224
gen/user.pb.go
@@ -9,7 +9,6 @@ package gen
|
|||||||
import (
|
import (
|
||||||
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
||||||
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
||||||
timestamppb "google.golang.org/protobuf/types/known/timestamppb"
|
|
||||||
reflect "reflect"
|
reflect "reflect"
|
||||||
sync "sync"
|
sync "sync"
|
||||||
unsafe "unsafe"
|
unsafe "unsafe"
|
||||||
@@ -114,7 +113,8 @@ func (x *CheckRequest) GetAuthToken() string {
|
|||||||
|
|
||||||
type CheckResponse struct {
|
type CheckResponse struct {
|
||||||
state protoimpl.MessageState `protogen:"open.v1"`
|
state protoimpl.MessageState `protogen:"open.v1"`
|
||||||
Response AuthorizationResponse `protobuf:"varint,1,opt,name=response,proto3,enum=slug.AuthorizationResponse" json:"response,omitempty"`
|
Response AuthorizationResponse `protobuf:"varint,1,opt,name=response,proto3,enum=user.AuthorizationResponse" json:"response,omitempty"`
|
||||||
|
User string `protobuf:"bytes,2,opt,name=user,proto3" json:"user,omitempty"`
|
||||||
unknownFields protoimpl.UnknownFields
|
unknownFields protoimpl.UnknownFields
|
||||||
sizeCache protoimpl.SizeCache
|
sizeCache protoimpl.SizeCache
|
||||||
}
|
}
|
||||||
@@ -156,200 +156,30 @@ func (x *CheckResponse) GetResponse() AuthorizationResponse {
|
|||||||
return AuthorizationResponse_MESSAGE_TYPE_AUTHORIZED
|
return AuthorizationResponse_MESSAGE_TYPE_AUTHORIZED
|
||||||
}
|
}
|
||||||
|
|
||||||
type GetSessionRequest struct {
|
func (x *CheckResponse) GetUser() string {
|
||||||
state protoimpl.MessageState `protogen:"open.v1"`
|
|
||||||
Identity string `protobuf:"bytes,1,opt,name=identity,proto3" json:"identity,omitempty"`
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *GetSessionRequest) Reset() {
|
|
||||||
*x = GetSessionRequest{}
|
|
||||||
mi := &file_user_proto_msgTypes[2]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *GetSessionRequest) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*GetSessionRequest) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *GetSessionRequest) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_user_proto_msgTypes[2]
|
|
||||||
if x != nil {
|
if x != nil {
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
return x.User
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use GetSessionRequest.ProtoReflect.Descriptor instead.
|
|
||||||
func (*GetSessionRequest) Descriptor() ([]byte, []int) {
|
|
||||||
return file_user_proto_rawDescGZIP(), []int{2}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *GetSessionRequest) GetIdentity() string {
|
|
||||||
if x != nil {
|
|
||||||
return x.Identity
|
|
||||||
}
|
}
|
||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
type GetSessionsResponse struct {
|
|
||||||
state protoimpl.MessageState `protogen:"open.v1"`
|
|
||||||
Details []*Detail `protobuf:"bytes,1,rep,name=details,proto3" json:"details,omitempty"`
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *GetSessionsResponse) Reset() {
|
|
||||||
*x = GetSessionsResponse{}
|
|
||||||
mi := &file_user_proto_msgTypes[3]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *GetSessionsResponse) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*GetSessionsResponse) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *GetSessionsResponse) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_user_proto_msgTypes[3]
|
|
||||||
if x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use GetSessionsResponse.ProtoReflect.Descriptor instead.
|
|
||||||
func (*GetSessionsResponse) Descriptor() ([]byte, []int) {
|
|
||||||
return file_user_proto_rawDescGZIP(), []int{3}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *GetSessionsResponse) GetDetails() []*Detail {
|
|
||||||
if x != nil {
|
|
||||||
return x.Details
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
type Detail struct {
|
|
||||||
state protoimpl.MessageState `protogen:"open.v1"`
|
|
||||||
ForwardingType string `protobuf:"bytes,1,opt,name=forwarding_type,json=forwardingType,proto3" json:"forwarding_type,omitempty"`
|
|
||||||
Slug string `protobuf:"bytes,2,opt,name=slug,proto3" json:"slug,omitempty"`
|
|
||||||
UserId string `protobuf:"bytes,3,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
|
|
||||||
Active bool `protobuf:"varint,4,opt,name=active,proto3" json:"active,omitempty"`
|
|
||||||
StartedAt *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=started_at,json=startedAt,proto3" json:"started_at,omitempty"`
|
|
||||||
unknownFields protoimpl.UnknownFields
|
|
||||||
sizeCache protoimpl.SizeCache
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *Detail) Reset() {
|
|
||||||
*x = Detail{}
|
|
||||||
mi := &file_user_proto_msgTypes[4]
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *Detail) String() string {
|
|
||||||
return protoimpl.X.MessageStringOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (*Detail) ProtoMessage() {}
|
|
||||||
|
|
||||||
func (x *Detail) ProtoReflect() protoreflect.Message {
|
|
||||||
mi := &file_user_proto_msgTypes[4]
|
|
||||||
if x != nil {
|
|
||||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
||||||
if ms.LoadMessageInfo() == nil {
|
|
||||||
ms.StoreMessageInfo(mi)
|
|
||||||
}
|
|
||||||
return ms
|
|
||||||
}
|
|
||||||
return mi.MessageOf(x)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Deprecated: Use Detail.ProtoReflect.Descriptor instead.
|
|
||||||
func (*Detail) Descriptor() ([]byte, []int) {
|
|
||||||
return file_user_proto_rawDescGZIP(), []int{4}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *Detail) GetForwardingType() string {
|
|
||||||
if x != nil {
|
|
||||||
return x.ForwardingType
|
|
||||||
}
|
|
||||||
return ""
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *Detail) GetSlug() string {
|
|
||||||
if x != nil {
|
|
||||||
return x.Slug
|
|
||||||
}
|
|
||||||
return ""
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *Detail) GetUserId() string {
|
|
||||||
if x != nil {
|
|
||||||
return x.UserId
|
|
||||||
}
|
|
||||||
return ""
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *Detail) GetActive() bool {
|
|
||||||
if x != nil {
|
|
||||||
return x.Active
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
func (x *Detail) GetStartedAt() *timestamppb.Timestamp {
|
|
||||||
if x != nil {
|
|
||||||
return x.StartedAt
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
var File_user_proto protoreflect.FileDescriptor
|
var File_user_proto protoreflect.FileDescriptor
|
||||||
|
|
||||||
const file_user_proto_rawDesc = "" +
|
const file_user_proto_rawDesc = "" +
|
||||||
"\n" +
|
"\n" +
|
||||||
"\n" +
|
"\n" +
|
||||||
"user.proto\x12\x04slug\x1a\x1fgoogle/protobuf/timestamp.proto\"-\n" +
|
"user.proto\x12\x04user\"-\n" +
|
||||||
"\fCheckRequest\x12\x1d\n" +
|
"\fCheckRequest\x12\x1d\n" +
|
||||||
"\n" +
|
"\n" +
|
||||||
"auth_token\x18\x01 \x01(\tR\tauthToken\"H\n" +
|
"auth_token\x18\x01 \x01(\tR\tauthToken\"\\\n" +
|
||||||
"\rCheckResponse\x127\n" +
|
"\rCheckResponse\x127\n" +
|
||||||
"\bresponse\x18\x01 \x01(\x0e2\x1b.slug.AuthorizationResponseR\bresponse\"/\n" +
|
"\bresponse\x18\x01 \x01(\x0e2\x1b.user.AuthorizationResponseR\bresponse\x12\x12\n" +
|
||||||
"\x11GetSessionRequest\x12\x1a\n" +
|
"\x04user\x18\x02 \x01(\tR\x04user*S\n" +
|
||||||
"\bidentity\x18\x01 \x01(\tR\bidentity\"=\n" +
|
|
||||||
"\x13GetSessionsResponse\x12&\n" +
|
|
||||||
"\adetails\x18\x01 \x03(\v2\f.slug.DetailR\adetails\"\xb1\x01\n" +
|
|
||||||
"\x06Detail\x12'\n" +
|
|
||||||
"\x0fforwarding_type\x18\x01 \x01(\tR\x0eforwardingType\x12\x12\n" +
|
|
||||||
"\x04slug\x18\x02 \x01(\tR\x04slug\x12\x17\n" +
|
|
||||||
"\auser_id\x18\x03 \x01(\tR\x06userId\x12\x16\n" +
|
|
||||||
"\x06active\x18\x04 \x01(\bR\x06active\x129\n" +
|
|
||||||
"\n" +
|
|
||||||
"started_at\x18\x05 \x01(\v2\x1a.google.protobuf.TimestampR\tstartedAt*S\n" +
|
|
||||||
"\x15AuthorizationResponse\x12\x1b\n" +
|
"\x15AuthorizationResponse\x12\x1b\n" +
|
||||||
"\x17MESSAGE_TYPE_AUTHORIZED\x10\x00\x12\x1d\n" +
|
"\x17MESSAGE_TYPE_AUTHORIZED\x10\x00\x12\x1d\n" +
|
||||||
"\x19MESSAGE_TYPE_UNAUTHORIZED\x10\x012?\n" +
|
"\x19MESSAGE_TYPE_UNAUTHORIZED\x10\x012?\n" +
|
||||||
"\vUserService\x120\n" +
|
"\vUserService\x120\n" +
|
||||||
"\x05Check\x12\x12.slug.CheckRequest\x1a\x13.slug.CheckResponse2P\n" +
|
"\x05Check\x12\x12.user.CheckRequest\x1a\x13.user.CheckResponseB\aZ\x05./genb\x06proto3"
|
||||||
"\fUserSessions\x12@\n" +
|
|
||||||
"\n" +
|
|
||||||
"GetSession\x12\x17.slug.GetSessionRequest\x1a\x19.slug.GetSessionsResponseB\aZ\x05./genb\x06proto3"
|
|
||||||
|
|
||||||
var (
|
var (
|
||||||
file_user_proto_rawDescOnce sync.Once
|
file_user_proto_rawDescOnce sync.Once
|
||||||
@@ -364,29 +194,21 @@ func file_user_proto_rawDescGZIP() []byte {
|
|||||||
}
|
}
|
||||||
|
|
||||||
var file_user_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
|
var file_user_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
|
||||||
var file_user_proto_msgTypes = make([]protoimpl.MessageInfo, 5)
|
var file_user_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
|
||||||
var file_user_proto_goTypes = []any{
|
var file_user_proto_goTypes = []any{
|
||||||
(AuthorizationResponse)(0), // 0: slug.AuthorizationResponse
|
(AuthorizationResponse)(0), // 0: user.AuthorizationResponse
|
||||||
(*CheckRequest)(nil), // 1: slug.CheckRequest
|
(*CheckRequest)(nil), // 1: user.CheckRequest
|
||||||
(*CheckResponse)(nil), // 2: slug.CheckResponse
|
(*CheckResponse)(nil), // 2: user.CheckResponse
|
||||||
(*GetSessionRequest)(nil), // 3: slug.GetSessionRequest
|
|
||||||
(*GetSessionsResponse)(nil), // 4: slug.GetSessionsResponse
|
|
||||||
(*Detail)(nil), // 5: slug.Detail
|
|
||||||
(*timestamppb.Timestamp)(nil), // 6: google.protobuf.Timestamp
|
|
||||||
}
|
}
|
||||||
var file_user_proto_depIdxs = []int32{
|
var file_user_proto_depIdxs = []int32{
|
||||||
0, // 0: slug.CheckResponse.response:type_name -> slug.AuthorizationResponse
|
0, // 0: user.CheckResponse.response:type_name -> user.AuthorizationResponse
|
||||||
5, // 1: slug.GetSessionsResponse.details:type_name -> slug.Detail
|
1, // 1: user.UserService.Check:input_type -> user.CheckRequest
|
||||||
6, // 2: slug.Detail.started_at:type_name -> google.protobuf.Timestamp
|
2, // 2: user.UserService.Check:output_type -> user.CheckResponse
|
||||||
1, // 3: slug.UserService.Check:input_type -> slug.CheckRequest
|
2, // [2:3] is the sub-list for method output_type
|
||||||
3, // 4: slug.UserSessions.GetSession:input_type -> slug.GetSessionRequest
|
1, // [1:2] is the sub-list for method input_type
|
||||||
2, // 5: slug.UserService.Check:output_type -> slug.CheckResponse
|
1, // [1:1] is the sub-list for extension type_name
|
||||||
4, // 6: slug.UserSessions.GetSession:output_type -> slug.GetSessionsResponse
|
1, // [1:1] is the sub-list for extension extendee
|
||||||
5, // [5:7] is the sub-list for method output_type
|
0, // [0:1] is the sub-list for field type_name
|
||||||
3, // [3:5] is the sub-list for method input_type
|
|
||||||
3, // [3:3] is the sub-list for extension type_name
|
|
||||||
3, // [3:3] is the sub-list for extension extendee
|
|
||||||
0, // [0:3] is the sub-list for field type_name
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() { file_user_proto_init() }
|
func init() { file_user_proto_init() }
|
||||||
@@ -400,9 +222,9 @@ func file_user_proto_init() {
|
|||||||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||||||
RawDescriptor: unsafe.Slice(unsafe.StringData(file_user_proto_rawDesc), len(file_user_proto_rawDesc)),
|
RawDescriptor: unsafe.Slice(unsafe.StringData(file_user_proto_rawDesc), len(file_user_proto_rawDesc)),
|
||||||
NumEnums: 1,
|
NumEnums: 1,
|
||||||
NumMessages: 5,
|
NumMessages: 2,
|
||||||
NumExtensions: 0,
|
NumExtensions: 0,
|
||||||
NumServices: 2,
|
NumServices: 1,
|
||||||
},
|
},
|
||||||
GoTypes: file_user_proto_goTypes,
|
GoTypes: file_user_proto_goTypes,
|
||||||
DependencyIndexes: file_user_proto_depIdxs,
|
DependencyIndexes: file_user_proto_depIdxs,
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ import (
|
|||||||
const _ = grpc.SupportPackageIsVersion9
|
const _ = grpc.SupportPackageIsVersion9
|
||||||
|
|
||||||
const (
|
const (
|
||||||
UserService_Check_FullMethodName = "/slug.UserService/Check"
|
UserService_Check_FullMethodName = "/user.UserService/Check"
|
||||||
)
|
)
|
||||||
|
|
||||||
// UserServiceClient is the client API for UserService service.
|
// UserServiceClient is the client API for UserService service.
|
||||||
@@ -108,7 +108,7 @@ func _UserService_Check_Handler(srv interface{}, ctx context.Context, dec func(i
|
|||||||
// It's only intended for direct use with grpc.RegisterService,
|
// It's only intended for direct use with grpc.RegisterService,
|
||||||
// and not to be introspected or modified (even as a copy)
|
// and not to be introspected or modified (even as a copy)
|
||||||
var UserService_ServiceDesc = grpc.ServiceDesc{
|
var UserService_ServiceDesc = grpc.ServiceDesc{
|
||||||
ServiceName: "slug.UserService",
|
ServiceName: "user.UserService",
|
||||||
HandlerType: (*UserServiceServer)(nil),
|
HandlerType: (*UserServiceServer)(nil),
|
||||||
Methods: []grpc.MethodDesc{
|
Methods: []grpc.MethodDesc{
|
||||||
{
|
{
|
||||||
@@ -119,105 +119,3 @@ var UserService_ServiceDesc = grpc.ServiceDesc{
|
|||||||
Streams: []grpc.StreamDesc{},
|
Streams: []grpc.StreamDesc{},
|
||||||
Metadata: "user.proto",
|
Metadata: "user.proto",
|
||||||
}
|
}
|
||||||
|
|
||||||
const (
|
|
||||||
UserSessions_GetSession_FullMethodName = "/slug.UserSessions/GetSession"
|
|
||||||
)
|
|
||||||
|
|
||||||
// UserSessionsClient is the client API for UserSessions service.
|
|
||||||
//
|
|
||||||
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
|
|
||||||
type UserSessionsClient interface {
|
|
||||||
GetSession(ctx context.Context, in *GetSessionRequest, opts ...grpc.CallOption) (*GetSessionsResponse, error)
|
|
||||||
}
|
|
||||||
|
|
||||||
type userSessionsClient struct {
|
|
||||||
cc grpc.ClientConnInterface
|
|
||||||
}
|
|
||||||
|
|
||||||
func NewUserSessionsClient(cc grpc.ClientConnInterface) UserSessionsClient {
|
|
||||||
return &userSessionsClient{cc}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (c *userSessionsClient) GetSession(ctx context.Context, in *GetSessionRequest, opts ...grpc.CallOption) (*GetSessionsResponse, error) {
|
|
||||||
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
|
|
||||||
out := new(GetSessionsResponse)
|
|
||||||
err := c.cc.Invoke(ctx, UserSessions_GetSession_FullMethodName, in, out, cOpts...)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return out, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// UserSessionsServer is the server API for UserSessions service.
|
|
||||||
// All implementations must embed UnimplementedUserSessionsServer
|
|
||||||
// for forward compatibility.
|
|
||||||
type UserSessionsServer interface {
|
|
||||||
GetSession(context.Context, *GetSessionRequest) (*GetSessionsResponse, error)
|
|
||||||
mustEmbedUnimplementedUserSessionsServer()
|
|
||||||
}
|
|
||||||
|
|
||||||
// UnimplementedUserSessionsServer must be embedded to have
|
|
||||||
// forward compatible implementations.
|
|
||||||
//
|
|
||||||
// NOTE: this should be embedded by value instead of pointer to avoid a nil
|
|
||||||
// pointer dereference when methods are called.
|
|
||||||
type UnimplementedUserSessionsServer struct{}
|
|
||||||
|
|
||||||
func (UnimplementedUserSessionsServer) GetSession(context.Context, *GetSessionRequest) (*GetSessionsResponse, error) {
|
|
||||||
return nil, status.Error(codes.Unimplemented, "method GetSession not implemented")
|
|
||||||
}
|
|
||||||
func (UnimplementedUserSessionsServer) mustEmbedUnimplementedUserSessionsServer() {}
|
|
||||||
func (UnimplementedUserSessionsServer) testEmbeddedByValue() {}
|
|
||||||
|
|
||||||
// UnsafeUserSessionsServer may be embedded to opt out of forward compatibility for this service.
|
|
||||||
// Use of this interface is not recommended, as added methods to UserSessionsServer will
|
|
||||||
// result in compilation errors.
|
|
||||||
type UnsafeUserSessionsServer interface {
|
|
||||||
mustEmbedUnimplementedUserSessionsServer()
|
|
||||||
}
|
|
||||||
|
|
||||||
func RegisterUserSessionsServer(s grpc.ServiceRegistrar, srv UserSessionsServer) {
|
|
||||||
// If the following call panics, it indicates UnimplementedUserSessionsServer was
|
|
||||||
// embedded by pointer and is nil. This will cause panics if an
|
|
||||||
// unimplemented method is ever invoked, so we test this at initialization
|
|
||||||
// time to prevent it from happening at runtime later due to I/O.
|
|
||||||
if t, ok := srv.(interface{ testEmbeddedByValue() }); ok {
|
|
||||||
t.testEmbeddedByValue()
|
|
||||||
}
|
|
||||||
s.RegisterService(&UserSessions_ServiceDesc, srv)
|
|
||||||
}
|
|
||||||
|
|
||||||
func _UserSessions_GetSession_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
||||||
in := new(GetSessionRequest)
|
|
||||||
if err := dec(in); err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
if interceptor == nil {
|
|
||||||
return srv.(UserSessionsServer).GetSession(ctx, in)
|
|
||||||
}
|
|
||||||
info := &grpc.UnaryServerInfo{
|
|
||||||
Server: srv,
|
|
||||||
FullMethod: UserSessions_GetSession_FullMethodName,
|
|
||||||
}
|
|
||||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
||||||
return srv.(UserSessionsServer).GetSession(ctx, req.(*GetSessionRequest))
|
|
||||||
}
|
|
||||||
return interceptor(ctx, in, info, handler)
|
|
||||||
}
|
|
||||||
|
|
||||||
// UserSessions_ServiceDesc is the grpc.ServiceDesc for UserSessions service.
|
|
||||||
// It's only intended for direct use with grpc.RegisterService,
|
|
||||||
// and not to be introspected or modified (even as a copy)
|
|
||||||
var UserSessions_ServiceDesc = grpc.ServiceDesc{
|
|
||||||
ServiceName: "slug.UserSessions",
|
|
||||||
HandlerType: (*UserSessionsServer)(nil),
|
|
||||||
Methods: []grpc.MethodDesc{
|
|
||||||
{
|
|
||||||
MethodName: "GetSession",
|
|
||||||
Handler: _UserSessions_GetSession_Handler,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
Streams: []grpc.StreamDesc{},
|
|
||||||
Metadata: "user.proto",
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,11 +1,13 @@
|
|||||||
syntax = "proto3";
|
syntax = "proto3";
|
||||||
|
|
||||||
package slug;
|
package events;
|
||||||
|
|
||||||
option go_package = "./gen";
|
option go_package = "./gen";
|
||||||
import "user.proto";
|
|
||||||
|
import "google/protobuf/timestamp.proto";
|
||||||
|
|
||||||
service EventService {
|
service EventService {
|
||||||
rpc Subscribe(stream Client) returns (stream Controller);
|
rpc Subscribe(stream Node) returns (stream Events);
|
||||||
}
|
}
|
||||||
|
|
||||||
enum EventType {
|
enum EventType {
|
||||||
@@ -15,7 +17,7 @@ enum EventType {
|
|||||||
GET_SESSIONS = 3;
|
GET_SESSIONS = 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
message Controller {
|
message Events {
|
||||||
EventType type = 1;
|
EventType type = 1;
|
||||||
|
|
||||||
oneof payload {
|
oneof payload {
|
||||||
@@ -24,7 +26,7 @@ message Controller {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
message Client {
|
message Node {
|
||||||
EventType type = 1;
|
EventType type = 1;
|
||||||
|
|
||||||
oneof payload {
|
oneof payload {
|
||||||
@@ -40,8 +42,9 @@ message Authentication {
|
|||||||
}
|
}
|
||||||
|
|
||||||
message SlugChangeEvent {
|
message SlugChangeEvent {
|
||||||
string old = 1;
|
string user = 1;
|
||||||
string new = 2;
|
string old = 2;
|
||||||
|
string new = 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
message SlugChangeEventResponse {
|
message SlugChangeEventResponse {
|
||||||
@@ -52,3 +55,16 @@ message SlugChangeEventResponse {
|
|||||||
message GetSessionsEvent {
|
message GetSessionsEvent {
|
||||||
string identity = 1;
|
string identity = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
message GetSessionsResponse {
|
||||||
|
repeated Detail details = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
message Detail {
|
||||||
|
string node = 1;
|
||||||
|
string forwarding_type = 2;
|
||||||
|
string slug = 3;
|
||||||
|
string user_id = 4;
|
||||||
|
bool active = 5;
|
||||||
|
google.protobuf.Timestamp started_at = 6;
|
||||||
|
}
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
syntax = "proto3";
|
|
||||||
|
|
||||||
package slug;
|
|
||||||
|
|
||||||
option go_package = "./gen";
|
|
||||||
|
|
||||||
service SlugChange {
|
|
||||||
rpc RequestChangeSlug(ChangeSlugRequest) returns (ChangeSlugResponse);
|
|
||||||
}
|
|
||||||
|
|
||||||
message ChangeSlugRequest {
|
|
||||||
string node = 1;
|
|
||||||
string old = 2;
|
|
||||||
string new = 3;
|
|
||||||
}
|
|
||||||
|
|
||||||
message ChangeSlugResponse {
|
|
||||||
bool success = 1;
|
|
||||||
string message = 2;
|
|
||||||
}
|
|
||||||
@@ -1,19 +1,13 @@
|
|||||||
syntax = "proto3";
|
syntax = "proto3";
|
||||||
|
|
||||||
package slug;
|
package user;
|
||||||
|
|
||||||
option go_package = "./gen";
|
option go_package = "./gen";
|
||||||
|
|
||||||
import "google/protobuf/timestamp.proto";
|
|
||||||
|
|
||||||
service UserService {
|
service UserService {
|
||||||
rpc Check(CheckRequest) returns (CheckResponse);
|
rpc Check(CheckRequest) returns (CheckResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
service UserSessions {
|
|
||||||
rpc GetSession(GetSessionRequest) returns (GetSessionsResponse);
|
|
||||||
}
|
|
||||||
|
|
||||||
enum AuthorizationResponse {
|
enum AuthorizationResponse {
|
||||||
MESSAGE_TYPE_AUTHORIZED= 0;
|
MESSAGE_TYPE_AUTHORIZED= 0;
|
||||||
MESSAGE_TYPE_UNAUTHORIZED = 1;
|
MESSAGE_TYPE_UNAUTHORIZED = 1;
|
||||||
@@ -25,20 +19,5 @@ message CheckRequest {
|
|||||||
|
|
||||||
message CheckResponse {
|
message CheckResponse {
|
||||||
AuthorizationResponse response = 1;
|
AuthorizationResponse response = 1;
|
||||||
}
|
string user = 2;
|
||||||
|
|
||||||
message GetSessionRequest {
|
|
||||||
string identity = 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
message GetSessionsResponse {
|
|
||||||
repeated Detail details = 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
message Detail {
|
|
||||||
string forwarding_type = 1;
|
|
||||||
string slug = 2;
|
|
||||||
string user_id = 3;
|
|
||||||
bool active = 4;
|
|
||||||
google.protobuf.Timestamp started_at = 5;
|
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user