diff options
author | Alexander Kiryukhin <a.kiryukhin@mail.ru> | 2022-05-21 20:38:21 +0300 |
---|---|---|
committer | Alexander Kiryukhin <a.kiryukhin@mail.ru> | 2022-05-21 20:38:21 +0300 |
commit | 81389df9484c28dfcec1cf7592b8d0f8b7e4e8e1 (patch) | |
tree | 7a7d0440481e45b999e828b1e5ba2b28129658bc /transport/http.go | |
parent | d4708a3665e546eea57611b17441ad9b8c89e9a4 (diff) |
Improvments. Breaking changes
Diffstat (limited to 'transport/http.go')
-rw-r--r-- | transport/http.go | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/transport/http.go b/transport/http.go new file mode 100644 index 0000000..663bb31 --- /dev/null +++ b/transport/http.go @@ -0,0 +1,40 @@ +package transport + +import ( + "context" + "crypto/tls" + "net" + "net/http" +) + +type HTTP struct { + Bind string + TLS *tls.Config +} + +func (h *HTTP) Run(ctx context.Context, resolver Resolver) error { + srv := http.Server{ + Addr: h.Bind, + Handler: http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + if r.Method != http.MethodPost { + w.WriteHeader(http.StatusMethodNotAllowed) + return + } + w.WriteHeader(http.StatusOK) + w.Header().Set("Content-Type", "application/json") + resolver.Resolve(ctx, r.Body, w) + }), + BaseContext: func(l net.Listener) context.Context { + return ctx + }, + TLSConfig: h.TLS, + } + go func() { + <-ctx.Done() + srv.Close() + }() + if err := srv.ListenAndServe(); err != http.ErrServerClosed { + return err + } + return nil +} |