From 17f2abc3961fb854fb127f6b99c30ebb494b8e3d Mon Sep 17 00:00:00 2001 From: xengineering Date: Sat, 22 Apr 2023 17:40:02 +0200 Subject: Implement basic recipe target with JSON --- handler.go | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'handler.go') diff --git a/handler.go b/handler.go index de055d3..04c4581 100644 --- a/handler.go +++ b/handler.go @@ -63,18 +63,18 @@ func recipeGet(w http.ResponseWriter, r *http.Request) { } idStr := ids[0] - textpath := filepath.Join(config.Data, "recipes", idStr, "text") - data, _ := ioutil.ReadFile(textpath) - markup := Markup(data) - - recipe := Recipe{ - idStr, - markup.title(), - string(data), - markup.html(), + rec, err := getRecipe(idStr) + if err != nil { + http.Error(w, "Could not get recipe.", 400) + return } - ServeTemplate(w, "recipe.html", recipe) + data := struct{ + Id string + Recipe recipe + }{idStr, rec} + + ServeTemplate(w, "recipe.html", data) } func recipeEditGet(w http.ResponseWriter, r *http.Request) { -- cgit v1.2.3-70-g09d2