2021-01-16 20:41:39 +00:00
|
|
|
package main
|
2020-09-02 22:04:12 +00:00
|
|
|
|
|
|
|
import (
|
2020-09-18 23:29:49 +00:00
|
|
|
"fmt"
|
2020-09-02 22:04:12 +00:00
|
|
|
"net/url"
|
|
|
|
"os"
|
2021-09-09 08:23:46 +00:00
|
|
|
"strconv"
|
2020-09-02 22:04:12 +00:00
|
|
|
|
2021-01-16 20:41:39 +00:00
|
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
|
2021-06-16 15:29:01 +00:00
|
|
|
"goauthentik.io/internal/common"
|
2021-06-16 10:02:02 +00:00
|
|
|
"goauthentik.io/internal/outpost/ak"
|
2021-09-08 18:04:56 +00:00
|
|
|
"goauthentik.io/internal/outpost/proxyv2"
|
2020-09-02 22:04:12 +00:00
|
|
|
)
|
|
|
|
|
2020-12-05 21:08:42 +00:00
|
|
|
const helpMessage = `authentik proxy
|
2020-09-18 23:29:49 +00:00
|
|
|
|
|
|
|
Required environment variables:
|
2021-01-16 20:41:39 +00:00
|
|
|
- AUTHENTIK_HOST: URL to connect to (format "http://authentik.company")
|
|
|
|
- AUTHENTIK_TOKEN: Token to authenticate with
|
2021-09-08 18:04:56 +00:00
|
|
|
- AUTHENTIK_INSECURE: Skip SSL Certificate verification
|
|
|
|
|
|
|
|
Optionally, you can set these:
|
2021-09-09 08:23:46 +00:00
|
|
|
- AUTHENTIK_HOST_BROWSER: URL to use in the browser, when it differs from AUTHENTIK_HOST
|
|
|
|
- AUTHENTIK_PORT_OFFSET: Offset to add to the listening ports, i.e. value of 100 makes proxy listen on 9100`
|
2020-09-18 23:29:49 +00:00
|
|
|
|
2021-01-16 20:41:39 +00:00
|
|
|
func main() {
|
|
|
|
log.SetLevel(log.DebugLevel)
|
2021-06-16 15:29:01 +00:00
|
|
|
akURL, 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!")
|
2020-09-18 23:29:49 +00:00
|
|
|
fmt.Println(helpMessage)
|
|
|
|
os.Exit(1)
|
2020-09-02 22:04:12 +00:00
|
|
|
}
|
2021-06-16 15:29:01 +00:00
|
|
|
akToken, 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!")
|
2020-09-18 23:29:49 +00:00
|
|
|
fmt.Println(helpMessage)
|
|
|
|
os.Exit(1)
|
2020-09-02 22:04:12 +00:00
|
|
|
}
|
2021-09-09 08:23:46 +00:00
|
|
|
portOffset := 0
|
|
|
|
portOffsetS := os.Getenv("AUTHENTIK_PORT_OFFSET")
|
|
|
|
if portOffsetS != "" {
|
|
|
|
v, err := strconv.Atoi(portOffsetS)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err.Error())
|
|
|
|
}
|
|
|
|
portOffset = v
|
|
|
|
}
|
2020-09-02 22:04:12 +00:00
|
|
|
|
2021-06-16 15:29:01 +00:00
|
|
|
akURLActual, err := url.Parse(akURL)
|
2020-09-02 22:04:12 +00:00
|
|
|
if err != nil {
|
2020-09-18 23:29:49 +00:00
|
|
|
fmt.Println(err)
|
|
|
|
fmt.Println(helpMessage)
|
|
|
|
os.Exit(1)
|
2020-09-02 22:04:12 +00:00
|
|
|
}
|
|
|
|
|
2021-06-16 15:29:01 +00:00
|
|
|
ex := common.Init()
|
|
|
|
defer common.Defer()
|
2020-09-02 22:04:12 +00:00
|
|
|
|
2021-06-16 15:29:01 +00:00
|
|
|
ac := ak.NewAPIController(*akURLActual, akToken)
|
2020-09-02 22:04:12 +00:00
|
|
|
|
2021-09-09 08:23:46 +00:00
|
|
|
ac.Server = proxyv2.NewProxyServer(ac, portOffset)
|
2021-01-16 20:41:39 +00:00
|
|
|
|
2021-04-19 18:43:13 +00:00
|
|
|
err = ac.Start()
|
|
|
|
if err != nil {
|
|
|
|
log.WithError(err).Panic("Failed to run server")
|
|
|
|
}
|
2020-09-02 22:04:12 +00:00
|
|
|
|
|
|
|
for {
|
2021-06-16 15:29:01 +00:00
|
|
|
<-ex
|
2021-04-19 18:43:13 +00:00
|
|
|
ac.Shutdown()
|
|
|
|
os.Exit(0)
|
2020-09-02 22:04:12 +00:00
|
|
|
}
|
|
|
|
}
|