From 439f49d4afb1f2bfc9a7aaf63bac7c560486c93c Mon Sep 17 00:00:00 2001 From: xengineering Date: Sun, 3 Mar 2024 17:01:30 +0100 Subject: controller: Provide recipe create via HTTP --- controller/recipe.go | 12 ++++++++++++ main.go | 1 + 2 files changed, 13 insertions(+) diff --git a/controller/recipe.go b/controller/recipe.go index e58092a..a2e5ab6 100644 --- a/controller/recipe.go +++ b/controller/recipe.go @@ -10,6 +10,18 @@ import ( "github.com/gorilla/mux" ) +func RecipeCreate(w http.ResponseWriter, r *http.Request) { + recipe := model.Recipe{} + + err := recipe.Create() + if err != nil { + http.Error(w, err.Error(), http.StatusInternalServerError) + return + } + + http.Redirect(w, r, "/recipe/" + recipe.Id, http.StatusSeeOther) +} + func RecipeUpdate(w http.ResponseWriter, r *http.Request) { buf, err := io.ReadAll(r.Body) if err != nil { diff --git a/main.go b/main.go index 1660088..1130ddb 100644 --- a/main.go +++ b/main.go @@ -47,6 +47,7 @@ func startServer(addr string) *http.Server { r.HandleFunc("/recipes", view.RecipesRead).Methods(`GET`) + r.HandleFunc("/recipe", controller.RecipeCreate).Methods(`POST`) r.HandleFunc("/recipe/{id:[0-9]+}", view.RecipeRead).Methods(`GET`) r.HandleFunc("/recipe/{id:[0-9]+}", controller.RecipeUpdate).Methods(`POST`) r.HandleFunc("/recipe/{id:[0-9]+}", controller.RecipeDelete).Methods(`DELETE`) -- cgit v1.2.3-70-g09d2