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) }