2023-12-30 19:17:19 +00:00
// Code generated by protoc-gen-grpc-gateway. DO NOT EDIT.
// source: contributors/v1/service.proto
/ *
Package contributorsv1 is a reverse proxy .
It translates gRPC into RESTful JSON APIs .
* /
package contributorsv1
import (
"context"
"io"
"net/http"
"github.com/grpc-ecosystem/grpc-gateway/v2/runtime"
"github.com/grpc-ecosystem/grpc-gateway/v2/utilities"
"google.golang.org/grpc"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/grpclog"
"google.golang.org/grpc/metadata"
"google.golang.org/grpc/status"
"google.golang.org/protobuf/proto"
)
// Suppress "imported and not used" errors
var _ codes . Code
var _ io . Reader
var _ status . Status
var _ = runtime . String
var _ = utilities . NewDoubleArray
var _ = metadata . Join
func request_ContributorService_List_0 ( ctx context . Context , marshaler runtime . Marshaler , client ContributorServiceClient , req * http . Request , pathParams map [ string ] string ) ( proto . Message , runtime . ServerMetadata , error ) {
var protoReq ListRequest
var metadata runtime . ServerMetadata
var (
val string
ok bool
err error
_ = err
)
val , ok = pathParams [ "product_id" ]
if ! ok {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "missing parameter %s" , "product_id" )
}
protoReq . ProductId , err = runtime . String ( val )
if err != nil {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "type mismatch, parameter: %s, error: %v" , "product_id" , err )
}
msg , err := client . List ( ctx , & protoReq , grpc . Header ( & metadata . HeaderMD ) , grpc . Trailer ( & metadata . TrailerMD ) )
return msg , metadata , err
}
func local_request_ContributorService_List_0 ( ctx context . Context , marshaler runtime . Marshaler , server ContributorServiceServer , req * http . Request , pathParams map [ string ] string ) ( proto . Message , runtime . ServerMetadata , error ) {
var protoReq ListRequest
var metadata runtime . ServerMetadata
var (
val string
ok bool
err error
_ = err
)
val , ok = pathParams [ "product_id" ]
if ! ok {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "missing parameter %s" , "product_id" )
}
protoReq . ProductId , err = runtime . String ( val )
if err != nil {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "type mismatch, parameter: %s, error: %v" , "product_id" , err )
}
msg , err := server . List ( ctx , & protoReq )
return msg , metadata , err
}
2023-12-31 19:44:12 +00:00
func request_ContributorService_Invite_0 ( ctx context . Context , marshaler runtime . Marshaler , client ContributorServiceClient , req * http . Request , pathParams map [ string ] string ) ( proto . Message , runtime . ServerMetadata , error ) {
var protoReq InviteRequest
2023-12-30 19:17:19 +00:00
var metadata runtime . ServerMetadata
newReader , berr := utilities . IOReaderFactory ( req . Body )
if berr != nil {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "%v" , berr )
}
if err := marshaler . NewDecoder ( newReader ( ) ) . Decode ( & protoReq ) ; err != nil && err != io . EOF {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "%v" , err )
}
var (
val string
ok bool
err error
_ = err
)
2023-12-31 19:44:12 +00:00
val , ok = pathParams [ "contributor.product_id" ]
2023-12-30 19:17:19 +00:00
if ! ok {
2023-12-31 19:44:12 +00:00
return nil , metadata , status . Errorf ( codes . InvalidArgument , "missing parameter %s" , "contributor.product_id" )
2023-12-30 19:17:19 +00:00
}
2023-12-31 19:44:12 +00:00
err = runtime . PopulateFieldFromPath ( & protoReq , "contributor.product_id" , val )
2023-12-30 19:17:19 +00:00
if err != nil {
2023-12-31 19:44:12 +00:00
return nil , metadata , status . Errorf ( codes . InvalidArgument , "type mismatch, parameter: %s, error: %v" , "contributor.product_id" , err )
2023-12-30 19:17:19 +00:00
}
2023-12-31 19:44:12 +00:00
msg , err := client . Invite ( ctx , & protoReq , grpc . Header ( & metadata . HeaderMD ) , grpc . Trailer ( & metadata . TrailerMD ) )
2023-12-30 19:17:19 +00:00
return msg , metadata , err
}
2023-12-31 19:44:12 +00:00
func local_request_ContributorService_Invite_0 ( ctx context . Context , marshaler runtime . Marshaler , server ContributorServiceServer , req * http . Request , pathParams map [ string ] string ) ( proto . Message , runtime . ServerMetadata , error ) {
var protoReq InviteRequest
2023-12-30 19:17:19 +00:00
var metadata runtime . ServerMetadata
newReader , berr := utilities . IOReaderFactory ( req . Body )
if berr != nil {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "%v" , berr )
}
if err := marshaler . NewDecoder ( newReader ( ) ) . Decode ( & protoReq ) ; err != nil && err != io . EOF {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "%v" , err )
}
var (
val string
ok bool
err error
_ = err
)
2023-12-31 19:44:12 +00:00
val , ok = pathParams [ "contributor.product_id" ]
2023-12-30 19:17:19 +00:00
if ! ok {
2023-12-31 19:44:12 +00:00
return nil , metadata , status . Errorf ( codes . InvalidArgument , "missing parameter %s" , "contributor.product_id" )
2023-12-30 19:17:19 +00:00
}
2023-12-31 19:44:12 +00:00
err = runtime . PopulateFieldFromPath ( & protoReq , "contributor.product_id" , val )
2023-12-30 19:17:19 +00:00
if err != nil {
2023-12-31 19:44:12 +00:00
return nil , metadata , status . Errorf ( codes . InvalidArgument , "type mismatch, parameter: %s, error: %v" , "contributor.product_id" , err )
2023-12-30 19:17:19 +00:00
}
2023-12-31 19:44:12 +00:00
msg , err := server . Invite ( ctx , & protoReq )
2023-12-30 19:17:19 +00:00
return msg , metadata , err
}
func request_ContributorService_Update_0 ( ctx context . Context , marshaler runtime . Marshaler , client ContributorServiceClient , req * http . Request , pathParams map [ string ] string ) ( proto . Message , runtime . ServerMetadata , error ) {
var protoReq UpdateRequest
var metadata runtime . ServerMetadata
newReader , berr := utilities . IOReaderFactory ( req . Body )
if berr != nil {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "%v" , berr )
}
if err := marshaler . NewDecoder ( newReader ( ) ) . Decode ( & protoReq ) ; err != nil && err != io . EOF {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "%v" , err )
}
var (
val string
ok bool
err error
_ = err
)
2023-12-31 19:44:12 +00:00
val , ok = pathParams [ "contributor.product_id" ]
2023-12-30 19:17:19 +00:00
if ! ok {
2023-12-31 19:44:12 +00:00
return nil , metadata , status . Errorf ( codes . InvalidArgument , "missing parameter %s" , "contributor.product_id" )
2023-12-30 19:17:19 +00:00
}
2023-12-31 19:44:12 +00:00
err = runtime . PopulateFieldFromPath ( & protoReq , "contributor.product_id" , val )
2023-12-30 19:17:19 +00:00
if err != nil {
2023-12-31 19:44:12 +00:00
return nil , metadata , status . Errorf ( codes . InvalidArgument , "type mismatch, parameter: %s, error: %v" , "contributor.product_id" , err )
2023-12-30 19:17:19 +00:00
}
2023-12-31 19:44:12 +00:00
val , ok = pathParams [ "contributor.id" ]
2023-12-30 19:17:19 +00:00
if ! ok {
2023-12-31 19:44:12 +00:00
return nil , metadata , status . Errorf ( codes . InvalidArgument , "missing parameter %s" , "contributor.id" )
2023-12-30 19:17:19 +00:00
}
2023-12-31 19:44:12 +00:00
err = runtime . PopulateFieldFromPath ( & protoReq , "contributor.id" , val )
2023-12-30 19:17:19 +00:00
if err != nil {
2023-12-31 19:44:12 +00:00
return nil , metadata , status . Errorf ( codes . InvalidArgument , "type mismatch, parameter: %s, error: %v" , "contributor.id" , err )
2023-12-30 19:17:19 +00:00
}
msg , err := client . Update ( ctx , & protoReq , grpc . Header ( & metadata . HeaderMD ) , grpc . Trailer ( & metadata . TrailerMD ) )
return msg , metadata , err
}
func local_request_ContributorService_Update_0 ( ctx context . Context , marshaler runtime . Marshaler , server ContributorServiceServer , req * http . Request , pathParams map [ string ] string ) ( proto . Message , runtime . ServerMetadata , error ) {
var protoReq UpdateRequest
var metadata runtime . ServerMetadata
newReader , berr := utilities . IOReaderFactory ( req . Body )
if berr != nil {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "%v" , berr )
}
if err := marshaler . NewDecoder ( newReader ( ) ) . Decode ( & protoReq ) ; err != nil && err != io . EOF {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "%v" , err )
}
var (
val string
ok bool
err error
_ = err
)
2023-12-31 19:44:12 +00:00
val , ok = pathParams [ "contributor.product_id" ]
2023-12-30 19:17:19 +00:00
if ! ok {
2023-12-31 19:44:12 +00:00
return nil , metadata , status . Errorf ( codes . InvalidArgument , "missing parameter %s" , "contributor.product_id" )
2023-12-30 19:17:19 +00:00
}
2023-12-31 19:44:12 +00:00
err = runtime . PopulateFieldFromPath ( & protoReq , "contributor.product_id" , val )
2023-12-30 19:17:19 +00:00
if err != nil {
2023-12-31 19:44:12 +00:00
return nil , metadata , status . Errorf ( codes . InvalidArgument , "type mismatch, parameter: %s, error: %v" , "contributor.product_id" , err )
2023-12-30 19:17:19 +00:00
}
2023-12-31 19:44:12 +00:00
val , ok = pathParams [ "contributor.id" ]
2023-12-30 19:17:19 +00:00
if ! ok {
2023-12-31 19:44:12 +00:00
return nil , metadata , status . Errorf ( codes . InvalidArgument , "missing parameter %s" , "contributor.id" )
2023-12-30 19:17:19 +00:00
}
2023-12-31 19:44:12 +00:00
err = runtime . PopulateFieldFromPath ( & protoReq , "contributor.id" , val )
2023-12-30 19:17:19 +00:00
if err != nil {
2023-12-31 19:44:12 +00:00
return nil , metadata , status . Errorf ( codes . InvalidArgument , "type mismatch, parameter: %s, error: %v" , "contributor.id" , err )
2023-12-30 19:17:19 +00:00
}
msg , err := server . Update ( ctx , & protoReq )
return msg , metadata , err
}
2023-12-31 19:44:12 +00:00
func request_ContributorService_Revoke_0 ( ctx context . Context , marshaler runtime . Marshaler , client ContributorServiceClient , req * http . Request , pathParams map [ string ] string ) ( proto . Message , runtime . ServerMetadata , error ) {
var protoReq RevokeRequest
2023-12-30 19:17:19 +00:00
var metadata runtime . ServerMetadata
var (
val string
ok bool
err error
_ = err
)
val , ok = pathParams [ "product_id" ]
if ! ok {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "missing parameter %s" , "product_id" )
}
protoReq . ProductId , err = runtime . String ( val )
if err != nil {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "type mismatch, parameter: %s, error: %v" , "product_id" , err )
}
val , ok = pathParams [ "contributor_id" ]
if ! ok {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "missing parameter %s" , "contributor_id" )
}
protoReq . ContributorId , err = runtime . String ( val )
if err != nil {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "type mismatch, parameter: %s, error: %v" , "contributor_id" , err )
}
2023-12-31 19:44:12 +00:00
msg , err := client . Revoke ( ctx , & protoReq , grpc . Header ( & metadata . HeaderMD ) , grpc . Trailer ( & metadata . TrailerMD ) )
2023-12-30 19:17:19 +00:00
return msg , metadata , err
}
2023-12-31 19:44:12 +00:00
func local_request_ContributorService_Revoke_0 ( ctx context . Context , marshaler runtime . Marshaler , server ContributorServiceServer , req * http . Request , pathParams map [ string ] string ) ( proto . Message , runtime . ServerMetadata , error ) {
var protoReq RevokeRequest
2023-12-30 19:17:19 +00:00
var metadata runtime . ServerMetadata
var (
val string
ok bool
err error
_ = err
)
val , ok = pathParams [ "product_id" ]
if ! ok {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "missing parameter %s" , "product_id" )
}
protoReq . ProductId , err = runtime . String ( val )
if err != nil {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "type mismatch, parameter: %s, error: %v" , "product_id" , err )
}
val , ok = pathParams [ "contributor_id" ]
if ! ok {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "missing parameter %s" , "contributor_id" )
}
protoReq . ContributorId , err = runtime . String ( val )
if err != nil {
return nil , metadata , status . Errorf ( codes . InvalidArgument , "type mismatch, parameter: %s, error: %v" , "contributor_id" , err )
}
2023-12-31 19:44:12 +00:00
msg , err := server . Revoke ( ctx , & protoReq )
2023-12-30 19:17:19 +00:00
return msg , metadata , err
}
// RegisterContributorServiceHandlerServer registers the http handlers for service ContributorService to "mux".
// UnaryRPC :call ContributorServiceServer directly.
// StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906.
// Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterContributorServiceHandlerFromEndpoint instead.
func RegisterContributorServiceHandlerServer ( ctx context . Context , mux * runtime . ServeMux , server ContributorServiceServer ) error {
mux . Handle ( "GET" , pattern_ContributorService_List_0 , func ( w http . ResponseWriter , req * http . Request , pathParams map [ string ] string ) {
ctx , cancel := context . WithCancel ( req . Context ( ) )
defer cancel ( )
var stream runtime . ServerTransportStream
ctx = grpc . NewContextWithServerTransportStream ( ctx , & stream )
inboundMarshaler , outboundMarshaler := runtime . MarshalerForRequest ( mux , req )
var err error
var annotatedContext context . Context
annotatedContext , err = runtime . AnnotateIncomingContext ( ctx , mux , req , "/contributors.v1.ContributorService/List" , runtime . WithHTTPPathPattern ( "/v1/products/{product_id}/contributors" ) )
if err != nil {
runtime . HTTPError ( ctx , mux , outboundMarshaler , w , req , err )
return
}
resp , md , err := local_request_ContributorService_List_0 ( annotatedContext , inboundMarshaler , server , req , pathParams )
md . HeaderMD , md . TrailerMD = metadata . Join ( md . HeaderMD , stream . Header ( ) ) , metadata . Join ( md . TrailerMD , stream . Trailer ( ) )
annotatedContext = runtime . NewServerMetadataContext ( annotatedContext , md )
if err != nil {
runtime . HTTPError ( annotatedContext , mux , outboundMarshaler , w , req , err )
return
}
forward_ContributorService_List_0 ( annotatedContext , mux , outboundMarshaler , w , req , resp , mux . GetForwardResponseOptions ( ) ... )
} )
2023-12-31 19:44:12 +00:00
mux . Handle ( "POST" , pattern_ContributorService_Invite_0 , func ( w http . ResponseWriter , req * http . Request , pathParams map [ string ] string ) {
2023-12-30 19:17:19 +00:00
ctx , cancel := context . WithCancel ( req . Context ( ) )
defer cancel ( )
var stream runtime . ServerTransportStream
ctx = grpc . NewContextWithServerTransportStream ( ctx , & stream )
inboundMarshaler , outboundMarshaler := runtime . MarshalerForRequest ( mux , req )
var err error
var annotatedContext context . Context
2023-12-31 19:44:12 +00:00
annotatedContext , err = runtime . AnnotateIncomingContext ( ctx , mux , req , "/contributors.v1.ContributorService/Invite" , runtime . WithHTTPPathPattern ( "/v1/products/{contributor.product_id}/contributors" ) )
2023-12-30 19:17:19 +00:00
if err != nil {
runtime . HTTPError ( ctx , mux , outboundMarshaler , w , req , err )
return
}
2023-12-31 19:44:12 +00:00
resp , md , err := local_request_ContributorService_Invite_0 ( annotatedContext , inboundMarshaler , server , req , pathParams )
2023-12-30 19:17:19 +00:00
md . HeaderMD , md . TrailerMD = metadata . Join ( md . HeaderMD , stream . Header ( ) ) , metadata . Join ( md . TrailerMD , stream . Trailer ( ) )
annotatedContext = runtime . NewServerMetadataContext ( annotatedContext , md )
if err != nil {
runtime . HTTPError ( annotatedContext , mux , outboundMarshaler , w , req , err )
return
}
2023-12-31 19:44:12 +00:00
forward_ContributorService_Invite_0 ( annotatedContext , mux , outboundMarshaler , w , req , resp , mux . GetForwardResponseOptions ( ) ... )
2023-12-30 19:17:19 +00:00
} )
mux . Handle ( "POST" , pattern_ContributorService_Update_0 , func ( w http . ResponseWriter , req * http . Request , pathParams map [ string ] string ) {
ctx , cancel := context . WithCancel ( req . Context ( ) )
defer cancel ( )
var stream runtime . ServerTransportStream
ctx = grpc . NewContextWithServerTransportStream ( ctx , & stream )
inboundMarshaler , outboundMarshaler := runtime . MarshalerForRequest ( mux , req )
var err error
var annotatedContext context . Context
2023-12-31 19:44:12 +00:00
annotatedContext , err = runtime . AnnotateIncomingContext ( ctx , mux , req , "/contributors.v1.ContributorService/Update" , runtime . WithHTTPPathPattern ( "/v1/products/{contributor.product_id}/contributors/{contributor.id}" ) )
2023-12-30 19:17:19 +00:00
if err != nil {
runtime . HTTPError ( ctx , mux , outboundMarshaler , w , req , err )
return
}
resp , md , err := local_request_ContributorService_Update_0 ( annotatedContext , inboundMarshaler , server , req , pathParams )
md . HeaderMD , md . TrailerMD = metadata . Join ( md . HeaderMD , stream . Header ( ) ) , metadata . Join ( md . TrailerMD , stream . Trailer ( ) )
annotatedContext = runtime . NewServerMetadataContext ( annotatedContext , md )
if err != nil {
runtime . HTTPError ( annotatedContext , mux , outboundMarshaler , w , req , err )
return
}
forward_ContributorService_Update_0 ( annotatedContext , mux , outboundMarshaler , w , req , resp , mux . GetForwardResponseOptions ( ) ... )
} )
2023-12-31 19:44:12 +00:00
mux . Handle ( "DELETE" , pattern_ContributorService_Revoke_0 , func ( w http . ResponseWriter , req * http . Request , pathParams map [ string ] string ) {
2023-12-30 19:17:19 +00:00
ctx , cancel := context . WithCancel ( req . Context ( ) )
defer cancel ( )
var stream runtime . ServerTransportStream
ctx = grpc . NewContextWithServerTransportStream ( ctx , & stream )
inboundMarshaler , outboundMarshaler := runtime . MarshalerForRequest ( mux , req )
var err error
var annotatedContext context . Context
2023-12-31 19:44:12 +00:00
annotatedContext , err = runtime . AnnotateIncomingContext ( ctx , mux , req , "/contributors.v1.ContributorService/Revoke" , runtime . WithHTTPPathPattern ( "/v1/products/{product_id}/contributors/{contributor_id}" ) )
2023-12-30 19:17:19 +00:00
if err != nil {
runtime . HTTPError ( ctx , mux , outboundMarshaler , w , req , err )
return
}
2023-12-31 19:44:12 +00:00
resp , md , err := local_request_ContributorService_Revoke_0 ( annotatedContext , inboundMarshaler , server , req , pathParams )
2023-12-30 19:17:19 +00:00
md . HeaderMD , md . TrailerMD = metadata . Join ( md . HeaderMD , stream . Header ( ) ) , metadata . Join ( md . TrailerMD , stream . Trailer ( ) )
annotatedContext = runtime . NewServerMetadataContext ( annotatedContext , md )
if err != nil {
runtime . HTTPError ( annotatedContext , mux , outboundMarshaler , w , req , err )
return
}
2023-12-31 19:44:12 +00:00
forward_ContributorService_Revoke_0 ( annotatedContext , mux , outboundMarshaler , w , req , resp , mux . GetForwardResponseOptions ( ) ... )
2023-12-30 19:17:19 +00:00
} )
return nil
}
// RegisterContributorServiceHandlerFromEndpoint is same as RegisterContributorServiceHandler but
// automatically dials to "endpoint" and closes the connection when "ctx" gets done.
func RegisterContributorServiceHandlerFromEndpoint ( ctx context . Context , mux * runtime . ServeMux , endpoint string , opts [ ] grpc . DialOption ) ( err error ) {
conn , err := grpc . DialContext ( ctx , endpoint , opts ... )
if err != nil {
return err
}
defer func ( ) {
if err != nil {
if cerr := conn . Close ( ) ; cerr != nil {
grpclog . Infof ( "Failed to close conn to %s: %v" , endpoint , cerr )
}
return
}
go func ( ) {
<- ctx . Done ( )
if cerr := conn . Close ( ) ; cerr != nil {
grpclog . Infof ( "Failed to close conn to %s: %v" , endpoint , cerr )
}
} ( )
} ( )
return RegisterContributorServiceHandler ( ctx , mux , conn )
}
// RegisterContributorServiceHandler registers the http handlers for service ContributorService to "mux".
// The handlers forward requests to the grpc endpoint over "conn".
func RegisterContributorServiceHandler ( ctx context . Context , mux * runtime . ServeMux , conn * grpc . ClientConn ) error {
return RegisterContributorServiceHandlerClient ( ctx , mux , NewContributorServiceClient ( conn ) )
}
// RegisterContributorServiceHandlerClient registers the http handlers for service ContributorService
// to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "ContributorServiceClient".
// Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "ContributorServiceClient"
// doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in
// "ContributorServiceClient" to call the correct interceptors.
func RegisterContributorServiceHandlerClient ( ctx context . Context , mux * runtime . ServeMux , client ContributorServiceClient ) error {
mux . Handle ( "GET" , pattern_ContributorService_List_0 , func ( w http . ResponseWriter , req * http . Request , pathParams map [ string ] string ) {
ctx , cancel := context . WithCancel ( req . Context ( ) )
defer cancel ( )
inboundMarshaler , outboundMarshaler := runtime . MarshalerForRequest ( mux , req )
var err error
var annotatedContext context . Context
annotatedContext , err = runtime . AnnotateContext ( ctx , mux , req , "/contributors.v1.ContributorService/List" , runtime . WithHTTPPathPattern ( "/v1/products/{product_id}/contributors" ) )
if err != nil {
runtime . HTTPError ( ctx , mux , outboundMarshaler , w , req , err )
return
}
resp , md , err := request_ContributorService_List_0 ( annotatedContext , inboundMarshaler , client , req , pathParams )
annotatedContext = runtime . NewServerMetadataContext ( annotatedContext , md )
if err != nil {
runtime . HTTPError ( annotatedContext , mux , outboundMarshaler , w , req , err )
return
}
forward_ContributorService_List_0 ( annotatedContext , mux , outboundMarshaler , w , req , resp , mux . GetForwardResponseOptions ( ) ... )
} )
2023-12-31 19:44:12 +00:00
mux . Handle ( "POST" , pattern_ContributorService_Invite_0 , func ( w http . ResponseWriter , req * http . Request , pathParams map [ string ] string ) {
2023-12-30 19:17:19 +00:00
ctx , cancel := context . WithCancel ( req . Context ( ) )
defer cancel ( )
inboundMarshaler , outboundMarshaler := runtime . MarshalerForRequest ( mux , req )
var err error
var annotatedContext context . Context
2023-12-31 19:44:12 +00:00
annotatedContext , err = runtime . AnnotateContext ( ctx , mux , req , "/contributors.v1.ContributorService/Invite" , runtime . WithHTTPPathPattern ( "/v1/products/{contributor.product_id}/contributors" ) )
2023-12-30 19:17:19 +00:00
if err != nil {
runtime . HTTPError ( ctx , mux , outboundMarshaler , w , req , err )
return
}
2023-12-31 19:44:12 +00:00
resp , md , err := request_ContributorService_Invite_0 ( annotatedContext , inboundMarshaler , client , req , pathParams )
2023-12-30 19:17:19 +00:00
annotatedContext = runtime . NewServerMetadataContext ( annotatedContext , md )
if err != nil {
runtime . HTTPError ( annotatedContext , mux , outboundMarshaler , w , req , err )
return
}
2023-12-31 19:44:12 +00:00
forward_ContributorService_Invite_0 ( annotatedContext , mux , outboundMarshaler , w , req , resp , mux . GetForwardResponseOptions ( ) ... )
2023-12-30 19:17:19 +00:00
} )
mux . Handle ( "POST" , pattern_ContributorService_Update_0 , func ( w http . ResponseWriter , req * http . Request , pathParams map [ string ] string ) {
ctx , cancel := context . WithCancel ( req . Context ( ) )
defer cancel ( )
inboundMarshaler , outboundMarshaler := runtime . MarshalerForRequest ( mux , req )
var err error
var annotatedContext context . Context
2023-12-31 19:44:12 +00:00
annotatedContext , err = runtime . AnnotateContext ( ctx , mux , req , "/contributors.v1.ContributorService/Update" , runtime . WithHTTPPathPattern ( "/v1/products/{contributor.product_id}/contributors/{contributor.id}" ) )
2023-12-30 19:17:19 +00:00
if err != nil {
runtime . HTTPError ( ctx , mux , outboundMarshaler , w , req , err )
return
}
resp , md , err := request_ContributorService_Update_0 ( annotatedContext , inboundMarshaler , client , req , pathParams )
annotatedContext = runtime . NewServerMetadataContext ( annotatedContext , md )
if err != nil {
runtime . HTTPError ( annotatedContext , mux , outboundMarshaler , w , req , err )
return
}
forward_ContributorService_Update_0 ( annotatedContext , mux , outboundMarshaler , w , req , resp , mux . GetForwardResponseOptions ( ) ... )
} )
2023-12-31 19:44:12 +00:00
mux . Handle ( "DELETE" , pattern_ContributorService_Revoke_0 , func ( w http . ResponseWriter , req * http . Request , pathParams map [ string ] string ) {
2023-12-30 19:17:19 +00:00
ctx , cancel := context . WithCancel ( req . Context ( ) )
defer cancel ( )
inboundMarshaler , outboundMarshaler := runtime . MarshalerForRequest ( mux , req )
var err error
var annotatedContext context . Context
2023-12-31 19:44:12 +00:00
annotatedContext , err = runtime . AnnotateContext ( ctx , mux , req , "/contributors.v1.ContributorService/Revoke" , runtime . WithHTTPPathPattern ( "/v1/products/{product_id}/contributors/{contributor_id}" ) )
2023-12-30 19:17:19 +00:00
if err != nil {
runtime . HTTPError ( ctx , mux , outboundMarshaler , w , req , err )
return
}
2023-12-31 19:44:12 +00:00
resp , md , err := request_ContributorService_Revoke_0 ( annotatedContext , inboundMarshaler , client , req , pathParams )
2023-12-30 19:17:19 +00:00
annotatedContext = runtime . NewServerMetadataContext ( annotatedContext , md )
if err != nil {
runtime . HTTPError ( annotatedContext , mux , outboundMarshaler , w , req , err )
return
}
2023-12-31 19:44:12 +00:00
forward_ContributorService_Revoke_0 ( annotatedContext , mux , outboundMarshaler , w , req , resp , mux . GetForwardResponseOptions ( ) ... )
2023-12-30 19:17:19 +00:00
} )
return nil
}
var (
pattern_ContributorService_List_0 = runtime . MustPattern ( runtime . NewPattern ( 1 , [ ] int { 2 , 0 , 2 , 1 , 1 , 0 , 4 , 1 , 5 , 2 , 2 , 3 } , [ ] string { "v1" , "products" , "product_id" , "contributors" } , "" ) )
2023-12-31 19:44:12 +00:00
pattern_ContributorService_Invite_0 = runtime . MustPattern ( runtime . NewPattern ( 1 , [ ] int { 2 , 0 , 2 , 1 , 1 , 0 , 4 , 1 , 5 , 2 , 2 , 3 } , [ ] string { "v1" , "products" , "contributor.product_id" , "contributors" } , "" ) )
2023-12-30 19:17:19 +00:00
2023-12-31 19:44:12 +00:00
pattern_ContributorService_Update_0 = runtime . MustPattern ( runtime . NewPattern ( 1 , [ ] int { 2 , 0 , 2 , 1 , 1 , 0 , 4 , 1 , 5 , 2 , 2 , 3 , 1 , 0 , 4 , 1 , 5 , 4 } , [ ] string { "v1" , "products" , "contributor.product_id" , "contributors" , "contributor.id" } , "" ) )
2023-12-30 19:17:19 +00:00
2023-12-31 19:44:12 +00:00
pattern_ContributorService_Revoke_0 = runtime . MustPattern ( runtime . NewPattern ( 1 , [ ] int { 2 , 0 , 2 , 1 , 1 , 0 , 4 , 1 , 5 , 2 , 2 , 3 , 1 , 0 , 4 , 1 , 5 , 4 } , [ ] string { "v1" , "products" , "product_id" , "contributors" , "contributor_id" } , "" ) )
2023-12-30 19:17:19 +00:00
)
var (
forward_ContributorService_List_0 = runtime . ForwardResponseMessage
2023-12-31 19:44:12 +00:00
forward_ContributorService_Invite_0 = runtime . ForwardResponseMessage
2023-12-30 19:17:19 +00:00
forward_ContributorService_Update_0 = runtime . ForwardResponseMessage
2023-12-31 19:44:12 +00:00
forward_ContributorService_Revoke_0 = runtime . ForwardResponseMessage
2023-12-30 19:17:19 +00:00
)