summaryrefslogtreecommitdiff
path: root/controller
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-04-23 17:42:57 +0200
committerxengineering <me@xengineering.eu>2024-05-09 12:19:30 +0200
commit2704cb76554b02f546bf3f9d2d11be98f2854b7b (patch)
treecd167fcc3a0c27ee2943c2d7abd3acc8741406f6 /controller
parentc5e7551dc2da9798ff51d91aa238098f5ac4605f (diff)
downloadceres-2704cb76554b02f546bf3f9d2d11be98f2854b7b.tar
ceres-2704cb76554b02f546bf3f9d2d11be98f2854b7b.tar.zst
ceres-2704cb76554b02f546bf3f9d2d11be98f2854b7b.zip
Remove default recipe name
To avoid not clickable recipes on the /recipes page a default name used to be inserted on recipe creation. This was not a proper fix for the problem and also was annoying that the user first had to remove the default recipe name. This commit removes this default name.
Diffstat (limited to 'controller')
-rw-r--r--controller/recipe.go17
1 files changed, 14 insertions, 3 deletions
diff --git a/controller/recipe.go b/controller/recipe.go
index 9529b2a..b0a81d9 100644
--- a/controller/recipe.go
+++ b/controller/recipe.go
@@ -13,19 +13,30 @@ import (
)
func RecipeCreate(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{}
- recipe.Title = "recipe without title"
+ 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 := model.Transaction(obj.Create)
+ err = model.Transaction(obj.Create)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
- http.Redirect(w, r, "/recipe/"+recipe.Id+"?view=recipe-edit", http.StatusSeeOther)
+ http.Redirect(w, r, "/recipe/"+recipe.Id, http.StatusSeeOther)
}
func RecipeUpdate(w http.ResponseWriter, r *http.Request) {