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 --- recipe.go | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 recipe.go (limited to 'recipe.go') diff --git a/recipe.go b/recipe.go new file mode 100644 index 0000000..167f690 --- /dev/null +++ b/recipe.go @@ -0,0 +1,37 @@ +package main + +import ( + "encoding/json" + "path/filepath" + "io/ioutil" +) + +type recipe struct { + Title string + Portions int + Url string + Steps []struct { + Text string + Ingredients []struct { + Type string + Amount any + } + } +} + +func getRecipe(id string) (recipe, error) { + r := recipe{} + + textpath := filepath.Join(config.Data, "recipes", id, "text") + data, err := ioutil.ReadFile(textpath) + if err != nil { + return r, err + } + + err = json.Unmarshal(data, &r) + if err != nil { + return r, err + } + + return r, nil +} -- cgit v1.2.3-70-g09d2