-
Notifications
You must be signed in to change notification settings - Fork 250
/
handler.go
225 lines (211 loc) · 6.79 KB
/
handler.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
// Copyright 2022 AndeyaLee. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package faygo
import (
"errors"
"reflect"
"sort"
"github.com/andeya/faygo/apiware"
)
type (
// Handler is the main Faygo Handler interface.
Handler interface {
Serve(ctx *Context) error
}
// APIHandler is the Faygo Handler interface,
// which is implemented by a struct with API descriptor information.
// It is an intelligent Handler of binding parameters.
APIHandler interface {
Handler
APIDoc
}
// HandlerWithBody is the Faygo APIHandler interface but with DecodeBody method.
HandlerWithBody interface {
Handler
Bodydecoder // Decode params from request body
}
// Bodydecoder is an interface to customize decoding operation
Bodydecoder interface {
Decode(dest reflect.Value, body []byte) error
}
// HandlerWithoutPath is handler without binding path parameter for middleware.
HandlerWithoutPath interface {
Handler
}
// APIDoc provides the API's note, result or parameters information.
APIDoc interface {
Doc() Doc
}
// ParamInfo is the request parameter information
ParamInfo struct {
Name string // Parameter name
In string // The position of the parameter
Required bool // Is a required parameter
Model interface{} // A parameter value that is used to infer a value type and as a default value
Desc string // Description
}
// Doc api information
Doc struct {
Note string `json:"note" xml:"note"`
Return interface{} `json:"return,omitempty" xml:"return,omitempty"`
// MoreParams extra added parameters definition
MoreParams []ParamInfo `json:"more_params,omitempty" xml:"more_params,omitempty"`
}
// Notes implementation notes of a response
Notes struct {
Note string `json:"note" xml:"note"`
Return interface{} `json:"return,omitempty" xml:"return,omitempty"`
}
// JSONMsg is commonly used to return JSON format response.
JSONMsg struct {
Code int `json:"code" xml:"code"` // the status code of the business process (required)
Info interface{} `json:"info,omitempty" xml:"info,omitempty"` // response's schema and example value (optional)
}
// apiHandler is an intelligent Handler of binding parameters.
apiHandler struct {
paramsAPI *apiware.ParamsAPI
}
// HandlerFunc type is an adapter to allow the use of
// ordinary functions as HTTP handlers. If f is a function
// with the appropriate signature, HandlerFunc(f) is a
// Handler that calls f.
HandlerFunc func(ctx *Context) error
// HandlerChain is the chain of handlers for a request.
HandlerChain []Handler
// ErrorFunc replies to the request with the specified error message and HTTP code.
// It does not otherwise end the request; the caller should ensure no further
// writes are done to ctx.
// The error message should be plain text.
ErrorFunc func(ctx *Context, errStr string, status int)
// BinderrorFunc is called when binding or validation apiHandler parameters are wrong.
BinderrorFunc func(ctx *Context, err error)
)
// Serve implements the Handler, is like ServeHTTP but for Faygo.
func (h HandlerFunc) Serve(ctx *Context) error {
return h(ctx)
}
// common errors
var (
ErrNotStructPtr = errors.New("handler must be a structure type or a structure pointer type")
ErrNoParamHandler = errors.New("handler does not define any parameter tags")
)
var _ APIDoc = new(apiHandler)
// ToAPIHandler tries converts it to an *apiHandler.
func ToAPIHandler(handler Handler, noDefaultParams bool) (*apiHandler, error) {
v := reflect.Indirect(reflect.ValueOf(handler))
if v.Kind() != reflect.Struct {
return nil, ErrNotStructPtr
}
var structPointer = v.Addr().Interface()
var bodydecoder = global.bodydecoder
if h, ok := structPointer.(HandlerWithBody); ok {
bodydecoder = h.Decode
}
paramsAPI, err := apiware.NewParamsAPI(structPointer, global.paramNameMapper, bodydecoder, !noDefaultParams)
if err != nil {
return nil, err
}
if paramsAPI.Number() == 0 {
return nil, ErrNoParamHandler
}
// Reduce the creation of unnecessary field paramValues.
return &apiHandler{
paramsAPI: paramsAPI,
}, nil
}
// IsHandlerWithoutPath verifies that the Handler is an HandlerWithoutPath.
func IsHandlerWithoutPath(handler Handler, noDefaultParams bool) bool {
v := reflect.Indirect(reflect.ValueOf(handler))
if v.Kind() != reflect.Struct {
return true
}
paramsAPI, err := apiware.NewParamsAPI(v.Addr().Interface(), nil, nil, !noDefaultParams)
if err != nil {
return true
}
for _, param := range paramsAPI.Params() {
if param.In() == "path" {
return false
}
}
return true
}
// Serve implements the APIHandler.
// creates a new `*apiHandler`;
// binds the request path params to `apiHandler.handler`;
// calls Handler.Serve() method.
func (h *apiHandler) Serve(ctx *Context) error {
obj, err := h.paramsAPI.BindNew(ctx.R, ctx.pathParams)
if err != nil {
global.binderrorFunc(ctx, err)
ctx.Stop()
return nil
}
return obj.(Handler).Serve(ctx)
}
// Doc returns the API's note, result or parameters information.
func (h *apiHandler) Doc() Doc {
var doc Doc
if d, ok := h.paramsAPI.Raw().(APIDoc); ok {
doc = d.Doc()
}
for _, param := range h.paramsAPI.Params() {
var had bool
var info = ParamInfo{
Name: param.Name(),
In: param.In(),
Required: param.IsRequired(),
Desc: param.Description(),
Model: param.Raw(),
}
for i, p := range doc.MoreParams {
if p.Name == info.Name {
doc.MoreParams[i] = info
had = true
break
}
}
if !had {
doc.MoreParams = append(doc.MoreParams, info)
}
}
return doc
}
// Get distinct and sorted parameters information.
func distinctAndSortedParamInfos(infos []ParamInfo) []ParamInfo {
infoMap := make(map[string]ParamInfo, len(infos))
ks := make([]string, 0, len(infos))
for _, info := range infos {
k := info.Name + "<\r-\n-\t>" + info.In
ks = append(ks, k)
// Filter duplicate parameters, and maximize access to information.
if newinfo, ok := infoMap[k]; ok {
if !newinfo.Required && info.Required {
newinfo.Required = info.Required
}
if len(newinfo.Desc) == 0 && len(info.Desc) > 0 {
newinfo.Desc = info.Desc
}
infoMap[k] = newinfo
continue
}
infoMap[k] = info
}
sort.Strings(ks)
newinfos := make([]ParamInfo, 0, len(ks))
for _, k := range ks {
newinfos = append(newinfos, infoMap[k])
}
return newinfos
}