-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.go
346 lines (313 loc) · 9.1 KB
/
server.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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
package grouter
import (
"context"
"fmt"
"log"
"net/http"
"os"
"sync"
"go.opentelemetry.io/otel"
"go.opentelemetry.io/otel/attribute"
"go.opentelemetry.io/otel/trace"
)
var _instance *Server
var once sync.Once
type TLSConfig struct {
CertFilePath string
KeyFilePath string
}
type Server struct {
router *Router
tls *TLSConfig
httpServer *http.Server
serving bool
shuttingDown bool
context context.Context
additionalCleanup []func(context.Context) error
}
func setup() []func(context.Context) error {
// Tracing
tracingCleanup, err := startTracing()
if err != nil {
log.Fatal(err)
}
return []func(context.Context) error{
tracingCleanup,
}
}
func GetServer(ctx *context.Context, tls *TLSConfig) *Server {
once.Do(func() {
additionalCleanup := setup()
_instance = &Server{
router: NewRouter(*ctx),
tls: tls,
httpServer: nil,
serving: false,
shuttingDown: false,
context: *ctx,
additionalCleanup: additionalCleanup,
}
// If the context is nil, create a new one with the default background context
if _instance.context == nil {
_instance.SetTracingContext(context.Background())
}
})
// When testing the server, we need to be able to change the TLS config on the fly
if _instance.tls != tls {
return _instance.SetTLSConfig(tls)
}
return _instance
}
func (instance *Server) SetTracingContext(ctx context.Context) *Server {
instance.context = ctx
instance.router.context = ctx
return instance
}
func (instance *Server) SetRouter(router *Router) *Server {
if instance.router == router {
return instance
}
if instance.serving {
fmt.Println("Changing the router while the server is running is not supported, shuting down the server...")
err := instance.Shutdown(true)
if err != nil {
log.Fatal(err)
}
}
instance.router = router
return instance
}
func (instance *Server) SetTLSConfig(tls *TLSConfig) *Server {
if instance.tls == tls {
return instance
}
if instance.serving {
fmt.Println("Changing the TLS config while the server is running is not supported, shuting down the server...")
err := instance.Shutdown(true)
if err != nil {
log.Fatal(err)
}
}
if err := validatePath(tls.CertFilePath); err != nil {
log.Fatal(err)
}
if err := validatePath(tls.KeyFilePath); err != nil {
log.Fatal(err)
}
instance.tls = tls
return instance
}
func (instance *Server) UseGlobal(handler RequestHandler, options *GlobalRouteOptions) {
instance.router.UseGlobal(handler, options)
}
func (instance *Server) Use(path string, method HTTPMethod, handler RequestHandler) {
instance.router.Use(path, method, handler)
}
func (instance *Server) Get(path string, handler RequestHandler) {
instance.Use(path, GET, handler)
}
func (instance *Server) Post(path string, handler RequestHandler) {
instance.Use(path, POST, handler)
}
func (instance *Server) Put(path string, handler RequestHandler) {
instance.Use(path, PUT, handler)
}
func (instance *Server) Delete(path string, handler RequestHandler) {
instance.Use(path, DELETE, handler)
}
func (instance *Server) Patch(path string, handler RequestHandler) {
instance.Use(path, PATCH, handler)
}
func (instance *Server) Options(path string, handler RequestHandler) {
instance.Use(path, OPTIONS, handler)
}
func (instance *Server) Head(path string, handler RequestHandler) {
instance.Use(path, HEAD, handler)
}
func (instance *Server) Listen(port int, observer chan struct{}) error {
// Start tracing
_, span := otel.Tracer(traceProviderName).Start(instance.context, "Listen")
// End tracing
if instance.serving {
log.Fatal("Server is already running, called Listen() twice")
}
instance.serving = true
mux := http.NewServeMux()
for path := range instance.router.paths {
localPath := path // Create a local copy of the path variable
mux.HandleFunc(localPath, func(w http.ResponseWriter, r *http.Request) {
// Create a span for the request trace
c, requestSpan := otel.Tracer(traceProviderName).Start(
context.Background(), // New context because the request traces should be separate from the server management trace
fmt.Sprintf("%s %s", r.Method, r.URL.Path),
trace.WithAttributes(
attribute.Bool("tls", instance.tls != nil),
attribute.String("http.request.method", r.Method),
attribute.Int("http.request.body.size", int(r.ContentLength)),
),
)
wrapper := NewResponseWriter(w)
instance.runHandlersForPath(c, localPath, wrapper, r)
// If the response is 1xx, 2xx, or 3xx, set the span status to Error
if wrapper.StatusCode != nil {
requestSpan.SetAttributes(attribute.Int("http.response.status_code", *wrapper.StatusCode))
}
if *wrapper.StatusCode >= 500 {
requestSpan.SetStatus(2, "HTTP status code >= 500") // 2 = OLTP Error
}
requestSpan.End()
})
}
// Convert the port number to a string and prepend the colon
portStr := fmt.Sprintf(":%d", port)
// Start the HTTP(s) server on the specified port
instance.httpServer = &http.Server{
Addr: portStr,
Handler: mux,
}
// Server is about to start listening, close trace span and close any observers
span.End()
close(observer)
var err error
if instance.tls != nil {
err = instance.httpServer.ListenAndServeTLS(instance.tls.CertFilePath, instance.tls.KeyFilePath)
} else {
err = instance.httpServer.ListenAndServe()
}
instance.serving = false
return err
}
func (instance *Server) Shutdown(willRestart bool) error {
// Start tracing
c, span := otel.Tracer(traceProviderName).Start(instance.context, "Shutdown")
if !instance.serving {
fmt.Println("Server is not running, called Shutdown() on a stopped server")
span.End()
return nil
}
if instance.shuttingDown {
fmt.Println("Server is already shutting down, called Shutdown() twice")
span.End()
return nil
}
instance.shuttingDown = true
if instance.httpServer != nil {
fmt.Println("...Shutting down server...")
err := instance.httpServer.Shutdown(c)
if err != nil && err != http.ErrServerClosed {
span.End()
return err
}
}
instance.shuttingDown = false
span.End()
if !willRestart {
// If the server is not going to be restarted, run any additional cleanup functions
for _, cleanup := range instance.additionalCleanup {
err := cleanup(instance.context)
if err != nil {
return err
}
}
}
return nil
}
func (instance *Server) runHandlersForPath(ctx context.Context, path string, w *ResponseWriter, r *http.Request) {
// Start tracing
c, span := otel.Tracer(traceProviderName).Start(ctx, "runHandlersForPath")
defer span.End()
// End tracing
// Run global handlers before the route handlers
err := instance.runGlobalHandlers(c, path, w, r, true)
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
fmt.Printf("GlobalHandlers:Before:Error: %v", err)
return
}
// Get the route for the path and method
route := instance.router.trie.Get(path)
if route == nil || route.(Route)[HTTPMethod(r.Method)] == nil || len(route.(Route)[HTTPMethod(r.Method)]) == 0 {
w.WriteHeader(http.StatusNotFound)
return
}
// Run the route handlers
nextCalled := false
for _, handler := range route.(Route)[HTTPMethod(r.Method)] {
err := handler(c, w, r, func() {
nextCalled = true
})
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
fmt.Printf("RouteHandlers:Error: %v", err)
return
}
if !nextCalled {
break
}
}
// Run global handlers after the route handlers
err = instance.runGlobalHandlers(c, path, w, r, false)
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
fmt.Printf("GlobalHandlers:After:Error %v", err)
return
}
// If no response was sent, send a default response
if w.StatusCode == nil {
w.WriteHeader(http.StatusInternalServerError)
fmt.Printf("Error: Server did not send response for path %s", path)
}
}
func (instance *Server) runGlobalHandlers(ctx context.Context, path string, w *ResponseWriter, r *http.Request, before bool) error {
// Start tracing
_, span := otel.Tracer(traceProviderName).Start(ctx, "runGlobalHandlers")
defer span.End()
// End tracing
var handlers []GlobalHandler
if before {
handlers = instance.router.globalHandlers.beforeAll
} else {
handlers = instance.router.globalHandlers.afterAll
}
nextCalled := false
for _, handler := range handlers {
ignored := false
if handler.options != nil {
for _, regex := range handler.options.ignoredPathRegexes {
if regex.MatchString(path) {
ignored = true
break
}
}
if ignored {
continue
}
}
err := handler.handler(ctx, w, r, func() {
nextCalled = true
})
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
fmt.Printf("Error: %v", err)
return err
}
if !nextCalled {
break
}
}
return nil
}
func validatePath(path string) error {
fileInfo, err := os.Stat(path)
if err != nil {
if os.IsNotExist(err) {
return fmt.Errorf("file does not exist: %s", path)
}
return fmt.Errorf("error accessing file: %s, %v", path, err)
}
// Check if path is a regular file (not a directory or other type of file)
if !fileInfo.Mode().IsRegular() {
return fmt.Errorf("path is not a regular file: %s", path)
}
return nil
}