From 36e3d473f2126e920061218996cfa5cfecade7d6 Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Mon, 30 Dec 2024 23:07:00 +0100 Subject: chore(tfstated): refactor backend code to a dedicated package --- pkg/backend/get.go | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pkg/backend/get.go (limited to 'pkg/backend/get.go') diff --git a/pkg/backend/get.go b/pkg/backend/get.go new file mode 100644 index 0000000..ca9b2c0 --- /dev/null +++ b/pkg/backend/get.go @@ -0,0 +1,28 @@ +package backend + +import ( + "fmt" + "net/http" + + "git.adyxax.org/adyxax/tfstated/pkg/database" + "git.adyxax.org/adyxax/tfstated/pkg/helpers" +) + +func handleGet(db *database.DB) http.Handler { + return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { + w.Header().Set("Cache-Control", "no-store, no-cache") + + if r.URL.Path == "/" { + helpers.ErrorResponse(w, http.StatusBadRequest, + fmt.Errorf("no state path provided, cannot GET /")) + return + } + + if data, err := db.GetState(r.URL.Path); err != nil { + helpers.ErrorResponse(w, http.StatusInternalServerError, err) + } else { + w.WriteHeader(http.StatusOK) + _, _ = w.Write(data) + } + }) +} -- cgit v1.2.3