-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.go
235 lines (203 loc) · 5.18 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
package suzu
import (
"context"
"crypto/tls"
"crypto/x509"
"fmt"
"net"
"net/http"
"net/netip"
"os"
"path/filepath"
"strconv"
"strings"
"time"
"github.com/labstack/echo-contrib/prometheus"
"github.com/labstack/echo/v4"
"github.com/labstack/echo/v4/middleware"
zlog "github.com/rs/zerolog/log"
"golang.org/x/net/http2"
"golang.org/x/net/http2/h2c"
)
type Server struct {
config *Config
echo *echo.Echo
echoExporter *echo.Echo
}
func NewServer(c *Config, service string) (*Server, error) {
h2s := &http2.Server{
MaxConcurrentStreams: c.HTTP2MaxConcurrentStreams,
MaxReadFrameSize: c.HTTP2MaxReadFrameSize,
IdleTimeout: time.Duration(c.HTTP2IdleTimeout) * time.Second,
}
_, err := netip.ParseAddr(c.ListenAddr)
if err != nil {
return nil, err
}
e := echo.New()
s := &Server{
config: c,
}
e.Server = &http.Server{
Addr: net.JoinHostPort(c.ListenAddr, strconv.Itoa(c.ListenPort)),
Handler: h2c.NewHandler(e, h2s),
}
// クライアント認証をするかどうかのチェック
if c.TLSVerifyCacertPath != "" {
clientCAPath := c.TLSVerifyCacertPath
certPool, err := appendCerts(clientCAPath)
if err != nil {
zlog.Error().Err(err).Send()
return nil, err
}
tlsConfig := &tls.Config{
ClientAuth: tls.RequireAndVerifyClientCert,
ClientCAs: certPool,
}
e.Server.TLSConfig = tlsConfig
}
if err := http2.ConfigureServer(e.Server, h2s); err != nil {
return nil, err
}
e.Pre(middleware.RemoveTrailingSlash())
e.Use(middleware.RequestLoggerWithConfig(middleware.RequestLoggerConfig{
Skipper: func(c echo.Context) bool {
// /health の時はログを吐き出さない
return strings.HasPrefix(c.Request().URL.Path, "/.ok")
},
LogRemoteIP: true,
LogHost: true,
LogMethod: true,
LogURI: true,
LogStatus: true,
LogError: true,
LogLatency: true,
LogUserAgent: true,
LogContentLength: true,
LogResponseSize: true,
LogValuesFunc: func(c echo.Context, v middleware.RequestLoggerValues) error {
zlog.Info().
Str("remote_ip", v.RemoteIP).
Str("host", v.Host).
Str("user_agent", v.UserAgent).
Str("uri", v.URI).
Int("status", v.Status).
Err(v.Error).
Str("latency", v.Latency.String()).
Str("bytes_in", v.ContentLength).
Int64("bytes_out", v.ResponseSize).
Msg(v.Method)
return nil
},
}))
e.Use(middleware.Recover())
// LB からのヘルスチェック専用 API
e.GET("/.ok", s.healthcheckHandler)
e.POST("/speech", s.createSpeechHandler(service, nil))
e.POST("/test", s.createSpeechHandler("test", nil))
e.POST("/dump", s.createSpeechHandler("dump", nil))
echoExporter := echo.New()
echoExporter.HideBanner = true
echoExporter.HidePort = true
prom := prometheus.NewPrometheus("echo", nil)
e.Use(prom.HandlerFunc)
prom.SetMetricsPath(echoExporter)
s.echo = e
s.echoExporter = echoExporter
zlog.Info().Str("service_type", service).Send()
return s, nil
}
func (s *Server) Start(ctx context.Context) error {
ch := make(chan error)
go func() {
defer close(ch)
if s.config.HTTPS {
if err := s.echo.Server.ListenAndServeTLS(s.config.TLSFullchainFile, s.config.TLSPrivkeyFile); err != http.ErrServerClosed {
ch <- err
}
} else {
// HTTP/2 over TCP
if err := s.echo.Server.ListenAndServe(); err != http.ErrServerClosed {
ch <- err
}
}
}()
defer func() {
if err := s.echo.Shutdown(ctx); err != nil {
zlog.Error().Err(err).Send()
}
}()
select {
case <-ctx.Done():
return ctx.Err()
case err := <-ch:
return err
}
}
func (s *Server) StartExporter(ctx context.Context) error {
ch := make(chan error)
go func() {
var err error
// exporter も HTTPS にしたい場合はこちら
if s.config.ExporterHTTPS {
err = s.echoExporter.StartTLS(
net.JoinHostPort(s.config.ExporterListenAddr, strconv.Itoa(s.config.ExporterListenPort)),
s.config.TLSFullchainFile, s.config.TLSPrivkeyFile,
)
} else {
// TODO: StartTLS 可能にする?
err = s.echoExporter.Start(
net.JoinHostPort(s.config.ExporterListenAddr, strconv.Itoa(s.config.ExporterListenPort)),
)
}
if err != nil {
ch <- err
}
}()
defer func() {
if err := s.echoExporter.Shutdown(ctx); err != nil {
zlog.Error().Err(err).Send()
}
}()
select {
case <-ctx.Done():
return ctx.Err()
case err := <-ch:
return err
}
}
func appendCerts(clientCAPath string) (*x509.CertPool, error) {
certPool := x509.NewCertPool()
fi, err := os.Stat(clientCAPath)
if err != nil {
return nil, err
}
if fi.IsDir() {
files, err := os.ReadDir(clientCAPath)
if err != nil {
return nil, err
}
for _, f := range files {
clientCAPath := filepath.Join(clientCAPath, f.Name())
if err := appendCertsFromPEM(certPool, clientCAPath); err != nil {
return nil, err
}
}
} else {
if err := appendCertsFromPEM(certPool, clientCAPath); err != nil {
return nil, err
}
}
return certPool, nil
}
func appendCertsFromPEM(certPool *x509.CertPool, filepath string) error {
clientCA, err := os.ReadFile(filepath)
if err != nil {
return err
}
ok := certPool.AppendCertsFromPEM(clientCA)
if !ok {
return fmt.Errorf("failed to append certificates: %s", filepath)
}
return nil
}