752 lines
37 KiB
Go
752 lines
37 KiB
Go
|
|
// Code generated by protoc-gen-grpc-gateway. DO NOT EDIT.
|
||
|
|
// source: note.proto
|
||
|
|
|
||
|
|
/*
|
||
|
|
Package cloud is a reverse proxy.
|
||
|
|
|
||
|
|
It translates gRPC into RESTful JSON APIs.
|
||
|
|
*/
|
||
|
|
package cloud
|
||
|
|
|
||
|
|
import (
|
||
|
|
"context"
|
||
|
|
"errors"
|
||
|
|
"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
|
||
|
|
_ io.Reader
|
||
|
|
_ status.Status
|
||
|
|
_ = errors.New
|
||
|
|
_ = runtime.String
|
||
|
|
_ = utilities.NewDoubleArray
|
||
|
|
_ = metadata.Join
|
||
|
|
)
|
||
|
|
|
||
|
|
func request_Note_CreateNote_0(ctx context.Context, marshaler runtime.Marshaler, client NoteClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
|
||
|
|
var (
|
||
|
|
protoReq CreateNoteRequest
|
||
|
|
metadata runtime.ServerMetadata
|
||
|
|
)
|
||
|
|
if err := marshaler.NewDecoder(req.Body).Decode(&protoReq); err != nil && !errors.Is(err, io.EOF) {
|
||
|
|
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
|
||
|
|
}
|
||
|
|
if req.Body != nil {
|
||
|
|
_, _ = io.Copy(io.Discard, req.Body)
|
||
|
|
}
|
||
|
|
msg, err := client.CreateNote(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD))
|
||
|
|
return msg, metadata, err
|
||
|
|
}
|
||
|
|
|
||
|
|
func local_request_Note_CreateNote_0(ctx context.Context, marshaler runtime.Marshaler, server NoteServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
|
||
|
|
var (
|
||
|
|
protoReq CreateNoteRequest
|
||
|
|
metadata runtime.ServerMetadata
|
||
|
|
)
|
||
|
|
if err := marshaler.NewDecoder(req.Body).Decode(&protoReq); err != nil && !errors.Is(err, io.EOF) {
|
||
|
|
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
|
||
|
|
}
|
||
|
|
msg, err := server.CreateNote(ctx, &protoReq)
|
||
|
|
return msg, metadata, err
|
||
|
|
}
|
||
|
|
|
||
|
|
func request_Note_GetNote_0(ctx context.Context, marshaler runtime.Marshaler, client NoteClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
|
||
|
|
var (
|
||
|
|
protoReq IdentRequest
|
||
|
|
metadata runtime.ServerMetadata
|
||
|
|
)
|
||
|
|
if err := marshaler.NewDecoder(req.Body).Decode(&protoReq); err != nil && !errors.Is(err, io.EOF) {
|
||
|
|
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
|
||
|
|
}
|
||
|
|
if req.Body != nil {
|
||
|
|
_, _ = io.Copy(io.Discard, req.Body)
|
||
|
|
}
|
||
|
|
msg, err := client.GetNote(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD))
|
||
|
|
return msg, metadata, err
|
||
|
|
}
|
||
|
|
|
||
|
|
func local_request_Note_GetNote_0(ctx context.Context, marshaler runtime.Marshaler, server NoteServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
|
||
|
|
var (
|
||
|
|
protoReq IdentRequest
|
||
|
|
metadata runtime.ServerMetadata
|
||
|
|
)
|
||
|
|
if err := marshaler.NewDecoder(req.Body).Decode(&protoReq); err != nil && !errors.Is(err, io.EOF) {
|
||
|
|
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
|
||
|
|
}
|
||
|
|
msg, err := server.GetNote(ctx, &protoReq)
|
||
|
|
return msg, metadata, err
|
||
|
|
}
|
||
|
|
|
||
|
|
func request_Note_UpdateNote_0(ctx context.Context, marshaler runtime.Marshaler, client NoteClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
|
||
|
|
var (
|
||
|
|
protoReq CloudNoteItem
|
||
|
|
metadata runtime.ServerMetadata
|
||
|
|
)
|
||
|
|
if err := marshaler.NewDecoder(req.Body).Decode(&protoReq); err != nil && !errors.Is(err, io.EOF) {
|
||
|
|
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
|
||
|
|
}
|
||
|
|
if req.Body != nil {
|
||
|
|
_, _ = io.Copy(io.Discard, req.Body)
|
||
|
|
}
|
||
|
|
msg, err := client.UpdateNote(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD))
|
||
|
|
return msg, metadata, err
|
||
|
|
}
|
||
|
|
|
||
|
|
func local_request_Note_UpdateNote_0(ctx context.Context, marshaler runtime.Marshaler, server NoteServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
|
||
|
|
var (
|
||
|
|
protoReq CloudNoteItem
|
||
|
|
metadata runtime.ServerMetadata
|
||
|
|
)
|
||
|
|
if err := marshaler.NewDecoder(req.Body).Decode(&protoReq); err != nil && !errors.Is(err, io.EOF) {
|
||
|
|
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
|
||
|
|
}
|
||
|
|
msg, err := server.UpdateNote(ctx, &protoReq)
|
||
|
|
return msg, metadata, err
|
||
|
|
}
|
||
|
|
|
||
|
|
func request_Note_DeleteNote_0(ctx context.Context, marshaler runtime.Marshaler, client NoteClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
|
||
|
|
var (
|
||
|
|
protoReq IdentRequest
|
||
|
|
metadata runtime.ServerMetadata
|
||
|
|
)
|
||
|
|
if err := marshaler.NewDecoder(req.Body).Decode(&protoReq); err != nil && !errors.Is(err, io.EOF) {
|
||
|
|
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
|
||
|
|
}
|
||
|
|
if req.Body != nil {
|
||
|
|
_, _ = io.Copy(io.Discard, req.Body)
|
||
|
|
}
|
||
|
|
msg, err := client.DeleteNote(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD))
|
||
|
|
return msg, metadata, err
|
||
|
|
}
|
||
|
|
|
||
|
|
func local_request_Note_DeleteNote_0(ctx context.Context, marshaler runtime.Marshaler, server NoteServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
|
||
|
|
var (
|
||
|
|
protoReq IdentRequest
|
||
|
|
metadata runtime.ServerMetadata
|
||
|
|
)
|
||
|
|
if err := marshaler.NewDecoder(req.Body).Decode(&protoReq); err != nil && !errors.Is(err, io.EOF) {
|
||
|
|
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
|
||
|
|
}
|
||
|
|
msg, err := server.DeleteNote(ctx, &protoReq)
|
||
|
|
return msg, metadata, err
|
||
|
|
}
|
||
|
|
|
||
|
|
func request_Note_ListNotes_0(ctx context.Context, marshaler runtime.Marshaler, client NoteClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
|
||
|
|
var (
|
||
|
|
protoReq FetchRequest
|
||
|
|
metadata runtime.ServerMetadata
|
||
|
|
)
|
||
|
|
if err := marshaler.NewDecoder(req.Body).Decode(&protoReq); err != nil && !errors.Is(err, io.EOF) {
|
||
|
|
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
|
||
|
|
}
|
||
|
|
if req.Body != nil {
|
||
|
|
_, _ = io.Copy(io.Discard, req.Body)
|
||
|
|
}
|
||
|
|
msg, err := client.ListNotes(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD))
|
||
|
|
return msg, metadata, err
|
||
|
|
}
|
||
|
|
|
||
|
|
func local_request_Note_ListNotes_0(ctx context.Context, marshaler runtime.Marshaler, server NoteServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
|
||
|
|
var (
|
||
|
|
protoReq FetchRequest
|
||
|
|
metadata runtime.ServerMetadata
|
||
|
|
)
|
||
|
|
if err := marshaler.NewDecoder(req.Body).Decode(&protoReq); err != nil && !errors.Is(err, io.EOF) {
|
||
|
|
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
|
||
|
|
}
|
||
|
|
msg, err := server.ListNotes(ctx, &protoReq)
|
||
|
|
return msg, metadata, err
|
||
|
|
}
|
||
|
|
|
||
|
|
func request_Note_TogglePin_0(ctx context.Context, marshaler runtime.Marshaler, client NoteClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
|
||
|
|
var (
|
||
|
|
protoReq TogglePinRequest
|
||
|
|
metadata runtime.ServerMetadata
|
||
|
|
)
|
||
|
|
if err := marshaler.NewDecoder(req.Body).Decode(&protoReq); err != nil && !errors.Is(err, io.EOF) {
|
||
|
|
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
|
||
|
|
}
|
||
|
|
if req.Body != nil {
|
||
|
|
_, _ = io.Copy(io.Discard, req.Body)
|
||
|
|
}
|
||
|
|
msg, err := client.TogglePin(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD))
|
||
|
|
return msg, metadata, err
|
||
|
|
}
|
||
|
|
|
||
|
|
func local_request_Note_TogglePin_0(ctx context.Context, marshaler runtime.Marshaler, server NoteServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
|
||
|
|
var (
|
||
|
|
protoReq TogglePinRequest
|
||
|
|
metadata runtime.ServerMetadata
|
||
|
|
)
|
||
|
|
if err := marshaler.NewDecoder(req.Body).Decode(&protoReq); err != nil && !errors.Is(err, io.EOF) {
|
||
|
|
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
|
||
|
|
}
|
||
|
|
msg, err := server.TogglePin(ctx, &protoReq)
|
||
|
|
return msg, metadata, err
|
||
|
|
}
|
||
|
|
|
||
|
|
func request_Note_IncrementViews_0(ctx context.Context, marshaler runtime.Marshaler, client NoteClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
|
||
|
|
var (
|
||
|
|
protoReq IdentRequest
|
||
|
|
metadata runtime.ServerMetadata
|
||
|
|
)
|
||
|
|
if err := marshaler.NewDecoder(req.Body).Decode(&protoReq); err != nil && !errors.Is(err, io.EOF) {
|
||
|
|
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
|
||
|
|
}
|
||
|
|
if req.Body != nil {
|
||
|
|
_, _ = io.Copy(io.Discard, req.Body)
|
||
|
|
}
|
||
|
|
msg, err := client.IncrementViews(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD))
|
||
|
|
return msg, metadata, err
|
||
|
|
}
|
||
|
|
|
||
|
|
func local_request_Note_IncrementViews_0(ctx context.Context, marshaler runtime.Marshaler, server NoteServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
|
||
|
|
var (
|
||
|
|
protoReq IdentRequest
|
||
|
|
metadata runtime.ServerMetadata
|
||
|
|
)
|
||
|
|
if err := marshaler.NewDecoder(req.Body).Decode(&protoReq); err != nil && !errors.Is(err, io.EOF) {
|
||
|
|
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
|
||
|
|
}
|
||
|
|
msg, err := server.IncrementViews(ctx, &protoReq)
|
||
|
|
return msg, metadata, err
|
||
|
|
}
|
||
|
|
|
||
|
|
func request_Note_SearchNotes_0(ctx context.Context, marshaler runtime.Marshaler, client NoteClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
|
||
|
|
var (
|
||
|
|
protoReq FetchRequest
|
||
|
|
metadata runtime.ServerMetadata
|
||
|
|
)
|
||
|
|
if err := marshaler.NewDecoder(req.Body).Decode(&protoReq); err != nil && !errors.Is(err, io.EOF) {
|
||
|
|
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
|
||
|
|
}
|
||
|
|
if req.Body != nil {
|
||
|
|
_, _ = io.Copy(io.Discard, req.Body)
|
||
|
|
}
|
||
|
|
msg, err := client.SearchNotes(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD))
|
||
|
|
return msg, metadata, err
|
||
|
|
}
|
||
|
|
|
||
|
|
func local_request_Note_SearchNotes_0(ctx context.Context, marshaler runtime.Marshaler, server NoteServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
|
||
|
|
var (
|
||
|
|
protoReq FetchRequest
|
||
|
|
metadata runtime.ServerMetadata
|
||
|
|
)
|
||
|
|
if err := marshaler.NewDecoder(req.Body).Decode(&protoReq); err != nil && !errors.Is(err, io.EOF) {
|
||
|
|
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
|
||
|
|
}
|
||
|
|
msg, err := server.SearchNotes(ctx, &protoReq)
|
||
|
|
return msg, metadata, err
|
||
|
|
}
|
||
|
|
|
||
|
|
func request_Note_InsertAttachment_0(ctx context.Context, marshaler runtime.Marshaler, client NoteClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
|
||
|
|
var (
|
||
|
|
protoReq NoteAttachmentItem
|
||
|
|
metadata runtime.ServerMetadata
|
||
|
|
)
|
||
|
|
if err := marshaler.NewDecoder(req.Body).Decode(&protoReq); err != nil && !errors.Is(err, io.EOF) {
|
||
|
|
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
|
||
|
|
}
|
||
|
|
if req.Body != nil {
|
||
|
|
_, _ = io.Copy(io.Discard, req.Body)
|
||
|
|
}
|
||
|
|
msg, err := client.InsertAttachment(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD))
|
||
|
|
return msg, metadata, err
|
||
|
|
}
|
||
|
|
|
||
|
|
func local_request_Note_InsertAttachment_0(ctx context.Context, marshaler runtime.Marshaler, server NoteServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
|
||
|
|
var (
|
||
|
|
protoReq NoteAttachmentItem
|
||
|
|
metadata runtime.ServerMetadata
|
||
|
|
)
|
||
|
|
if err := marshaler.NewDecoder(req.Body).Decode(&protoReq); err != nil && !errors.Is(err, io.EOF) {
|
||
|
|
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
|
||
|
|
}
|
||
|
|
msg, err := server.InsertAttachment(ctx, &protoReq)
|
||
|
|
return msg, metadata, err
|
||
|
|
}
|
||
|
|
|
||
|
|
func request_Note_DeleteAttachment_0(ctx context.Context, marshaler runtime.Marshaler, client NoteClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
|
||
|
|
var (
|
||
|
|
protoReq IdentRequest
|
||
|
|
metadata runtime.ServerMetadata
|
||
|
|
)
|
||
|
|
if err := marshaler.NewDecoder(req.Body).Decode(&protoReq); err != nil && !errors.Is(err, io.EOF) {
|
||
|
|
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
|
||
|
|
}
|
||
|
|
if req.Body != nil {
|
||
|
|
_, _ = io.Copy(io.Discard, req.Body)
|
||
|
|
}
|
||
|
|
msg, err := client.DeleteAttachment(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD))
|
||
|
|
return msg, metadata, err
|
||
|
|
}
|
||
|
|
|
||
|
|
func local_request_Note_DeleteAttachment_0(ctx context.Context, marshaler runtime.Marshaler, server NoteServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
|
||
|
|
var (
|
||
|
|
protoReq IdentRequest
|
||
|
|
metadata runtime.ServerMetadata
|
||
|
|
)
|
||
|
|
if err := marshaler.NewDecoder(req.Body).Decode(&protoReq); err != nil && !errors.Is(err, io.EOF) {
|
||
|
|
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
|
||
|
|
}
|
||
|
|
msg, err := server.DeleteAttachment(ctx, &protoReq)
|
||
|
|
return msg, metadata, err
|
||
|
|
}
|
||
|
|
|
||
|
|
// RegisterNoteHandlerServer registers the http handlers for service Note to "mux".
|
||
|
|
// UnaryRPC :call NoteServer 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 RegisterNoteHandlerFromEndpoint instead.
|
||
|
|
// GRPC interceptors will not work for this type of registration. To use interceptors, you must use the "runtime.WithMiddlewares" option in the "runtime.NewServeMux" call.
|
||
|
|
func RegisterNoteHandlerServer(ctx context.Context, mux *runtime.ServeMux, server NoteServer) error {
|
||
|
|
mux.Handle(http.MethodPost, pattern_Note_CreateNote_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)
|
||
|
|
annotatedContext, err := runtime.AnnotateIncomingContext(ctx, mux, req, "/cloud.Note/CreateNote", runtime.WithHTTPPathPattern("/cloud.Note/CreateNote"))
|
||
|
|
if err != nil {
|
||
|
|
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
resp, md, err := local_request_Note_CreateNote_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_Note_CreateNote_0(annotatedContext, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
|
||
|
|
})
|
||
|
|
mux.Handle(http.MethodPost, pattern_Note_GetNote_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)
|
||
|
|
annotatedContext, err := runtime.AnnotateIncomingContext(ctx, mux, req, "/cloud.Note/GetNote", runtime.WithHTTPPathPattern("/cloud.Note/GetNote"))
|
||
|
|
if err != nil {
|
||
|
|
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
resp, md, err := local_request_Note_GetNote_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_Note_GetNote_0(annotatedContext, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
|
||
|
|
})
|
||
|
|
mux.Handle(http.MethodPost, pattern_Note_UpdateNote_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)
|
||
|
|
annotatedContext, err := runtime.AnnotateIncomingContext(ctx, mux, req, "/cloud.Note/UpdateNote", runtime.WithHTTPPathPattern("/cloud.Note/UpdateNote"))
|
||
|
|
if err != nil {
|
||
|
|
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
resp, md, err := local_request_Note_UpdateNote_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_Note_UpdateNote_0(annotatedContext, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
|
||
|
|
})
|
||
|
|
mux.Handle(http.MethodPost, pattern_Note_DeleteNote_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)
|
||
|
|
annotatedContext, err := runtime.AnnotateIncomingContext(ctx, mux, req, "/cloud.Note/DeleteNote", runtime.WithHTTPPathPattern("/cloud.Note/DeleteNote"))
|
||
|
|
if err != nil {
|
||
|
|
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
resp, md, err := local_request_Note_DeleteNote_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_Note_DeleteNote_0(annotatedContext, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
|
||
|
|
})
|
||
|
|
mux.Handle(http.MethodPost, pattern_Note_ListNotes_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)
|
||
|
|
annotatedContext, err := runtime.AnnotateIncomingContext(ctx, mux, req, "/cloud.Note/ListNotes", runtime.WithHTTPPathPattern("/cloud.Note/ListNotes"))
|
||
|
|
if err != nil {
|
||
|
|
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
resp, md, err := local_request_Note_ListNotes_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_Note_ListNotes_0(annotatedContext, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
|
||
|
|
})
|
||
|
|
mux.Handle(http.MethodPost, pattern_Note_TogglePin_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)
|
||
|
|
annotatedContext, err := runtime.AnnotateIncomingContext(ctx, mux, req, "/cloud.Note/TogglePin", runtime.WithHTTPPathPattern("/cloud.Note/TogglePin"))
|
||
|
|
if err != nil {
|
||
|
|
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
resp, md, err := local_request_Note_TogglePin_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_Note_TogglePin_0(annotatedContext, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
|
||
|
|
})
|
||
|
|
mux.Handle(http.MethodPost, pattern_Note_IncrementViews_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)
|
||
|
|
annotatedContext, err := runtime.AnnotateIncomingContext(ctx, mux, req, "/cloud.Note/IncrementViews", runtime.WithHTTPPathPattern("/cloud.Note/IncrementViews"))
|
||
|
|
if err != nil {
|
||
|
|
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
resp, md, err := local_request_Note_IncrementViews_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_Note_IncrementViews_0(annotatedContext, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
|
||
|
|
})
|
||
|
|
mux.Handle(http.MethodPost, pattern_Note_SearchNotes_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)
|
||
|
|
annotatedContext, err := runtime.AnnotateIncomingContext(ctx, mux, req, "/cloud.Note/SearchNotes", runtime.WithHTTPPathPattern("/cloud.Note/SearchNotes"))
|
||
|
|
if err != nil {
|
||
|
|
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
resp, md, err := local_request_Note_SearchNotes_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_Note_SearchNotes_0(annotatedContext, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
|
||
|
|
})
|
||
|
|
mux.Handle(http.MethodPost, pattern_Note_InsertAttachment_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)
|
||
|
|
annotatedContext, err := runtime.AnnotateIncomingContext(ctx, mux, req, "/cloud.Note/InsertAttachment", runtime.WithHTTPPathPattern("/cloud.Note/InsertAttachment"))
|
||
|
|
if err != nil {
|
||
|
|
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
resp, md, err := local_request_Note_InsertAttachment_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_Note_InsertAttachment_0(annotatedContext, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
|
||
|
|
})
|
||
|
|
mux.Handle(http.MethodPost, pattern_Note_DeleteAttachment_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)
|
||
|
|
annotatedContext, err := runtime.AnnotateIncomingContext(ctx, mux, req, "/cloud.Note/DeleteAttachment", runtime.WithHTTPPathPattern("/cloud.Note/DeleteAttachment"))
|
||
|
|
if err != nil {
|
||
|
|
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
resp, md, err := local_request_Note_DeleteAttachment_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_Note_DeleteAttachment_0(annotatedContext, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
|
||
|
|
})
|
||
|
|
|
||
|
|
return nil
|
||
|
|
}
|
||
|
|
|
||
|
|
// RegisterNoteHandlerFromEndpoint is same as RegisterNoteHandler but
|
||
|
|
// automatically dials to "endpoint" and closes the connection when "ctx" gets done.
|
||
|
|
func RegisterNoteHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error) {
|
||
|
|
conn, err := grpc.NewClient(endpoint, opts...)
|
||
|
|
if err != nil {
|
||
|
|
return err
|
||
|
|
}
|
||
|
|
defer func() {
|
||
|
|
if err != nil {
|
||
|
|
if cerr := conn.Close(); cerr != nil {
|
||
|
|
grpclog.Errorf("Failed to close conn to %s: %v", endpoint, cerr)
|
||
|
|
}
|
||
|
|
return
|
||
|
|
}
|
||
|
|
go func() {
|
||
|
|
<-ctx.Done()
|
||
|
|
if cerr := conn.Close(); cerr != nil {
|
||
|
|
grpclog.Errorf("Failed to close conn to %s: %v", endpoint, cerr)
|
||
|
|
}
|
||
|
|
}()
|
||
|
|
}()
|
||
|
|
return RegisterNoteHandler(ctx, mux, conn)
|
||
|
|
}
|
||
|
|
|
||
|
|
// RegisterNoteHandler registers the http handlers for service Note to "mux".
|
||
|
|
// The handlers forward requests to the grpc endpoint over "conn".
|
||
|
|
func RegisterNoteHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error {
|
||
|
|
return RegisterNoteHandlerClient(ctx, mux, NewNoteClient(conn))
|
||
|
|
}
|
||
|
|
|
||
|
|
// RegisterNoteHandlerClient registers the http handlers for service Note
|
||
|
|
// to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "NoteClient".
|
||
|
|
// Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "NoteClient"
|
||
|
|
// doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in
|
||
|
|
// "NoteClient" to call the correct interceptors. This client ignores the HTTP middlewares.
|
||
|
|
func RegisterNoteHandlerClient(ctx context.Context, mux *runtime.ServeMux, client NoteClient) error {
|
||
|
|
mux.Handle(http.MethodPost, pattern_Note_CreateNote_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)
|
||
|
|
annotatedContext, err := runtime.AnnotateContext(ctx, mux, req, "/cloud.Note/CreateNote", runtime.WithHTTPPathPattern("/cloud.Note/CreateNote"))
|
||
|
|
if err != nil {
|
||
|
|
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
resp, md, err := request_Note_CreateNote_0(annotatedContext, inboundMarshaler, client, req, pathParams)
|
||
|
|
annotatedContext = runtime.NewServerMetadataContext(annotatedContext, md)
|
||
|
|
if err != nil {
|
||
|
|
runtime.HTTPError(annotatedContext, mux, outboundMarshaler, w, req, err)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
forward_Note_CreateNote_0(annotatedContext, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
|
||
|
|
})
|
||
|
|
mux.Handle(http.MethodPost, pattern_Note_GetNote_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)
|
||
|
|
annotatedContext, err := runtime.AnnotateContext(ctx, mux, req, "/cloud.Note/GetNote", runtime.WithHTTPPathPattern("/cloud.Note/GetNote"))
|
||
|
|
if err != nil {
|
||
|
|
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
resp, md, err := request_Note_GetNote_0(annotatedContext, inboundMarshaler, client, req, pathParams)
|
||
|
|
annotatedContext = runtime.NewServerMetadataContext(annotatedContext, md)
|
||
|
|
if err != nil {
|
||
|
|
runtime.HTTPError(annotatedContext, mux, outboundMarshaler, w, req, err)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
forward_Note_GetNote_0(annotatedContext, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
|
||
|
|
})
|
||
|
|
mux.Handle(http.MethodPost, pattern_Note_UpdateNote_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)
|
||
|
|
annotatedContext, err := runtime.AnnotateContext(ctx, mux, req, "/cloud.Note/UpdateNote", runtime.WithHTTPPathPattern("/cloud.Note/UpdateNote"))
|
||
|
|
if err != nil {
|
||
|
|
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
resp, md, err := request_Note_UpdateNote_0(annotatedContext, inboundMarshaler, client, req, pathParams)
|
||
|
|
annotatedContext = runtime.NewServerMetadataContext(annotatedContext, md)
|
||
|
|
if err != nil {
|
||
|
|
runtime.HTTPError(annotatedContext, mux, outboundMarshaler, w, req, err)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
forward_Note_UpdateNote_0(annotatedContext, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
|
||
|
|
})
|
||
|
|
mux.Handle(http.MethodPost, pattern_Note_DeleteNote_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)
|
||
|
|
annotatedContext, err := runtime.AnnotateContext(ctx, mux, req, "/cloud.Note/DeleteNote", runtime.WithHTTPPathPattern("/cloud.Note/DeleteNote"))
|
||
|
|
if err != nil {
|
||
|
|
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
resp, md, err := request_Note_DeleteNote_0(annotatedContext, inboundMarshaler, client, req, pathParams)
|
||
|
|
annotatedContext = runtime.NewServerMetadataContext(annotatedContext, md)
|
||
|
|
if err != nil {
|
||
|
|
runtime.HTTPError(annotatedContext, mux, outboundMarshaler, w, req, err)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
forward_Note_DeleteNote_0(annotatedContext, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
|
||
|
|
})
|
||
|
|
mux.Handle(http.MethodPost, pattern_Note_ListNotes_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)
|
||
|
|
annotatedContext, err := runtime.AnnotateContext(ctx, mux, req, "/cloud.Note/ListNotes", runtime.WithHTTPPathPattern("/cloud.Note/ListNotes"))
|
||
|
|
if err != nil {
|
||
|
|
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
resp, md, err := request_Note_ListNotes_0(annotatedContext, inboundMarshaler, client, req, pathParams)
|
||
|
|
annotatedContext = runtime.NewServerMetadataContext(annotatedContext, md)
|
||
|
|
if err != nil {
|
||
|
|
runtime.HTTPError(annotatedContext, mux, outboundMarshaler, w, req, err)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
forward_Note_ListNotes_0(annotatedContext, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
|
||
|
|
})
|
||
|
|
mux.Handle(http.MethodPost, pattern_Note_TogglePin_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)
|
||
|
|
annotatedContext, err := runtime.AnnotateContext(ctx, mux, req, "/cloud.Note/TogglePin", runtime.WithHTTPPathPattern("/cloud.Note/TogglePin"))
|
||
|
|
if err != nil {
|
||
|
|
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
resp, md, err := request_Note_TogglePin_0(annotatedContext, inboundMarshaler, client, req, pathParams)
|
||
|
|
annotatedContext = runtime.NewServerMetadataContext(annotatedContext, md)
|
||
|
|
if err != nil {
|
||
|
|
runtime.HTTPError(annotatedContext, mux, outboundMarshaler, w, req, err)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
forward_Note_TogglePin_0(annotatedContext, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
|
||
|
|
})
|
||
|
|
mux.Handle(http.MethodPost, pattern_Note_IncrementViews_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)
|
||
|
|
annotatedContext, err := runtime.AnnotateContext(ctx, mux, req, "/cloud.Note/IncrementViews", runtime.WithHTTPPathPattern("/cloud.Note/IncrementViews"))
|
||
|
|
if err != nil {
|
||
|
|
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
resp, md, err := request_Note_IncrementViews_0(annotatedContext, inboundMarshaler, client, req, pathParams)
|
||
|
|
annotatedContext = runtime.NewServerMetadataContext(annotatedContext, md)
|
||
|
|
if err != nil {
|
||
|
|
runtime.HTTPError(annotatedContext, mux, outboundMarshaler, w, req, err)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
forward_Note_IncrementViews_0(annotatedContext, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
|
||
|
|
})
|
||
|
|
mux.Handle(http.MethodPost, pattern_Note_SearchNotes_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)
|
||
|
|
annotatedContext, err := runtime.AnnotateContext(ctx, mux, req, "/cloud.Note/SearchNotes", runtime.WithHTTPPathPattern("/cloud.Note/SearchNotes"))
|
||
|
|
if err != nil {
|
||
|
|
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
resp, md, err := request_Note_SearchNotes_0(annotatedContext, inboundMarshaler, client, req, pathParams)
|
||
|
|
annotatedContext = runtime.NewServerMetadataContext(annotatedContext, md)
|
||
|
|
if err != nil {
|
||
|
|
runtime.HTTPError(annotatedContext, mux, outboundMarshaler, w, req, err)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
forward_Note_SearchNotes_0(annotatedContext, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
|
||
|
|
})
|
||
|
|
mux.Handle(http.MethodPost, pattern_Note_InsertAttachment_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)
|
||
|
|
annotatedContext, err := runtime.AnnotateContext(ctx, mux, req, "/cloud.Note/InsertAttachment", runtime.WithHTTPPathPattern("/cloud.Note/InsertAttachment"))
|
||
|
|
if err != nil {
|
||
|
|
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
resp, md, err := request_Note_InsertAttachment_0(annotatedContext, inboundMarshaler, client, req, pathParams)
|
||
|
|
annotatedContext = runtime.NewServerMetadataContext(annotatedContext, md)
|
||
|
|
if err != nil {
|
||
|
|
runtime.HTTPError(annotatedContext, mux, outboundMarshaler, w, req, err)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
forward_Note_InsertAttachment_0(annotatedContext, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
|
||
|
|
})
|
||
|
|
mux.Handle(http.MethodPost, pattern_Note_DeleteAttachment_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)
|
||
|
|
annotatedContext, err := runtime.AnnotateContext(ctx, mux, req, "/cloud.Note/DeleteAttachment", runtime.WithHTTPPathPattern("/cloud.Note/DeleteAttachment"))
|
||
|
|
if err != nil {
|
||
|
|
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
resp, md, err := request_Note_DeleteAttachment_0(annotatedContext, inboundMarshaler, client, req, pathParams)
|
||
|
|
annotatedContext = runtime.NewServerMetadataContext(annotatedContext, md)
|
||
|
|
if err != nil {
|
||
|
|
runtime.HTTPError(annotatedContext, mux, outboundMarshaler, w, req, err)
|
||
|
|
return
|
||
|
|
}
|
||
|
|
forward_Note_DeleteAttachment_0(annotatedContext, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
|
||
|
|
})
|
||
|
|
return nil
|
||
|
|
}
|
||
|
|
|
||
|
|
var (
|
||
|
|
pattern_Note_CreateNote_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"cloud.Note", "CreateNote"}, ""))
|
||
|
|
pattern_Note_GetNote_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"cloud.Note", "GetNote"}, ""))
|
||
|
|
pattern_Note_UpdateNote_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"cloud.Note", "UpdateNote"}, ""))
|
||
|
|
pattern_Note_DeleteNote_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"cloud.Note", "DeleteNote"}, ""))
|
||
|
|
pattern_Note_ListNotes_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"cloud.Note", "ListNotes"}, ""))
|
||
|
|
pattern_Note_TogglePin_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"cloud.Note", "TogglePin"}, ""))
|
||
|
|
pattern_Note_IncrementViews_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"cloud.Note", "IncrementViews"}, ""))
|
||
|
|
pattern_Note_SearchNotes_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"cloud.Note", "SearchNotes"}, ""))
|
||
|
|
pattern_Note_InsertAttachment_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"cloud.Note", "InsertAttachment"}, ""))
|
||
|
|
pattern_Note_DeleteAttachment_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1}, []string{"cloud.Note", "DeleteAttachment"}, ""))
|
||
|
|
)
|
||
|
|
|
||
|
|
var (
|
||
|
|
forward_Note_CreateNote_0 = runtime.ForwardResponseMessage
|
||
|
|
forward_Note_GetNote_0 = runtime.ForwardResponseMessage
|
||
|
|
forward_Note_UpdateNote_0 = runtime.ForwardResponseMessage
|
||
|
|
forward_Note_DeleteNote_0 = runtime.ForwardResponseMessage
|
||
|
|
forward_Note_ListNotes_0 = runtime.ForwardResponseMessage
|
||
|
|
forward_Note_TogglePin_0 = runtime.ForwardResponseMessage
|
||
|
|
forward_Note_IncrementViews_0 = runtime.ForwardResponseMessage
|
||
|
|
forward_Note_SearchNotes_0 = runtime.ForwardResponseMessage
|
||
|
|
forward_Note_InsertAttachment_0 = runtime.ForwardResponseMessage
|
||
|
|
forward_Note_DeleteAttachment_0 = runtime.ForwardResponseMessage
|
||
|
|
)
|