-
-
Notifications
You must be signed in to change notification settings - Fork 4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
116 additions
and
114 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{{ range .Errors }} | ||
|
||
{{ if .HasComment }}{{ .Comment }}{{ end -}} | ||
func Is{{.CamelValue}}(err error) bool { | ||
if err == nil { | ||
return false | ||
} | ||
e := errors.FromError(err) | ||
return e.Reason == {{ .Name }}_{{ .Value }}.String() && e.Code == {{ .HTTPCode }} | ||
} | ||
|
||
{{ if .HasComment }}{{ .Comment }}{{ end -}} | ||
func Error{{ .CamelValue }}(format string, args ...interface{}) *errors.Error { | ||
return errors.New({{ .HTTPCode }}, {{ .Name }}_{{ .Value }}.String(), fmt.Sprintf(format, args...)) | ||
} | ||
|
||
{{- end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
{{$svrType := .ServiceType}} | ||
{{$svrName := .ServiceName}} | ||
|
||
{{- range .MethodSets}} | ||
const Operation{{$svrType}}{{.OriginalName}} = "/{{$svrName}}/{{.OriginalName}}" | ||
{{- end}} | ||
|
||
type {{.ServiceType}}HTTPServer interface { | ||
{{- range .MethodSets}} | ||
{{- if ne .Comment ""}} | ||
{{.Comment}} | ||
{{- end}} | ||
{{.Name}}(context.Context, *{{.Request}}) (*{{.Reply}}, error) | ||
{{- end}} | ||
} | ||
|
||
func Register{{.ServiceType}}HTTPServer(s *http.Server, srv {{.ServiceType}}HTTPServer) { | ||
r := s.Route("/") | ||
{{- range .Methods}} | ||
r.{{.Method}}("{{.Path}}", _{{$svrType}}_{{.Name}}{{.Num}}_HTTP_Handler(srv)) | ||
{{- end}} | ||
} | ||
|
||
{{range .Methods}} | ||
func _{{$svrType}}_{{.Name}}{{.Num}}_HTTP_Handler(srv {{$svrType}}HTTPServer) func(ctx http.Context) error { | ||
return func(ctx http.Context) error { | ||
var in {{.Request}} | ||
{{- if .HasBody}} | ||
if err := ctx.Bind(&in{{.Body}}); err != nil { | ||
return err | ||
} | ||
|
||
{{- if not (eq .Body "")}} | ||
if err := ctx.BindQuery(&in); err != nil { | ||
return err | ||
} | ||
{{- end}} | ||
{{- else}} | ||
if err := ctx.BindQuery(&in{{.Body}}); err != nil { | ||
return err | ||
} | ||
{{- end}} | ||
{{- if .HasVars}} | ||
if err := ctx.BindVars(&in); err != nil { | ||
return err | ||
} | ||
{{- end}} | ||
http.SetOperation(ctx,Operation{{$svrType}}{{.OriginalName}}) | ||
h := ctx.Middleware(func(ctx context.Context, req interface{}) (interface{}, error) { | ||
return srv.{{.Name}}(ctx, req.(*{{.Request}})) | ||
}) | ||
out, err := h(ctx, &in) | ||
if err != nil { | ||
return err | ||
} | ||
reply := out.(*{{.Reply}}) | ||
return ctx.Result(200, reply{{.ResponseBody}}) | ||
} | ||
} | ||
{{end}} | ||
|
||
type {{.ServiceType}}HTTPClient interface { | ||
{{- range .MethodSets}} | ||
{{.Name}}(ctx context.Context, req *{{.Request}}, opts ...http.CallOption) (rsp *{{.Reply}}, err error) | ||
{{- end}} | ||
} | ||
|
||
type {{.ServiceType}}HTTPClientImpl struct{ | ||
cc *http.Client | ||
} | ||
|
||
func New{{.ServiceType}}HTTPClient (client *http.Client) {{.ServiceType}}HTTPClient { | ||
return &{{.ServiceType}}HTTPClientImpl{client} | ||
} | ||
|
||
{{range .MethodSets}} | ||
func (c *{{$svrType}}HTTPClientImpl) {{.Name}}(ctx context.Context, in *{{.Request}}, opts ...http.CallOption) (*{{.Reply}}, error) { | ||
var out {{.Reply}} | ||
pattern := "{{.Path}}" | ||
path := binding.EncodeURL(pattern, in, {{not .HasBody}}) | ||
opts = append(opts, http.Operation(Operation{{$svrType}}{{.OriginalName}})) | ||
opts = append(opts, http.PathTemplate(pattern)) | ||
{{if .HasBody -}} | ||
err := c.cc.Invoke(ctx, "{{.Method}}", path, in{{.Body}}, &out{{.ResponseBody}}, opts...) | ||
{{else -}} | ||
err := c.cc.Invoke(ctx, "{{.Method}}", path, nil, &out{{.ResponseBody}}, opts...) | ||
{{end -}} | ||
if err != nil { | ||
return nil, err | ||
} | ||
return &out, err | ||
} | ||
{{end}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters