summaryrefslogtreecommitdiff
path: root/controller
diff options
context:
space:
mode:
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) {