You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kratos/examples/proto/echo_service_http.pb.go

142 lines
4.6 KiB

4 years ago
// Code generated by protoc-gen-go-http. DO NOT EDIT.
package testproto
import (
context "context"
http1 "github.com/go-kratos/kratos/v2/transport/http"
binding "github.com/go-kratos/kratos/v2/transport/http/binding"
mux "github.com/gorilla/mux"
4 years ago
http "net/http"
)
// This is a compile-time assertion to ensure that this generated file
// is compatible with the kratos package it is being compiled against.
var _ = new(http.Request)
var _ = new(context.Context)
var _ = binding.MapProto
var _ = mux.NewRouter
4 years ago
const _ = http1.SupportPackageIsVersion1
type EchoServiceHandler interface {
4 years ago
Echo(context.Context, *SimpleMessage) (*SimpleMessage, error)
EchoBody(context.Context, *SimpleMessage) (*SimpleMessage, error)
EchoDelete(context.Context, *SimpleMessage) (*SimpleMessage, error)
EchoPatch(context.Context, *DynamicMessageUpdate) (*DynamicMessageUpdate, error)
EchoResponseBody(context.Context, *DynamicMessageUpdate) (*DynamicMessageUpdate, error)
4 years ago
}
func NewEchoServiceHandler(srv EchoServiceHandler, opts ...http1.HandleOption) http.Handler {
r := mux.NewRouter()
r.Handle("/v1/example/echo/{id}/{num}", http1.NewHandler(srv.Echo, opts...)).Methods("GET")
r.Handle("/v1/example/echo/{id}/{num}/{lang}", http1.NewHandler(srv.Echo, opts...)).Methods("GET")
r.Handle("/v1/example/echo1/{id}/{line_num}/{status.note}", http1.NewHandler(srv.Echo, opts...)).Methods("GET")
r.Handle("/v1/example/echo2/{no.note}", http1.NewHandler(srv.Echo, opts...)).Methods("GET")
r.Handle("/v1/example/echo/{id}", http1.NewHandler(srv.Echo, opts...)).Methods("POST")
r.Handle("/v1/example/echo_body", http1.NewHandler(srv.EchoBody, opts...)).Methods("POST")
r.Handle("/v1/example/echo_response_body", http1.NewHandler(srv.EchoResponseBody, opts...)).Methods("POST")
r.Handle("/v1/example/echo_delete/{id}/{num}", http1.NewHandler(srv.EchoDelete, opts...)).Methods("DELETE")
r.Handle("/v1/example/echo_patch", http1.NewHandler(srv.EchoPatch, opts...)).Methods("PATCH")
return r
4 years ago
}
type EchoServiceHttpClient interface {
Echo(ctx context.Context, req *SimpleMessage, opts ...http1.CallOption) (rsp *SimpleMessage, err error)
EchoBody(ctx context.Context, req *SimpleMessage, opts ...http1.CallOption) (rsp *SimpleMessage, err error)
EchoDelete(ctx context.Context, req *SimpleMessage, opts ...http1.CallOption) (rsp *SimpleMessage, err error)
EchoPatch(ctx context.Context, req *DynamicMessageUpdate, opts ...http1.CallOption) (rsp *DynamicMessageUpdate, err error)
EchoResponseBody(ctx context.Context, req *DynamicMessageUpdate, opts ...http1.CallOption) (rsp *DynamicMessageUpdate, err error)
}
type EchoServiceHttpClientImpl struct {
cc *http1.Client
}
func NewEchoServiceHttpClient(client *http1.Client) EchoServiceHttpClient {
return &EchoServiceHttpClientImpl{client}
}
func (c *EchoServiceHttpClientImpl) Echo(ctx context.Context, in *SimpleMessage, opts ...http1.CallOption) (out *SimpleMessage, err error) {
path := "/v1/example/echo/{id}"
method := "POST"
body := ""
out = &SimpleMessage{}
err = c.cc.Invoke(ctx, path, in, out, http1.BodyPattern(body), http1.Method(method))
if err != nil {
return
}
return
}
func (c *EchoServiceHttpClientImpl) EchoBody(ctx context.Context, in *SimpleMessage, opts ...http1.CallOption) (out *SimpleMessage, err error) {
path := "/v1/example/echo_body"
method := "POST"
body := "*"
out = &SimpleMessage{}
err = c.cc.Invoke(ctx, path, in, out, http1.BodyPattern(body), http1.Method(method))
if err != nil {
return
}
return
}
func (c *EchoServiceHttpClientImpl) EchoDelete(ctx context.Context, in *SimpleMessage, opts ...http1.CallOption) (out *SimpleMessage, err error) {
path := "/v1/example/echo_delete/{id}/{num}"
method := "DELETE"
body := ""
out = &SimpleMessage{}
err = c.cc.Invoke(ctx, path, in, out, http1.BodyPattern(body), http1.Method(method))
if err != nil {
return
}
return
}
func (c *EchoServiceHttpClientImpl) EchoPatch(ctx context.Context, in *DynamicMessageUpdate, opts ...http1.CallOption) (out *DynamicMessageUpdate, err error) {
path := "/v1/example/echo_patch"
method := "PATCH"
body := ".body"
out = &DynamicMessageUpdate{}
err = c.cc.Invoke(ctx, path, in, out, http1.BodyPattern(body), http1.Method(method))
if err != nil {
return
}
return
}
func (c *EchoServiceHttpClientImpl) EchoResponseBody(ctx context.Context, in *DynamicMessageUpdate, opts ...http1.CallOption) (out *DynamicMessageUpdate, err error) {
path := "/v1/example/echo_response_body"
method := "POST"
body := ""
out = &DynamicMessageUpdate{}
err = c.cc.Invoke(ctx, path, in, out, http1.BodyPattern(body), http1.Method(method))
if err != nil {
return
}
return
}