From d982951ec15326487eefa80261a0f466d64e2ba0 Mon Sep 17 00:00:00 2001 From: xengineering Date: Wed, 1 May 2024 10:56:26 +0200 Subject: view: Add /version endpoint This allows to get the server version via HTTP. The output of `git describe --dirty --always` and a line break is returned together with HTTP 200. If the server build contains no version information an error message and HTTP 404 is returned. --- main.go | 2 ++ view/version.go | 17 +++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 view/version.go diff --git a/main.go b/main.go index 2c39239..50cfce5 100644 --- a/main.go +++ b/main.go @@ -59,6 +59,8 @@ func startServer(addr string) *http.Server { r.PathPrefix("/static/"). Handler(http.StripPrefix("/static/", http.FileServer(http.FS(static)))) + r.HandleFunc("/version", view.VersionRead(gitDescribe)).Methods(`GET`) + r.HandleFunc("/recipes", view.RecipesRead).Methods(`GET`) r.HandleFunc("/recipe", controller.RecipeCreate).Methods(`POST`) diff --git a/view/version.go b/view/version.go new file mode 100644 index 0000000..faf91b1 --- /dev/null +++ b/view/version.go @@ -0,0 +1,17 @@ +package view + +import ( + "fmt" + "net/http" +) + +func VersionRead(version string) func(http.ResponseWriter, *http.Request) { + return func(w http.ResponseWriter, r *http.Request) { + if version == "" { + http.Error(w, "This build has no version information", http.StatusNotFound) + return + } + + fmt.Fprintln(w, version) + } +} -- cgit v1.2.3-70-g09d2