blob: 014c00135126acc8a12c9613025923226418305b (
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
33
34
35
36
37
|
package controller
import (
"net/http"
"xengineering.eu/ceres/model"
"github.com/gorilla/mux"
)
func RecipePost(w http.ResponseWriter, r *http.Request) {
var data model.Recipe
var err error
vars := mux.Vars(r)
data.Id = vars[`id`]
err = r.ParseForm()
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
// TODO error handling and generic implementation
data.Title = r.PostForm[`title`][0]
data.Portions = r.PostForm[`portions`][0]
data.URL = r.PostForm[`url`][0]
data.Notes = r.PostForm[`notes`][0]
err = data.ToDB()
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
http.Redirect(w, r, r.URL.Path, http.StatusSeeOther)
}
|