2021-05-02 22:49:16 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2021-05-04 12:28:48 +00:00
|
|
|
"fmt"
|
2021-07-29 09:30:30 +00:00
|
|
|
"net/url"
|
|
|
|
"time"
|
2021-05-02 22:49:16 +00:00
|
|
|
|
2021-05-04 12:28:48 +00:00
|
|
|
"github.com/getsentry/sentry-go"
|
2021-05-02 22:49:16 +00:00
|
|
|
log "github.com/sirupsen/logrus"
|
2021-06-16 15:29:01 +00:00
|
|
|
"goauthentik.io/internal/common"
|
2021-05-02 22:49:16 +00:00
|
|
|
"goauthentik.io/internal/config"
|
2021-05-04 12:28:48 +00:00
|
|
|
"goauthentik.io/internal/constants"
|
2021-05-02 22:49:16 +00:00
|
|
|
"goauthentik.io/internal/gounicorn"
|
2021-07-29 09:30:30 +00:00
|
|
|
"goauthentik.io/internal/outpost/ak"
|
2021-09-08 18:04:56 +00:00
|
|
|
"goauthentik.io/internal/outpost/proxyv2"
|
2021-05-02 22:49:16 +00:00
|
|
|
"goauthentik.io/internal/web"
|
|
|
|
)
|
|
|
|
|
2021-07-17 16:04:09 +00:00
|
|
|
var running = true
|
|
|
|
|
2021-05-02 22:49:16 +00:00
|
|
|
func main() {
|
2021-05-04 12:07:12 +00:00
|
|
|
log.SetLevel(log.DebugLevel)
|
2021-05-02 22:49:16 +00:00
|
|
|
config.DefaultConfig()
|
2021-07-18 14:12:57 +00:00
|
|
|
err := config.LoadConfig("./authentik/lib/default.yml")
|
|
|
|
if err != nil {
|
|
|
|
log.WithError(err).Warning("failed to load default config")
|
|
|
|
}
|
|
|
|
err = config.LoadConfig("./local.env.yml")
|
|
|
|
if err != nil {
|
2021-08-08 22:28:08 +00:00
|
|
|
log.WithError(err).Debug("no local config to load")
|
2021-07-18 14:12:57 +00:00
|
|
|
}
|
2021-07-29 09:30:30 +00:00
|
|
|
err = config.FromEnv()
|
|
|
|
if err != nil {
|
|
|
|
log.WithError(err).Debug("failed to environment variables")
|
|
|
|
}
|
2021-05-02 22:49:16 +00:00
|
|
|
config.ConfigureLogger()
|
|
|
|
|
2021-05-04 12:28:48 +00:00
|
|
|
if config.G.ErrorReporting.Enabled {
|
2021-07-18 14:12:57 +00:00
|
|
|
err := sentry.Init(sentry.ClientOptions{
|
2021-05-04 12:28:48 +00:00
|
|
|
Dsn: "https://a579bb09306d4f8b8d8847c052d3a1d3@sentry.beryju.org/8",
|
|
|
|
AttachStacktrace: true,
|
|
|
|
TracesSampleRate: 0.6,
|
|
|
|
Release: fmt.Sprintf("authentik@%s", constants.VERSION),
|
|
|
|
Environment: config.G.ErrorReporting.Environment,
|
|
|
|
})
|
2021-07-18 14:12:57 +00:00
|
|
|
if err != nil {
|
|
|
|
log.WithError(err).Warning("failed to init sentry")
|
|
|
|
}
|
2021-05-04 12:28:48 +00:00
|
|
|
}
|
|
|
|
|
2021-06-23 18:40:51 +00:00
|
|
|
ex := common.Init()
|
2021-06-16 15:29:01 +00:00
|
|
|
defer common.Defer()
|
|
|
|
|
2021-07-29 09:30:30 +00:00
|
|
|
u, _ := url.Parse("http://localhost:8000")
|
2021-06-23 18:40:51 +00:00
|
|
|
|
2021-06-29 14:21:00 +00:00
|
|
|
g := gounicorn.NewGoUnicorn()
|
|
|
|
ws := web.NewWebServer()
|
|
|
|
defer g.Kill()
|
|
|
|
defer ws.Shutdown()
|
2021-09-09 13:52:24 +00:00
|
|
|
go web.RunMetricsServer()
|
2021-06-23 18:40:51 +00:00
|
|
|
for {
|
2021-07-17 16:04:09 +00:00
|
|
|
go attemptStartBackend(g)
|
2021-06-29 14:21:00 +00:00
|
|
|
ws.Start()
|
2021-08-29 17:19:13 +00:00
|
|
|
if !config.G.Web.DisableEmbeddedOutpost {
|
|
|
|
go attemptProxyStart(ws, u)
|
|
|
|
}
|
2021-06-23 18:40:51 +00:00
|
|
|
|
2021-06-29 14:21:00 +00:00
|
|
|
<-ex
|
2021-07-17 16:04:09 +00:00
|
|
|
running = false
|
|
|
|
log.WithField("logger", "authentik").Info("shutting down webserver")
|
2021-07-17 15:02:24 +00:00
|
|
|
go ws.Shutdown()
|
2021-07-17 16:04:09 +00:00
|
|
|
log.WithField("logger", "authentik").Info("killing gunicorn")
|
2021-06-23 18:40:51 +00:00
|
|
|
g.Kill()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-18 14:12:57 +00:00
|
|
|
func attemptStartBackend(g *gounicorn.GoUnicorn) {
|
2021-06-23 18:40:51 +00:00
|
|
|
for {
|
|
|
|
err := g.Start()
|
2021-07-17 16:04:09 +00:00
|
|
|
if !running {
|
2021-07-18 14:12:57 +00:00
|
|
|
return
|
2021-06-29 14:21:00 +00:00
|
|
|
}
|
2021-07-17 16:04:09 +00:00
|
|
|
log.WithField("logger", "authentik.g").WithError(err).Warning("gunicorn process died, restarting")
|
2021-06-23 18:40:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-29 09:30:30 +00:00
|
|
|
func attemptProxyStart(ws *web.WebServer, u *url.URL) {
|
|
|
|
maxTries := 100
|
|
|
|
attempt := 0
|
|
|
|
// Sleep to wait for the app server to start
|
|
|
|
time.Sleep(30 * time.Second)
|
|
|
|
for {
|
|
|
|
log.WithField("logger", "authentik").Debug("attempting to init outpost")
|
|
|
|
ac := ak.NewAPIController(*u, config.G.SecretKey)
|
|
|
|
if ac == nil {
|
|
|
|
attempt += 1
|
|
|
|
time.Sleep(1 * time.Second)
|
|
|
|
if attempt > maxTries {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
2021-09-09 08:23:46 +00:00
|
|
|
srv := proxyv2.NewProxyServer(ac, 0)
|
2021-07-29 09:30:30 +00:00
|
|
|
ws.ProxyServer = srv
|
|
|
|
ac.Server = srv
|
|
|
|
log.WithField("logger", "authentik").Debug("attempting to start outpost")
|
|
|
|
err := ac.StartBackgorundTasks()
|
|
|
|
if err != nil {
|
2021-09-16 10:09:12 +00:00
|
|
|
log.WithField("logger", "authentik").WithError(err).Warning("outpost failed to start")
|
2021-07-29 09:30:30 +00:00
|
|
|
attempt += 1
|
|
|
|
time.Sleep(15 * time.Second)
|
|
|
|
if attempt > maxTries {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
} else {
|
|
|
|
select {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|