-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathconfig.go
290 lines (243 loc) · 5.62 KB
/
config.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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
package goexpose
import (
"crypto/sha256"
"encoding/json"
"fmt"
"io"
"io/ioutil"
"net/http"
"path/filepath"
"regexp"
"strings"
"sync"
"github.com/ghodss/yaml"
"errors"
)
type unmarshalFunc func([]byte, interface{}) error
var (
configFormats map[string]unmarshalFunc
configFormatsLock *sync.RWMutex
)
func init() {
// prepare configuration formats (currently json, yaml)
configFormats = map[string]unmarshalFunc{}
configFormatsLock = &sync.RWMutex{}
func() {
configFormatsLock.Lock()
defer configFormatsLock.Unlock()
configFormats["json"] = json.Unmarshal
// custom yaml unmarshal, since when used directly it panics.
// so we just convert yaml to json and call json unmarshal
configFormats["yaml"] = func(body []byte, target interface{}) (err error){
if response, e := yaml.YAMLToJSON(body); e != nil {
err = e
} else {
err = json.Unmarshal(response, target)
}
return
}
}()
}
/*
Returns filename from file
*/
func NewConfigFromFilename(filename, format string) (config *Config, err error) {
config = NewConfig()
var (
result []byte
)
if result, err = ioutil.ReadFile(filename); err != nil {
return
}
found := false
for name, fmtUnmarshalFunc := range configFormats {
if name == format {
if err = fmtUnmarshalFunc(result, config); err != nil {
return
}
found = true
break
}
}
if !found {
err = errors.New("file format not found")
return
}
// unmarshal config
//if err = json.Unmarshal(result, config); err != nil {
// return
//}
// get config dir
if config.Directory, err = filepath.Abs(filepath.Dir(filename)); err != nil {
return
}
return
}
/*
Returns config with default values
*/
func NewConfig() *Config {
return &Config{
Host: "0.0.0.0",
Port: 9980,
}
}
/*
Main config
*/
type Config struct {
Host string `json:"host"`
Port int `json:"port"`
SSL *SSLConfig `json:"ssl"`
PrettyJson bool `json:"pretty_json"`
Authorizers map[string]*AuthorizerConfig `json:"authorizers"`
Endpoints []*EndpointConfig `json:"endpoints"`
ReloadEnv bool `json:"reload_env"`
Directory string `json:"-"`
}
/*
SSL config
*/
type SSLConfig struct {
Cert string `json:"cert"`
Key string `json:"key"`
}
/*
Task config
*/
type TaskConfig struct {
Type string `json:"type"`
Authorizers []string `json:"authorizers"`
Config json.RawMessage `json:"config"`
QueryParams *QueryParams `json:"query_params"`
Description string `json:"description"`
}
type EndpointConfig struct {
Authorizers []string `json:"authorizers"`
Path string `json:"path"`
Methods map[string]TaskConfig `json:"methods"`
Type string `json:"type"`
QueryParams *QueryParams `json:"query_params"`
RawResponse bool `json:"raw_response"`
}
func (e *EndpointConfig) Validate() (err error) {
if e.QueryParams != nil {
if err = e.QueryParams.Validate(); err != nil {
return
}
}
// set type to unset tasks
e.Type = strings.TrimSpace(e.Type)
if e.Type != "" {
for _, tc := range e.Methods {
if tc.Type == "" {
tc.Type = e.Type
}
}
}
return
}
func (e *EndpointConfig) RouteName() string {
hash := sha256.New()
io.WriteString(hash, e.Path)
return fmt.Sprintf("%x", hash.Sum(nil))
}
/*
Validate method validates task config
*/
func (t *TaskConfig) Validate() (err error) {
t.Type = strings.TrimSpace(t.Type)
t.Description = strings.TrimSpace(t.Description)
if t.Type == "" {
return fmt.Errorf("Invalid task type")
}
if t.QueryParams != nil {
if err = t.QueryParams.Validate(); err != nil {
return
}
}
return
}
/*
Configuration for authorizer
*/
type AuthorizerConfig struct {
Type string `json:"type"`
Config json.RawMessage `json:"config"`
}
/*
Validate
*/
func (a *AuthorizerConfig) Validate() (err error) {
if ok := AuthorizerExists(a.Type); !ok {
err = fmt.Errorf("authorizer %s does not exist", a.Type)
}
return
}
/*
Query params
*/
type QueryParams struct {
ReturnParams bool `json:"return_params"`
Params []*QueryParamsConfigParam `json:"params"`
}
func (q *QueryParams) Validate() (err error) {
var re *regexp.Regexp
// validate query params
for _, param := range q.Params {
param.Name = strings.TrimSpace(param.Name)
if param.Name == "" {
return fmt.Errorf("query param name missing")
}
param.Regexp = strings.TrimSpace(param.Regexp)
// regexp available, precompile it
if param.Regexp != "" {
if re, err = regexp.Compile(param.Regexp); err != nil {
return fmt.Errorf("query param regexp %v returned %v", param.Regexp, err)
}
param.compiled = re
}
}
return
}
/*
Returns params from request
*/
func (q *QueryParams) GetParams(r *http.Request) (result map[string]string) {
result = map[string]string{}
if q == nil {
return
}
for _, param := range q.Params {
value := r.URL.Query().Get(param.Name)
value = strings.TrimSpace(value)
if value == "" {
if param.Default != "" {
result[param.Name] = param.Default
}
} else {
if param.compiled != nil {
if param.compiled.MatchString(value) {
result[param.Name] = value
} else {
if param.Default != "" {
result[param.Name] = param.Default
}
}
} else {
result[param.Name] = value
}
}
}
return
}
/*
Param config
*/
type QueryParamsConfigParam struct {
Name string `json:"name"`
Regexp string `json:"regexp"`
Default string `json:"default"`
// compiled regexp
compiled *regexp.Regexp
}