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.
2021-05-04 12:28:48 +00:00
|
|
|
package constants
|
|
|
|
|
2021-06-16 10:35:17 +00:00
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
)
|
|
|
|
|
2022-01-14 09:45:37 +00:00
|
|
|
func BUILD(def string) string {
|
2021-06-16 10:35:17 +00:00
|
|
|
build := os.Getenv("GIT_BUILD_HASH")
|
|
|
|
if build == "" {
|
2022-01-14 09:45:37 +00:00
|
|
|
return def
|
2021-06-16 10:35:17 +00:00
|
|
|
}
|
|
|
|
return build
|
|
|
|
}
|
|
|
|
|
2022-01-14 09:45:37 +00:00
|
|
|
func FullVersion() string {
|
|
|
|
ver := VERSION
|
|
|
|
if b := BUILD(""); b != "" {
|
|
|
|
ver = fmt.Sprintf("%s.%s", ver, b)
|
|
|
|
}
|
|
|
|
return ver
|
|
|
|
}
|
|
|
|
|
2021-06-16 10:35:17 +00:00
|
|
|
func OutpostUserAgent() string {
|
2022-04-02 17:48:17 +00:00
|
|
|
return fmt.Sprintf("goauthentik.io/outpost/%s", FullVersion())
|
2021-06-16 10:35:17 +00:00
|
|
|
}
|
2021-07-02 14:23:30 +00:00
|
|
|
|
2022-06-20 09:54:10 +00:00
|
|
|
func UserAgent() string {
|
|
|
|
return fmt.Sprintf("authentik@%s", FullVersion())
|
|
|
|
}
|
|
|
|
|
2023-09-11 16:55:08 +00:00
|
|
|
const VERSION = "2023.8.3"
|