summaryrefslogtreecommitdiff
path: root/controller/recipe.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-10-23 20:34:57 +0200
committerxengineering <me@xengineering.eu>2024-10-23 20:34:57 +0200
commite66691083a2455c29b50a2970c0aba1d6afca753 (patch)
tree1f3192351038693b5fc219148fbc39cf2e869a87 /controller/recipe.go
parent9d14fee31507551149dcdf31c59798624330f3f3 (diff)
downloadceres-e66691083a2455c29b50a2970c0aba1d6afca753.tar
ceres-e66691083a2455c29b50a2970c0aba1d6afca753.tar.zst
ceres-e66691083a2455c29b50a2970c0aba1d6afca753.zip
Switch to http.Handler
The used `func(http.ResponseWriter, *http.Request)` return values made the HTTP handler factory functions quite unreadable. Thus it is switched to the http.Handler type.
Diffstat (limited to 'controller/recipe.go')
-rw-r--r--controller/recipe.go150
1 files changed, 78 insertions, 72 deletions
diff --git a/controller/recipe.go b/controller/recipe.go
index 33d4063..5e5fc3d 100644
--- a/controller/recipe.go
+++ b/controller/recipe.go
@@ -10,80 +10,86 @@ import (
"xengineering.eu/ceres/model"
)
-func RecipeCreate(db *model.DB) func(http.ResponseWriter, *http.Request) {
- return func(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
- }
-
- recipe.LastChanged = fmt.Sprint(time.Now().Unix())
- recipe.Created = recipe.LastChanged
-
- var obj model.Object = &recipe
- err = db.Transaction(obj.Create)
- if err != nil {
- http.Error(w, err.Error(), http.StatusInternalServerError)
- return
- }
-
- http.Redirect(w, r, "/recipe/"+recipe.Id, http.StatusSeeOther)
- }
+func RecipeCreate(db *model.DB) http.Handler {
+ return http.HandlerFunc(
+ func(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
+ }
+
+ recipe.LastChanged = fmt.Sprint(time.Now().Unix())
+ recipe.Created = recipe.LastChanged
+
+ var obj model.Object = &recipe
+ err = db.Transaction(obj.Create)
+ if err != nil {
+ http.Error(w, err.Error(), http.StatusInternalServerError)
+ return
+ }
+
+ http.Redirect(w, r, "/recipe/"+recipe.Id, http.StatusSeeOther)
+ },
+ )
}
-func RecipeUpdate(db *model.DB) func(http.ResponseWriter, *http.Request) {
- return func(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
- }
-
- if recipe.Id != r.PathValue("id") {
- http.Error(w, "IDs in URL and JSON do not match", http.StatusBadRequest)
- return
- }
-
- recipe.LastChanged = fmt.Sprint(time.Now().Unix())
-
- var obj model.Object = &recipe
- err = db.Transaction(obj.Update)
- if err != nil {
- http.Error(w, err.Error(), http.StatusInternalServerError)
- return
- }
-
- http.Redirect(w, r, "/recipe/"+recipe.Id, http.StatusSeeOther)
- }
+func RecipeUpdate(db *model.DB) http.Handler {
+ return http.HandlerFunc(
+ func(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
+ }
+
+ if recipe.Id != r.PathValue("id") {
+ http.Error(w, "IDs in URL and JSON do not match", http.StatusBadRequest)
+ return
+ }
+
+ recipe.LastChanged = fmt.Sprint(time.Now().Unix())
+
+ var obj model.Object = &recipe
+ err = db.Transaction(obj.Update)
+ if err != nil {
+ http.Error(w, err.Error(), http.StatusInternalServerError)
+ return
+ }
+
+ http.Redirect(w, r, "/recipe/"+recipe.Id, http.StatusSeeOther)
+ },
+ )
}
-func RecipeDelete(db *model.DB) func(http.ResponseWriter, *http.Request) {
- return func(w http.ResponseWriter, r *http.Request) {
- recipe := model.Recipe{}
- recipe.Id = r.PathValue("id")
-
- var obj model.Object = &recipe
- err := db.Transaction(obj.Delete)
- if err != nil {
- http.Error(w, err.Error(), http.StatusInternalServerError)
- return
- }
-
- http.Redirect(w, r, "/recipes", http.StatusSeeOther)
- }
+func RecipeDelete(db *model.DB) http.Handler {
+ return http.HandlerFunc(
+ func(w http.ResponseWriter, r *http.Request) {
+ recipe := model.Recipe{}
+ recipe.Id = r.PathValue("id")
+
+ var obj model.Object = &recipe
+ err := db.Transaction(obj.Delete)
+ if err != nil {
+ http.Error(w, err.Error(), http.StatusInternalServerError)
+ return
+ }
+
+ http.Redirect(w, r, "/recipes", http.StatusSeeOther)
+ },
+ )
}