summaryrefslogtreecommitdiff
path: root/view/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 /view/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 'view/recipe.go')
-rw-r--r--view/recipe.go102
1 files changed, 54 insertions, 48 deletions
diff --git a/view/recipe.go b/view/recipe.go
index c18c078..889f6ec 100644
--- a/view/recipe.go
+++ b/view/recipe.go
@@ -6,58 +6,64 @@ import (
"xengineering.eu/ceres/model"
)
-func RecipeRead(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.Read)
- if err != nil {
- http.Error(w, err.Error(), http.StatusInternalServerError)
- return
- }
-
- template := "recipe"
- view, ok := r.URL.Query()["view"]
- if ok {
- if len(view) > 1 {
- http.Error(w, "More than one 'view' parameter given in URL", http.StatusBadRequest)
+func RecipeRead(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.Read)
+ if err != nil {
+ http.Error(w, err.Error(), http.StatusInternalServerError)
+ return
+ }
+
+ template := "recipe"
+ view, ok := r.URL.Query()["view"]
+ if ok {
+ if len(view) > 1 {
+ http.Error(w, "More than one 'view' parameter given in URL", http.StatusBadRequest)
+ return
+ }
+ template = view[0]
+ }
+
+ is_valid := false
+ valid_templates := []string{
+ "recipe",
+ "recipe-edit",
+ "recipe-confirm-deletion",
+ }
+ for _, v := range valid_templates {
+ if template == v {
+ is_valid = true
+ }
+ }
+ if !is_valid {
+ http.Error(w, "Unsupported view: "+template, http.StatusBadRequest)
return
}
- template = view[0]
- }
-
- is_valid := false
- valid_templates := []string{
- "recipe",
- "recipe-edit",
- "recipe-confirm-deletion",
- }
- for _, v := range valid_templates {
- if template == v {
- is_valid = true
+
+ err = html.ExecuteTemplate(w, template, recipe)
+ if err != nil {
+ http.Error(w, err.Error(), http.StatusInternalServerError)
+ return
}
- }
- if !is_valid {
- http.Error(w, "Unsupported view: "+template, http.StatusBadRequest)
- return
- }
-
- err = html.ExecuteTemplate(w, template, recipe)
- if err != nil {
- http.Error(w, err.Error(), http.StatusInternalServerError)
- return
- }
- }
+ },
+ )
}
-func RecipeCreate(w http.ResponseWriter, r *http.Request) {
- recipe := model.Recipe{}
+func RecipeCreate() http.Handler {
+ return http.HandlerFunc(
+ func(w http.ResponseWriter, r *http.Request) {
+ recipe := model.Recipe{}
- err := html.ExecuteTemplate(w, "recipe-edit", recipe)
- if err != nil {
- http.Error(w, err.Error(), http.StatusInternalServerError)
- return
- }
+ err := html.ExecuteTemplate(w, "recipe-edit", recipe)
+ if err != nil {
+ http.Error(w, err.Error(), http.StatusInternalServerError)
+ return
+ }
+ },
+ )
}