2021-04-19 22:30:27 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/url"
|
|
|
|
"os"
|
|
|
|
|
|
|
|
log "github.com/sirupsen/logrus"
|
2023-04-21 10:32:48 +00:00
|
|
|
"github.com/spf13/cobra"
|
2021-04-19 22:30:27 +00:00
|
|
|
|
2021-06-16 15:29:01 +00:00
|
|
|
"goauthentik.io/internal/common"
|
2023-01-08 13:19:08 +00:00
|
|
|
"goauthentik.io/internal/config"
|
2022-01-25 16:04:28 +00:00
|
|
|
"goauthentik.io/internal/debug"
|
2021-06-16 10:02:02 +00:00
|
|
|
"goauthentik.io/internal/outpost/ak"
|
2023-04-21 10:32:48 +00:00
|
|
|
"goauthentik.io/internal/outpost/ak/healthcheck"
|
2021-06-16 10:02:02 +00:00
|
|
|
"goauthentik.io/internal/outpost/ldap"
|
2021-04-19 22:30:27 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const helpMessage = `authentik ldap
|
|
|
|
|
|
|
|
Required environment variables:
|
|
|
|
- AUTHENTIK_HOST: URL to connect to (format "http://authentik.company")
|
|
|
|
- AUTHENTIK_TOKEN: Token to authenticate with
|
|
|
|
- AUTHENTIK_INSECURE: Skip SSL Certificate verification`
|
|
|
|
|
2023-04-21 10:32:48 +00:00
|
|
|
var rootCmd = &cobra.Command{
|
|
|
|
Long: helpMessage,
|
|
|
|
PersistentPreRun: func(cmd *cobra.Command, args []string) {
|
|
|
|
log.SetLevel(log.DebugLevel)
|
|
|
|
log.SetFormatter(&log.JSONFormatter{
|
|
|
|
FieldMap: log.FieldMap{
|
|
|
|
log.FieldKeyMsg: "event",
|
|
|
|
log.FieldKeyTime: "timestamp",
|
|
|
|
},
|
|
|
|
DisableHTMLEscape: true,
|
|
|
|
})
|
|
|
|
},
|
|
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
|
|
debug.EnableDebugServer()
|
|
|
|
akURL := config.Get().AuthentikHost
|
|
|
|
if akURL == "" {
|
|
|
|
fmt.Println("env AUTHENTIK_HOST not set!")
|
|
|
|
fmt.Println(helpMessage)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
akToken := config.Get().AuthentikToken
|
|
|
|
if akToken == "" {
|
|
|
|
fmt.Println("env AUTHENTIK_TOKEN not set!")
|
|
|
|
fmt.Println(helpMessage)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
2021-04-19 22:30:27 +00:00
|
|
|
|
2023-04-21 10:32:48 +00:00
|
|
|
akURLActual, err := url.Parse(akURL)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
fmt.Println(helpMessage)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
2021-04-19 22:30:27 +00:00
|
|
|
|
2023-04-21 10:32:48 +00:00
|
|
|
ex := common.Init()
|
|
|
|
defer common.Defer()
|
|
|
|
go func() {
|
|
|
|
for {
|
|
|
|
<-ex
|
|
|
|
os.Exit(0)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
ac := ak.NewAPIController(*akURLActual, akToken)
|
|
|
|
if ac == nil {
|
|
|
|
os.Exit(1)
|
2022-08-05 16:13:09 +00:00
|
|
|
}
|
2023-04-21 10:32:48 +00:00
|
|
|
defer ac.Shutdown()
|
2021-04-19 22:30:27 +00:00
|
|
|
|
2023-04-21 10:32:48 +00:00
|
|
|
ac.Server = ldap.NewServer(ac)
|
2021-04-19 22:30:27 +00:00
|
|
|
|
2023-04-21 10:32:48 +00:00
|
|
|
err = ac.Start()
|
|
|
|
if err != nil {
|
|
|
|
log.WithError(err).Panic("Failed to run server")
|
|
|
|
}
|
2021-04-19 22:30:27 +00:00
|
|
|
|
2023-04-21 10:32:48 +00:00
|
|
|
for {
|
|
|
|
<-ex
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
2021-04-19 22:30:27 +00:00
|
|
|
|
2023-04-21 10:32:48 +00:00
|
|
|
func main() {
|
|
|
|
rootCmd.AddCommand(healthcheck.Command)
|
|
|
|
err := rootCmd.Execute()
|
|
|
|
if err != nil {
|
|
|
|
os.Exit(1)
|
2021-04-19 22:30:27 +00:00
|
|
|
}
|
|
|
|
}
|