summaryrefslogtreecommitdiff
path: root/controller
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-02-17 17:51:00 +0100
committerxengineering <me@xengineering.eu>2024-03-03 14:00:10 +0100
commite105822a4f2227ca97853ac1bf106f8d204d6837 (patch)
treec41dad467fe04b645543644a4bd6f5c86b77f232 /controller
parent55b69380ebd704477c4a37ff9b70fcb3cbdc63e5 (diff)
downloadceres-e105822a4f2227ca97853ac1bf106f8d204d6837.tar
ceres-e105822a4f2227ca97853ac1bf106f8d204d6837.tar.zst
ceres-e105822a4f2227ca97853ac1bf106f8d204d6837.zip
controller: Update recipe based on JSON
Diffstat (limited to 'controller')
-rw-r--r--controller/recipe.go32
1 files changed, 32 insertions, 0 deletions
diff --git a/controller/recipe.go b/controller/recipe.go
new file mode 100644
index 0000000..4d5de53
--- /dev/null
+++ b/controller/recipe.go
@@ -0,0 +1,32 @@
+package controller
+
+import (
+ "encoding/json"
+ "io"
+ "net/http"
+
+ "xengineering.eu/ceres/model"
+)
+
+func Recipe(w http.ResponseWriter, r *http.Request) {
+ buf, err := io.ReadAll(r.Body)
+ if err != nil {
+ http.Error(w, err.Error(), http.StatusInternalServerError)
+ return
+ }
+
+ recipe := model.Recipe{}
+ err = json.Unmarshal(buf, &recipe)
+ if err != nil {
+ http.Error(w, err.Error(), http.StatusBadRequest)
+ return
+ }
+
+ err = recipe.Update()
+ if err != nil {
+ http.Error(w, err.Error(), http.StatusInternalServerError)
+ return
+ }
+
+ http.Redirect(w, r, "/recipe/" + recipe.Id, http.StatusSeeOther)
+}