143 lines
7 KiB
Go
143 lines
7 KiB
Go
// Code generated by protoc-gen-connect-go. DO NOT EDIT.
|
|
//
|
|
// Source: vpn/v1/vpn.proto
|
|
|
|
package vpnv1connect
|
|
|
|
import (
|
|
connect "connectrpc.com/connect"
|
|
context "context"
|
|
errors "errors"
|
|
http "net/http"
|
|
strings "strings"
|
|
v1 "vpn.konfa.ch/controller/src/delivery/grpcserver/gen/vpn/v1"
|
|
)
|
|
|
|
// 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 (
|
|
// ProfilesServiceName is the fully-qualified name of the ProfilesService service.
|
|
ProfilesServiceName = "vpn.v1.ProfilesService"
|
|
)
|
|
|
|
// 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 (
|
|
// ProfilesServiceAvaliableFlavorsProcedure is the fully-qualified name of the ProfilesService's
|
|
// AvaliableFlavors RPC.
|
|
ProfilesServiceAvaliableFlavorsProcedure = "/vpn.v1.ProfilesService/AvaliableFlavors"
|
|
// ProfilesServiceCreateProfileProcedure is the fully-qualified name of the ProfilesService's
|
|
// CreateProfile RPC.
|
|
ProfilesServiceCreateProfileProcedure = "/vpn.v1.ProfilesService/CreateProfile"
|
|
)
|
|
|
|
// These variables are the protoreflect.Descriptor objects for the RPCs defined in this package.
|
|
var (
|
|
profilesServiceServiceDescriptor = v1.File_vpn_v1_vpn_proto.Services().ByName("ProfilesService")
|
|
profilesServiceAvaliableFlavorsMethodDescriptor = profilesServiceServiceDescriptor.Methods().ByName("AvaliableFlavors")
|
|
profilesServiceCreateProfileMethodDescriptor = profilesServiceServiceDescriptor.Methods().ByName("CreateProfile")
|
|
)
|
|
|
|
// ProfilesServiceClient is a client for the vpn.v1.ProfilesService service.
|
|
type ProfilesServiceClient interface {
|
|
AvaliableFlavors(context.Context, *connect.Request[v1.AvaliableFlavorsRequest]) (*connect.Response[v1.AvaliableFlavorsResponse], error)
|
|
CreateProfile(context.Context, *connect.Request[v1.CreateProfileRequest]) (*connect.Response[v1.CreateProfileResponse], error)
|
|
}
|
|
|
|
// NewProfilesServiceClient constructs a client for the vpn.v1.ProfilesService 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 NewProfilesServiceClient(httpClient connect.HTTPClient, baseURL string, opts ...connect.ClientOption) ProfilesServiceClient {
|
|
baseURL = strings.TrimRight(baseURL, "/")
|
|
return &profilesServiceClient{
|
|
avaliableFlavors: connect.NewClient[v1.AvaliableFlavorsRequest, v1.AvaliableFlavorsResponse](
|
|
httpClient,
|
|
baseURL+ProfilesServiceAvaliableFlavorsProcedure,
|
|
connect.WithSchema(profilesServiceAvaliableFlavorsMethodDescriptor),
|
|
connect.WithClientOptions(opts...),
|
|
),
|
|
createProfile: connect.NewClient[v1.CreateProfileRequest, v1.CreateProfileResponse](
|
|
httpClient,
|
|
baseURL+ProfilesServiceCreateProfileProcedure,
|
|
connect.WithSchema(profilesServiceCreateProfileMethodDescriptor),
|
|
connect.WithClientOptions(opts...),
|
|
),
|
|
}
|
|
}
|
|
|
|
// profilesServiceClient implements ProfilesServiceClient.
|
|
type profilesServiceClient struct {
|
|
avaliableFlavors *connect.Client[v1.AvaliableFlavorsRequest, v1.AvaliableFlavorsResponse]
|
|
createProfile *connect.Client[v1.CreateProfileRequest, v1.CreateProfileResponse]
|
|
}
|
|
|
|
// AvaliableFlavors calls vpn.v1.ProfilesService.AvaliableFlavors.
|
|
func (c *profilesServiceClient) AvaliableFlavors(ctx context.Context, req *connect.Request[v1.AvaliableFlavorsRequest]) (*connect.Response[v1.AvaliableFlavorsResponse], error) {
|
|
return c.avaliableFlavors.CallUnary(ctx, req)
|
|
}
|
|
|
|
// CreateProfile calls vpn.v1.ProfilesService.CreateProfile.
|
|
func (c *profilesServiceClient) CreateProfile(ctx context.Context, req *connect.Request[v1.CreateProfileRequest]) (*connect.Response[v1.CreateProfileResponse], error) {
|
|
return c.createProfile.CallUnary(ctx, req)
|
|
}
|
|
|
|
// ProfilesServiceHandler is an implementation of the vpn.v1.ProfilesService service.
|
|
type ProfilesServiceHandler interface {
|
|
AvaliableFlavors(context.Context, *connect.Request[v1.AvaliableFlavorsRequest]) (*connect.Response[v1.AvaliableFlavorsResponse], error)
|
|
CreateProfile(context.Context, *connect.Request[v1.CreateProfileRequest]) (*connect.Response[v1.CreateProfileResponse], error)
|
|
}
|
|
|
|
// NewProfilesServiceHandler 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 NewProfilesServiceHandler(svc ProfilesServiceHandler, opts ...connect.HandlerOption) (string, http.Handler) {
|
|
profilesServiceAvaliableFlavorsHandler := connect.NewUnaryHandler(
|
|
ProfilesServiceAvaliableFlavorsProcedure,
|
|
svc.AvaliableFlavors,
|
|
connect.WithSchema(profilesServiceAvaliableFlavorsMethodDescriptor),
|
|
connect.WithHandlerOptions(opts...),
|
|
)
|
|
profilesServiceCreateProfileHandler := connect.NewUnaryHandler(
|
|
ProfilesServiceCreateProfileProcedure,
|
|
svc.CreateProfile,
|
|
connect.WithSchema(profilesServiceCreateProfileMethodDescriptor),
|
|
connect.WithHandlerOptions(opts...),
|
|
)
|
|
return "/vpn.v1.ProfilesService/", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
switch r.URL.Path {
|
|
case ProfilesServiceAvaliableFlavorsProcedure:
|
|
profilesServiceAvaliableFlavorsHandler.ServeHTTP(w, r)
|
|
case ProfilesServiceCreateProfileProcedure:
|
|
profilesServiceCreateProfileHandler.ServeHTTP(w, r)
|
|
default:
|
|
http.NotFound(w, r)
|
|
}
|
|
})
|
|
}
|
|
|
|
// UnimplementedProfilesServiceHandler returns CodeUnimplemented from all methods.
|
|
type UnimplementedProfilesServiceHandler struct{}
|
|
|
|
func (UnimplementedProfilesServiceHandler) AvaliableFlavors(context.Context, *connect.Request[v1.AvaliableFlavorsRequest]) (*connect.Response[v1.AvaliableFlavorsResponse], error) {
|
|
return nil, connect.NewError(connect.CodeUnimplemented, errors.New("vpn.v1.ProfilesService.AvaliableFlavors is not implemented"))
|
|
}
|
|
|
|
func (UnimplementedProfilesServiceHandler) CreateProfile(context.Context, *connect.Request[v1.CreateProfileRequest]) (*connect.Response[v1.CreateProfileResponse], error) {
|
|
return nil, connect.NewError(connect.CodeUnimplemented, errors.New("vpn.v1.ProfilesService.CreateProfile is not implemented"))
|
|
}
|