forked from mendersoftware/deployments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
middleware.go
148 lines (126 loc) · 4.33 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
// Copyright 2016 Mender Software 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"
"github.com/ant0ine/go-json-rest/rest"
"github.com/mendersoftware/deployments/config"
"github.com/mendersoftware/go-lib-micro/accesslog"
"github.com/mendersoftware/go-lib-micro/requestid"
"github.com/mendersoftware/go-lib-micro/requestlog"
)
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"
HttpHeaderAllow string = "Allow"
HttpHeaderAccept string = "Accept"
EnvProd string = "prod"
EnvDev string = "dev"
)
var DefaultDevStack = []rest.Middleware{
// logging
&requestlog.RequestLogMiddleware{},
&accesslog.AccessLogMiddleware{Format: accesslog.SimpleLogFormat},
&rest.TimerMiddleware{},
&rest.RecorderMiddleware{},
// catches the panic errors that occur with stack trace
&rest.RecoverMiddleware{
EnableResponseStackTrace: true,
},
// json pretty print
&rest.JsonIndentMiddleware{},
&requestid.RequestIdMiddleware{},
}
var DefaultProdStack = []rest.Middleware{
// logging
&requestlog.RequestLogMiddleware{},
&accesslog.AccessLogMiddleware{Format: accesslog.SimpleLogFormat},
&rest.TimerMiddleware{},
&rest.RecorderMiddleware{},
// catches the panic errorsx
&rest.RecoverMiddleware{},
// response compression
&rest.GzipMiddleware{},
&requestid.RequestIdMiddleware{},
}
func SetupMiddleware(c config.ConfigReader, api *rest.Api) {
api.Use(DefaultDevStack...)
// 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/0.0.1/artifacts" && 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 lenght
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,
},
})
}