From bf0ad86df2e64191f6c430c328fee211ac3affa7 Mon Sep 17 00:00:00 2001 From: xengineering Date: Mon, 12 Feb 2024 20:33:24 +0100 Subject: view: Implement GET handler for model.Recipe --- view/html/recipe.html | 19 +++++++++++++++++++ view/recipe.go | 30 ++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+) create mode 100644 view/html/recipe.html create mode 100644 view/recipe.go (limited to 'view') diff --git a/view/html/recipe.html b/view/html/recipe.html new file mode 100644 index 0000000..30aecb5 --- /dev/null +++ b/view/html/recipe.html @@ -0,0 +1,19 @@ +{{define "recipe"}} + + {{ template "head" }} +
+ +

{{.Title}}

+
+ +
+

Portions: {{.Portions}}

+

original recipe

+

{{.Notes}}

+
+ {{ template "footer" }} + + +{{end}} diff --git a/view/recipe.go b/view/recipe.go new file mode 100644 index 0000000..3739143 --- /dev/null +++ b/view/recipe.go @@ -0,0 +1,30 @@ +package view + +import ( + "net/http" + "strconv" + + "xengineering.eu/ceres/model" + + "github.com/gorilla/mux" +) + +func Recipe(w http.ResponseWriter, r *http.Request) { + id_str := mux.Vars(r)[`id`] + id, _ := strconv.Atoi(id_str) + + recipe := model.Recipe{} + recipe.Id = int64(id) + + err := recipe.Read() + if err != nil { + http.Error(w, err.Error(), http.StatusInternalServerError) + return + } + + err = html.ExecuteTemplate(w, "recipe", recipe) + if err != nil { + http.Error(w, err.Error(), http.StatusInternalServerError) + return + } +} -- cgit v1.2.3-70-g09d2