diff options
author | xengineering <me@xengineering.eu> | 2024-03-12 21:25:19 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-03-12 21:25:19 +0100 |
commit | 49ffaf0aac14272c2f64a3005ad651b78eb51ad1 (patch) | |
tree | bda93e20e99f91cd2f8c2b462d6cb3d2602853ee /controller | |
parent | be01755f44442c0fa174a2c7fe3dfd39f185920f (diff) | |
download | ceres-49ffaf0aac14272c2f64a3005ad651b78eb51ad1.tar ceres-49ffaf0aac14272c2f64a3005ad651b78eb51ad1.tar.zst ceres-49ffaf0aac14272c2f64a3005ad651b78eb51ad1.zip |
model: Remove .Touch() method
The model package should never modify the data. Thus the functionality
to update timestamps is moved to the controller package which is
intended to modify data.
Diffstat (limited to 'controller')
-rw-r--r-- | controller/recipe.go | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/controller/recipe.go b/controller/recipe.go index 6acb062..09f65a7 100644 --- a/controller/recipe.go +++ b/controller/recipe.go @@ -2,8 +2,10 @@ package controller import ( "encoding/json" + "fmt" "io" "net/http" + "time" "xengineering.eu/ceres/model" @@ -13,7 +15,7 @@ import ( func RecipeCreate(w http.ResponseWriter, r *http.Request) { recipe := model.Recipe{} recipe.Title = "recipe without title" - recipe.Touch() + recipe.LastChanged = fmt.Sprint(time.Now().Unix()) recipe.Created = recipe.LastChanged err := recipe.Create() @@ -22,7 +24,7 @@ func RecipeCreate(w http.ResponseWriter, r *http.Request) { return } - http.Redirect(w, r, "/recipe/" + recipe.Id + "?view=recipe-edit", http.StatusSeeOther) + http.Redirect(w, r, "/recipe/"+recipe.Id+"?view=recipe-edit", http.StatusSeeOther) } func RecipeUpdate(w http.ResponseWriter, r *http.Request) { @@ -44,7 +46,7 @@ func RecipeUpdate(w http.ResponseWriter, r *http.Request) { return } - recipe.Touch() + recipe.LastChanged = fmt.Sprint(time.Now().Unix()) err = recipe.Update() if err != nil { @@ -52,7 +54,7 @@ func RecipeUpdate(w http.ResponseWriter, r *http.Request) { return } - http.Redirect(w, r, "/recipe/" + recipe.Id, http.StatusSeeOther) + http.Redirect(w, r, "/recipe/"+recipe.Id, http.StatusSeeOther) } func RecipeDelete(w http.ResponseWriter, r *http.Request) { |