summaryrefslogtreecommitdiff
path: root/view
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-10-13 19:52:28 +0200
committerxengineering <me@xengineering.eu>2024-10-13 19:55:38 +0200
commit473052ed8f2c83052ed5b47a7f4cec68ac2621a6 (patch)
tree2d5da088c6879317734277350c873a258b4d1dac /view
parented19b82335345833c5b8f5446237d559a3657a35 (diff)
downloadceres-473052ed8f2c83052ed5b47a7f4cec68ac2621a6.tar
ceres-473052ed8f2c83052ed5b47a7f4cec68ac2621a6.tar.zst
ceres-473052ed8f2c83052ed5b47a7f4cec68ac2621a6.zip
model: Replace global db variable by custom type
Reducing global variables makes it easier to understand functions independently of the rest of the code. Adding the new model.DB type as a custom variant of the sql.DB type makes it possible to write methods for the database which makes the code way more readable.
Diffstat (limited to 'view')
-rw-r--r--view/recipe.go72
-rw-r--r--view/recipes.go26
2 files changed, 51 insertions, 47 deletions
diff --git a/view/recipe.go b/view/recipe.go
index d77d771..0578107 100644
--- a/view/recipe.go
+++ b/view/recipe.go
@@ -8,47 +8,49 @@ import (
"github.com/gorilla/mux"
)
-func RecipeRead(w http.ResponseWriter, r *http.Request) {
- recipe := model.Recipe{}
- recipe.Id = mux.Vars(r)[`id`]
-
- var obj model.Object = &recipe
- err := model.Transaction(obj.Read)
- if err != nil {
- http.Error(w, err.Error(), http.StatusInternalServerError)
- return
- }
+func RecipeRead(db *model.DB) func(http.ResponseWriter, *http.Request) {
+ return func(w http.ResponseWriter, r *http.Request) {
+ recipe := model.Recipe{}
+ recipe.Id = mux.Vars(r)[`id`]
- 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)
+ var obj model.Object = &recipe
+ err := db.Transaction(obj.Read)
+ if err != nil {
+ http.Error(w, err.Error(), http.StatusInternalServerError)
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
+ 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]
}
- }
- 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
+ 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
+ }
+
+ err = html.ExecuteTemplate(w, template, recipe)
+ if err != nil {
+ http.Error(w, err.Error(), http.StatusInternalServerError)
+ return
+ }
}
}
diff --git a/view/recipes.go b/view/recipes.go
index fe995b2..e7153cd 100644
--- a/view/recipes.go
+++ b/view/recipes.go
@@ -6,19 +6,21 @@ import (
"xengineering.eu/ceres/model"
)
-func RecipesRead(w http.ResponseWriter, r *http.Request) {
- recipes := make(model.Recipes, 0)
+func RecipesRead(db *model.DB) func(http.ResponseWriter, *http.Request) {
+ return func(w http.ResponseWriter, r *http.Request) {
+ recipes := make(model.Recipes, 0)
- var obj model.Object = &recipes
- err := model.Transaction(obj.Read)
- if err != nil {
- http.Error(w, err.Error(), http.StatusInternalServerError)
- return
- }
+ var obj model.Object = &recipes
+ err := db.Transaction(obj.Read)
+ if err != nil {
+ http.Error(w, err.Error(), http.StatusInternalServerError)
+ return
+ }
- err = html.ExecuteTemplate(w, "recipes", recipes)
- if err != nil {
- http.Error(w, err.Error(), http.StatusInternalServerError)
- return
+ err = html.ExecuteTemplate(w, "recipes", recipes)
+ if err != nil {
+ http.Error(w, err.Error(), http.StatusInternalServerError)
+ return
+ }
}
}