forked from mendersoftware/deployments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmiddleware.go
105 lines (91 loc) · 3.18 KB
/
middleware.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
// Copyright 2021 Northern.tech AS
//
// 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 main
import (
"mime"
"net/http"
"regexp"
"github.com/ant0ine/go-json-rest/rest"
"github.com/mendersoftware/go-lib-micro/accesslog"
"github.com/mendersoftware/go-lib-micro/config"
"github.com/mendersoftware/go-lib-micro/identity"
"github.com/mendersoftware/go-lib-micro/requestid"
"github.com/mendersoftware/go-lib-micro/requestlog"
api_http "github.com/mendersoftware/deployments/api/http"
dconfig "github.com/mendersoftware/deployments/config"
)
var commonLoggingAccessStack = []rest.Middleware{
// logging
&requestlog.RequestLogMiddleware{},
&accesslog.AccessLogMiddleware{Format: accesslog.SimpleLogFormat},
&rest.TimerMiddleware{},
&rest.RecorderMiddleware{},
}
var defaultDevStack = []rest.Middleware{
// catches the panic errors that occur with stack trace
&rest.RecoverMiddleware{
EnableResponseStackTrace: true,
},
// json pretty print
&rest.JsonIndentMiddleware{},
}
var defaultProdStack = []rest.Middleware{
// catches the panic errorsx
&rest.RecoverMiddleware{},
}
func SetupMiddleware(c config.Reader, api *rest.Api) {
api.Use(commonLoggingAccessStack...)
mwtype := c.GetString(dconfig.SettingMiddleware)
if mwtype == dconfig.EnvDev {
api.Use(defaultDevStack...)
} else {
api.Use(defaultProdStack...)
}
api.Use(&requestid.RequestIdMiddleware{},
&identity.IdentityMiddleware{
UpdateLogger: true,
})
// Verifies the request Content-Type header if the content is non-null.
// For the POST /api/0.0.1/images request expected Content-Type is 'multipart/form-data'.
// For the rest of the requests expected Content-Type is 'application/json'.
api.Use(&rest.IfMiddleware{
Condition: func(r *rest.Request) bool {
if r.URL.Path == api_http.ApiUrlManagementArtifacts && r.Method == http.MethodPost ||
r.URL.Path == api_http.ApiUrlManagementArtifactsGenerate &&
r.Method == http.MethodPost {
return true
} else if match, _ := regexp.MatchString(
api_http.ApiUrlInternal+"/tenants/([a-z0-9]+)/artifacts", r.URL.Path); match &&
r.Method == http.MethodPost {
return true
} else {
return false
}
},
IfTrue: rest.MiddlewareSimple(func(handler rest.HandlerFunc) rest.HandlerFunc {
return func(w rest.ResponseWriter, r *rest.Request) {
mediatype, _, _ := mime.ParseMediaType(r.Header.Get("Content-Type"))
if r.ContentLength > 0 && !(mediatype == "multipart/form-data") {
rest.Error(w,
"Bad Content-Type, expected 'multipart/form-data'",
http.StatusUnsupportedMediaType)
return
}
// call the wrapped handler
handler(w, r)
}
}),
IfFalse: &rest.ContentTypeCheckerMiddleware{},
})
}