forked from mendersoftware/deployments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmiddleware.go
170 lines (146 loc) · 4.98 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
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
// Copyright 2019 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/customheader"
"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"
)
const (
HttpHeaderContentType string = "Content-type"
HttpHeaderOrigin string = "Origin"
HttpHeaderAuthorization string = "Authorization"
HttpHeaderAcceptEncoding string = "Accept-Encoding"
HttpHeaderAccessControlRequestHeaders string = "Access-Control-Request-Headers"
HttpHeaderAccessControlRequestMethod string = "Access-Control-Request-Method"
HttpHeaderLastModified string = "Last-Modified"
HttpHeaderExpires string = "Expires"
HttpHeaderLocation string = "Location"
HttpHeaderLink string = "Link"
HttpHeaderAllow string = "Allow"
HttpHeaderAccept string = "Accept"
)
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{},
// response compression
&rest.GzipMiddleware{},
}
func SetupMiddleware(c config.Reader, api *rest.Api) {
api.Use(&customheader.CustomHeaderMiddleware{
HeaderName: "X-DEPLOYMENTS-VERSION",
HeaderValue: CreateVersionString(),
})
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 {
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{},
})
api.Use(&rest.CorsMiddleware{
RejectNonCorsRequests: false,
// Should be tested with some list
OriginValidator: func(origin string, request *rest.Request) bool {
// Accept all requests
return true
},
// Preflight request cache length
AccessControlMaxAge: 60,
// Allow authentication requests
AccessControlAllowCredentials: true,
// Allowed headers
AllowedMethods: []string{
http.MethodGet,
http.MethodPost,
http.MethodPut,
http.MethodDelete,
http.MethodOptions,
},
// Allowed heardes
AllowedHeaders: []string{
HttpHeaderAccept,
HttpHeaderAllow,
HttpHeaderContentType,
HttpHeaderOrigin,
HttpHeaderAuthorization,
HttpHeaderAcceptEncoding,
HttpHeaderAccessControlRequestHeaders,
HttpHeaderAccessControlRequestMethod,
},
// Headers that can be exposed to JS
AccessControlExposeHeaders: []string{
HttpHeaderLocation,
HttpHeaderLink,
},
})
}