blob: 4d5de53dbf80e52b0fad8390513f2874414e4bf1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
package controller
import (
"encoding/json"
"io"
"net/http"
"xengineering.eu/ceres/model"
)
func Recipe(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{}
err = json.Unmarshal(buf, &recipe)
if err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
err = recipe.Update()
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
http.Redirect(w, r, "/recipe/" + recipe.Id, http.StatusSeeOther)
}
|