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/proxy/cmd/server.go

60 lines
1.1 KiB
Go
Raw Normal View History

2020-09-02 22:04:12 +00:00
package cmd
import (
"fmt"
2020-09-02 22:04:12 +00:00
"math/rand"
"net/url"
"os"
"os/signal"
"time"
2020-12-05 21:08:42 +00:00
"github.com/BeryJu/authentik/proxy/pkg/server"
2020-09-02 22:04:12 +00:00
)
2020-12-05 21:08:42 +00:00
const helpMessage = `authentik proxy
Required environment variables:
2020-12-05 21:08:42 +00:00
- AUTHENTIK_HOST: URL to connect to (format "http://authentik.company")
- AUTHENTIK_TOKEN: Token to authenticate with
- AUTHENTIK_INSECURE: Skip SSL Certificate verification`
2020-09-02 22:04:12 +00:00
// RunServer main entrypoint, runs the full server
func RunServer() {
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 := server.NewAPIController(*pbURLActual, pbToken)
interrupt := make(chan os.Signal, 1)
signal.Notify(interrupt, os.Interrupt)
ac.Start()
for {
select {
case <-interrupt:
ac.Shutdown()
os.Exit(0)
}
}
}