-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhttp.go
More file actions
128 lines (111 loc) · 4.33 KB
/
http.go
File metadata and controls
128 lines (111 loc) · 4.33 KB
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
// Copyright The Linux Foundation and each contributor to LFX.
// SPDX-License-Identifier: MIT
// Package main provides HTTP server setup and configuration for the mailing list API.
package main
import (
"context"
"log/slog"
"net/http"
"sync"
"time"
mailinglistservicesvr "github.com/linuxfoundation/lfx-v2-mailing-list-service/gen/http/mailing_list/server"
mailinglistservice "github.com/linuxfoundation/lfx-v2-mailing-list-service/gen/mailing_list"
"github.com/linuxfoundation/lfx-v2-mailing-list-service/internal/middleware"
"go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp"
"goa.design/clue/debug"
goahttp "goa.design/goa/v3/http"
)
// handleHTTPServer starts configures and starts a HTTP server on the given
// URL. It shuts down the server if any error is received in the error channel.
func handleHTTPServer(ctx context.Context, host string, mailingListServiceEndpoints *mailinglistservice.Endpoints, wg *sync.WaitGroup, errc chan error, dbg bool) {
// Provide the transport specific request decoder and response encoder.
// The goa http package has built-in support for JSON, XML and gob.
// Other encodings can be used by providing the corresponding functions,
// see goa.design/implement/encoding.
var (
dec = goahttp.RequestDecoder
enc = goahttp.ResponseEncoder
)
// Build the service HTTP request multiplexer and mount debug and profiler
// endpoints in debug mode.
var mux goahttp.Muxer
{
mux = goahttp.NewMuxer()
if dbg {
// Mount pprof handlers for memory profiling under /debug/pprof.
debug.MountPprofHandlers(debug.Adapt(mux))
// Mount /debug endpoint to enable or disable debug logs at runtime.
debug.MountDebugLogEnabler(debug.Adapt(mux))
}
}
// Wrap the endpoints with the transport specific layers. The generated
// server packages contains code generated from the design which maps
// the service input and output data structures to HTTP requests and
// responses.
var (
mailingListServiceServer *mailinglistservicesvr.Server
)
{
eh := errorHandler(ctx)
mailingListServiceServer = mailinglistservicesvr.New(mailingListServiceEndpoints, mux, dec, enc, eh, nil, nil)
}
// Configure the mux.
mailinglistservicesvr.Mount(mux, mailingListServiceServer)
var handler http.Handler = mux
// Add RequestID middleware first
handler = middleware.RequestIDMiddleware()(handler)
// Add GroupsIO webhook body capture middleware
handler = middleware.GrpsIOWebhookBodyCaptureMiddleware()(handler)
// Add Authorization middleware
handler = middleware.AuthorizationMiddleware()(handler)
if dbg {
// Log query and response bodies if debug logs are enabled.
handler = debug.HTTP()(handler)
}
// Add OpenTelemetry HTTP instrumentation (outermost to capture full request lifecycle)
handler = otelhttp.NewHandler(handler, "mailing-list-api")
// Start HTTP server using default configuration, change the code to
// configure the server as required by your service.
srv := &http.Server{Addr: host, Handler: handler, ReadHeaderTimeout: time.Second * 60}
for _, m := range mailingListServiceServer.Mounts {
slog.InfoContext(ctx, "HTTP endpoint mounted",
"method", m.Method,
"verb", m.Verb,
"pattern", m.Pattern,
)
}
(*wg).Add(1)
go func() {
defer (*wg).Done()
// Start HTTP server in a separate goroutine.
go func() {
slog.InfoContext(ctx, "HTTP server listening", "host", host)
select {
case errc <- srv.ListenAndServe():
case <-ctx.Done(): // avoid deadlock if channel already satisfied
}
}()
<-ctx.Done()
slog.InfoContext(ctx, "shutting down HTTP server", "host", host)
// Shutdown gracefully with a 30s timeout.
ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
defer cancel()
err := srv.Shutdown(ctx)
if err != nil {
slog.ErrorContext(ctx, "failed to shutdown HTTP server", "error", err)
}
}()
}
// errorHandler returns a function that writes and logs the given error.
// The function also writes and logs the error unique ID so that it's possible
// to correlate.
func errorHandler(logCtx context.Context) func(context.Context, http.ResponseWriter, error) {
return func(ctx context.Context, _ http.ResponseWriter, err error) {
// Log with request context but include info from both contexts
slog.ErrorContext(ctx, "HTTP error occurred",
"error", err,
"has_server_context", logCtx != nil,
"has_request_context", ctx != nil,
)
}
}