mirror of
https://github.com/fleetdm/fleet
synced 2026-05-18 22:49:19 +00:00
72 lines
1.8 KiB
Go
72 lines
1.8 KiB
Go
// Package version provides utilities for displaying version information
|
|
package version
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"net/http"
|
|
)
|
|
|
|
// info vars
|
|
// set at build time with ldflags
|
|
// example:
|
|
// go build -ldflags "-X github.com/kolide/kolide-ose/version.version=1.0.0-development"
|
|
var (
|
|
version = "unknown"
|
|
branch = "unknown"
|
|
revision = "unknown"
|
|
goVersion = "unknown"
|
|
buildDate = "unknown"
|
|
buildUser = "unknown"
|
|
)
|
|
|
|
// Info holds version and build info about Kolide
|
|
type Info struct {
|
|
Version string `json:"version"`
|
|
Branch string `json:"branch"`
|
|
Revision string `json:"revision"`
|
|
GoVersion string `json:"go_version"`
|
|
BuildDate string `json:"build_date"`
|
|
BuildUser string `json:"build_user"`
|
|
}
|
|
|
|
// Version returns a struct with the current version information
|
|
func Version() Info {
|
|
return Info{
|
|
Version: version,
|
|
Branch: branch,
|
|
Revision: revision,
|
|
GoVersion: goVersion,
|
|
BuildDate: buildDate,
|
|
BuildUser: buildUser,
|
|
}
|
|
}
|
|
|
|
// Print outputs the app name and version string
|
|
func Print() {
|
|
v := Version()
|
|
fmt.Printf("kolide version %s\n", v.Version)
|
|
}
|
|
|
|
// PrintFull outputs the app name and detailed version information
|
|
func PrintFull() {
|
|
v := Version()
|
|
fmt.Printf("kolide - version %s\n", v.Version)
|
|
fmt.Printf(" branch: \t%s\n", v.Branch)
|
|
fmt.Printf(" revision: \t%s\n", v.Revision)
|
|
fmt.Printf(" build date: \t%s\n", v.BuildDate)
|
|
fmt.Printf(" build user: \t%s\n", v.BuildUser)
|
|
fmt.Printf(" go version: \t%s\n", v.GoVersion)
|
|
}
|
|
|
|
// Handler provides an HTTP Handler which returns JSON formatted version info
|
|
func Handler() http.Handler {
|
|
v := Version()
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
w.Header().Set("Content-Type", "application/json; charset=utf-8")
|
|
enc := json.NewEncoder(w)
|
|
enc.SetIndent("", " ")
|
|
enc.Encode(v)
|
|
|
|
})
|
|
}
|