2021-05-02 22:49:16 +00:00
|
|
|
package web
|
|
|
|
|
|
|
|
import (
|
2021-05-03 21:04:48 +00:00
|
|
|
"context"
|
|
|
|
"errors"
|
|
|
|
"net"
|
2021-05-02 22:49:16 +00:00
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/gorilla/handlers"
|
|
|
|
"github.com/gorilla/mux"
|
2021-07-20 09:03:09 +00:00
|
|
|
"github.com/pires/go-proxyproto"
|
2021-05-02 22:49:16 +00:00
|
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
"goauthentik.io/internal/config"
|
2021-10-05 20:19:33 +00:00
|
|
|
"goauthentik.io/internal/gounicorn"
|
2021-09-08 18:04:56 +00:00
|
|
|
"goauthentik.io/internal/outpost/proxyv2"
|
2021-12-16 10:00:19 +00:00
|
|
|
"goauthentik.io/internal/utils/web"
|
2021-12-22 10:43:45 +00:00
|
|
|
"goauthentik.io/internal/web/tenant_tls"
|
2021-05-02 22:49:16 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type WebServer struct {
|
|
|
|
Bind string
|
|
|
|
BindTLS bool
|
|
|
|
|
2021-05-03 21:04:48 +00:00
|
|
|
stop chan struct{} // channel for waiting shutdown
|
|
|
|
|
2021-09-08 18:04:56 +00:00
|
|
|
ProxyServer *proxyv2.ProxyServer
|
2021-12-22 10:43:45 +00:00
|
|
|
TenantTLS *tenant_tls.Watcher
|
2021-07-29 09:30:30 +00:00
|
|
|
|
2021-05-02 22:49:16 +00:00
|
|
|
m *mux.Router
|
|
|
|
lh *mux.Router
|
|
|
|
log *log.Entry
|
2021-10-05 20:19:33 +00:00
|
|
|
p *gounicorn.GoUnicorn
|
2021-05-02 22:49:16 +00:00
|
|
|
}
|
|
|
|
|
2021-10-05 20:19:33 +00:00
|
|
|
func NewWebServer(g *gounicorn.GoUnicorn) *WebServer {
|
2021-10-11 15:51:49 +00:00
|
|
|
l := log.WithField("logger", "authentik.router")
|
2021-05-02 22:49:16 +00:00
|
|
|
mainHandler := mux.NewRouter()
|
|
|
|
mainHandler.Use(handlers.ProxyHeaders)
|
|
|
|
mainHandler.Use(handlers.CompressHandler)
|
2022-07-30 15:51:01 +00:00
|
|
|
loggingHandler := mainHandler.NewRoute().Subrouter()
|
|
|
|
loggingHandler.Use(web.NewLoggingHandler(l, nil))
|
2021-05-04 12:28:48 +00:00
|
|
|
|
2021-05-02 22:49:16 +00:00
|
|
|
ws := &WebServer{
|
|
|
|
m: mainHandler,
|
2022-07-30 15:51:01 +00:00
|
|
|
lh: loggingHandler,
|
2021-09-04 11:52:47 +00:00
|
|
|
log: l,
|
2021-10-05 20:19:33 +00:00
|
|
|
p: g,
|
2021-05-02 22:49:16 +00:00
|
|
|
}
|
|
|
|
ws.configureStatic()
|
2021-11-02 13:44:37 +00:00
|
|
|
ws.configureRoutes()
|
2021-05-02 22:49:16 +00:00
|
|
|
ws.configureProxy()
|
|
|
|
return ws
|
|
|
|
}
|
|
|
|
|
2021-11-02 13:44:37 +00:00
|
|
|
func (ws *WebServer) configureRoutes() {
|
|
|
|
ws.m.Path("/api/v3/sentry/").HandlerFunc(ws.APISentryProxy)
|
|
|
|
}
|
|
|
|
|
2021-06-29 14:21:00 +00:00
|
|
|
func (ws *WebServer) Start() {
|
|
|
|
go ws.listenPlain()
|
|
|
|
go ws.listenTLS()
|
2021-06-23 18:40:51 +00:00
|
|
|
}
|
|
|
|
|
2021-06-29 14:21:00 +00:00
|
|
|
func (ws *WebServer) Shutdown() {
|
2021-06-23 18:40:51 +00:00
|
|
|
ws.stop <- struct{}{}
|
2021-05-02 22:49:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (ws *WebServer) listenPlain() {
|
2022-08-03 19:33:27 +00:00
|
|
|
ln, err := net.Listen("tcp", config.Get().Listen.HTTP)
|
2021-05-03 21:04:48 +00:00
|
|
|
if err != nil {
|
2021-12-16 10:00:19 +00:00
|
|
|
ws.log.WithError(err).Fatal("failed to listen")
|
2021-05-03 21:04:48 +00:00
|
|
|
}
|
2021-07-20 09:03:09 +00:00
|
|
|
proxyListener := &proxyproto.Listener{Listener: ln}
|
|
|
|
defer proxyListener.Close()
|
|
|
|
|
2022-08-03 19:33:27 +00:00
|
|
|
ws.log.WithField("listen", config.Get().Listen.HTTP).Info("Starting HTTP server")
|
2021-07-20 09:03:09 +00:00
|
|
|
ws.serve(proxyListener)
|
2022-08-03 19:33:27 +00:00
|
|
|
ws.log.WithField("listen", config.Get().Listen.HTTP).Info("Stopping HTTP server")
|
2021-05-02 22:49:16 +00:00
|
|
|
}
|
2021-05-03 21:04:48 +00:00
|
|
|
|
|
|
|
func (ws *WebServer) serve(listener net.Listener) {
|
|
|
|
srv := &http.Server{
|
|
|
|
Handler: ws.m,
|
|
|
|
}
|
|
|
|
|
|
|
|
// See https://golang.org/pkg/net/http/#Server.Shutdown
|
|
|
|
idleConnsClosed := make(chan struct{})
|
|
|
|
go func() {
|
|
|
|
<-ws.stop // wait notification for stopping server
|
|
|
|
|
|
|
|
// We received an interrupt signal, shut down.
|
|
|
|
if err := srv.Shutdown(context.Background()); err != nil {
|
|
|
|
// Error from closing listeners, or context timeout:
|
2021-12-16 10:00:19 +00:00
|
|
|
ws.log.WithError(err).Warning("HTTP server Shutdown")
|
2021-05-03 21:04:48 +00:00
|
|
|
}
|
|
|
|
close(idleConnsClosed)
|
|
|
|
}()
|
|
|
|
|
|
|
|
err := srv.Serve(listener)
|
|
|
|
if err != nil && !errors.Is(err, http.ErrServerClosed) {
|
2021-12-16 10:00:19 +00:00
|
|
|
ws.log.WithError(err).Error("ERROR: http.Serve()")
|
2021-05-03 21:04:48 +00:00
|
|
|
}
|
|
|
|
<-idleConnsClosed
|
|
|
|
}
|