This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/outpost/cmd/proxy/server.go

66 lines
1.2 KiB
Go
Raw Normal View History

package main
2020-09-02 22:04:12 +00:00
import (
"fmt"
2020-09-02 22:04:12 +00:00
"math/rand"
"net/url"
"os"
"os/signal"
"time"
log "github.com/sirupsen/logrus"
2021-01-16 20:45:24 +00:00
"goauthentik.io/outpost/pkg/ak"
"goauthentik.io/outpost/pkg/proxy"
2020-09-02 22:04:12 +00:00
)
2020-12-05 21:08:42 +00:00
const helpMessage = `authentik proxy
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`
func main() {
log.SetLevel(log.DebugLevel)
2020-12-05 21:08:42 +00:00
pbURL, found := os.LookupEnv("AUTHENTIK_HOST")
2020-09-02 22:04:12 +00:00
if !found {
2020-12-05 21:08:42 +00:00
fmt.Println("env AUTHENTIK_HOST not set!")
fmt.Println(helpMessage)
os.Exit(1)
2020-09-02 22:04:12 +00:00
}
2020-12-05 21:08:42 +00:00
pbToken, found := os.LookupEnv("AUTHENTIK_TOKEN")
2020-09-02 22:04:12 +00:00
if !found {
2020-12-05 21:08:42 +00:00
fmt.Println("env AUTHENTIK_TOKEN not set!")
fmt.Println(helpMessage)
os.Exit(1)
2020-09-02 22:04:12 +00:00
}
pbURLActual, err := url.Parse(pbURL)
if err != nil {
fmt.Println(err)
fmt.Println(helpMessage)
os.Exit(1)
2020-09-02 22:04:12 +00:00
}
rand.Seed(time.Now().UnixNano())
ac := ak.NewAPIController(*pbURLActual, pbToken)
2020-09-02 22:04:12 +00:00
interrupt := make(chan os.Signal, 1)
signal.Notify(interrupt, os.Interrupt)
ac.Server = proxy.NewServer(ac)
err = ac.Start()
if err != nil {
log.WithError(err).Panic("Failed to run server")
}
2020-09-02 22:04:12 +00:00
for {
<-interrupt
ac.Shutdown()
os.Exit(0)
2020-09-02 22:04:12 +00:00
}
}