diff options
author | xengineering <me@xengineering.eu> | 2023-04-22 17:40:02 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-04-22 17:54:57 +0200 |
commit | 17f2abc3961fb854fb127f6b99c30ebb494b8e3d (patch) | |
tree | 5659716de60641fba08742e386e386e1a31a9a8f /handler.go | |
parent | cff4718b1acd5a34e8dceaf4d21d4bc11c0de8d6 (diff) | |
download | ceres-17f2abc3961fb854fb127f6b99c30ebb494b8e3d.tar ceres-17f2abc3961fb854fb127f6b99c30ebb494b8e3d.tar.zst ceres-17f2abc3961fb854fb127f6b99c30ebb494b8e3d.zip |
Implement basic recipe target with JSON
Diffstat (limited to 'handler.go')
-rw-r--r-- | handler.go | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -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) { |