diff options
Diffstat (limited to 'buf/mimi/statuspage/statuspageconnect/statuspage.connect.go')
| -rw-r--r-- | buf/mimi/statuspage/statuspageconnect/statuspage.connect.go | 113 |
1 files changed, 113 insertions, 0 deletions
diff --git a/buf/mimi/statuspage/statuspageconnect/statuspage.connect.go b/buf/mimi/statuspage/statuspageconnect/statuspage.connect.go new file mode 100644 index 0000000..cf88a27 --- /dev/null +++ b/buf/mimi/statuspage/statuspageconnect/statuspage.connect.go @@ -0,0 +1,113 @@ +// Code generated by protoc-gen-connect-go. DO NOT EDIT. +// +// Source: mimi/statuspage/statuspage.proto + +package statuspageconnect + +import ( + connect "connectrpc.com/connect" + context "context" + errors "errors" + emptypb "google.golang.org/protobuf/types/known/emptypb" + http "net/http" + strings "strings" + statuspage "within.website/x/buf/mimi/statuspage" +) + +// This is a compile-time assertion to ensure that this generated file and the connect package are +// compatible. If you get a compiler error that this constant is not defined, this code was +// generated with a version of connect newer than the one compiled into your binary. You can fix the +// problem by either regenerating this code with an older version of connect or updating the connect +// version compiled into your binary. +const _ = connect.IsAtLeastVersion1_13_0 + +const ( + // UpdateName is the fully-qualified name of the Update service. + UpdateName = "within.website.x.mimi.statuspage.Update" +) + +// These constants are the fully-qualified names of the RPCs defined in this package. They're +// exposed at runtime as Spec.Procedure and as the final two segments of the HTTP route. +// +// Note that these are different from the fully-qualified method names used by +// google.golang.org/protobuf/reflect/protoreflect. To convert from these constants to +// reflection-formatted method names, remove the leading slash and convert the remaining slash to a +// period. +const ( + // UpdatePokeProcedure is the fully-qualified name of the Update's Poke RPC. + UpdatePokeProcedure = "/within.website.x.mimi.statuspage.Update/Poke" +) + +// These variables are the protoreflect.Descriptor objects for the RPCs defined in this package. +var ( + updateServiceDescriptor = statuspage.File_mimi_statuspage_statuspage_proto.Services().ByName("Update") + updatePokeMethodDescriptor = updateServiceDescriptor.Methods().ByName("Poke") +) + +// UpdateClient is a client for the within.website.x.mimi.statuspage.Update service. +type UpdateClient interface { + Poke(context.Context, *connect.Request[statuspage.StatusUpdate]) (*connect.Response[emptypb.Empty], error) +} + +// NewUpdateClient constructs a client for the within.website.x.mimi.statuspage.Update service. By +// default, it uses the Connect protocol with the binary Protobuf Codec, asks for gzipped responses, +// and sends uncompressed requests. To use the gRPC or gRPC-Web protocols, supply the +// connect.WithGRPC() or connect.WithGRPCWeb() options. +// +// The URL supplied here should be the base URL for the Connect or gRPC server (for example, +// http://api.acme.com or https://acme.com/grpc). +func NewUpdateClient(httpClient connect.HTTPClient, baseURL string, opts ...connect.ClientOption) UpdateClient { + baseURL = strings.TrimRight(baseURL, "/") + return &updateClient{ + poke: connect.NewClient[statuspage.StatusUpdate, emptypb.Empty]( + httpClient, + baseURL+UpdatePokeProcedure, + connect.WithSchema(updatePokeMethodDescriptor), + connect.WithClientOptions(opts...), + ), + } +} + +// updateClient implements UpdateClient. +type updateClient struct { + poke *connect.Client[statuspage.StatusUpdate, emptypb.Empty] +} + +// Poke calls within.website.x.mimi.statuspage.Update.Poke. +func (c *updateClient) Poke(ctx context.Context, req *connect.Request[statuspage.StatusUpdate]) (*connect.Response[emptypb.Empty], error) { + return c.poke.CallUnary(ctx, req) +} + +// UpdateHandler is an implementation of the within.website.x.mimi.statuspage.Update service. +type UpdateHandler interface { + Poke(context.Context, *connect.Request[statuspage.StatusUpdate]) (*connect.Response[emptypb.Empty], error) +} + +// NewUpdateHandler builds an HTTP handler from the service implementation. It returns the path on +// which to mount the handler and the handler itself. +// +// By default, handlers support the Connect, gRPC, and gRPC-Web protocols with the binary Protobuf +// and JSON codecs. They also support gzip compression. +func NewUpdateHandler(svc UpdateHandler, opts ...connect.HandlerOption) (string, http.Handler) { + updatePokeHandler := connect.NewUnaryHandler( + UpdatePokeProcedure, + svc.Poke, + connect.WithSchema(updatePokeMethodDescriptor), + connect.WithHandlerOptions(opts...), + ) + return "/within.website.x.mimi.statuspage.Update/", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + switch r.URL.Path { + case UpdatePokeProcedure: + updatePokeHandler.ServeHTTP(w, r) + default: + http.NotFound(w, r) + } + }) +} + +// UnimplementedUpdateHandler returns CodeUnimplemented from all methods. +type UnimplementedUpdateHandler struct{} + +func (UnimplementedUpdateHandler) Poke(context.Context, *connect.Request[statuspage.StatusUpdate]) (*connect.Response[emptypb.Empty], error) { + return nil, connect.NewError(connect.CodeUnimplemented, errors.New("within.website.x.mimi.statuspage.Update.Poke is not implemented")) +} |
