summaryrefslogtreecommitdiff
path: root/recipe.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-09-17 11:07:08 +0200
committerxengineering <me@xengineering.eu>2023-09-17 11:07:08 +0200
commitea54de7d32e6b576ccfb430e7e57811b7c4587fe (patch)
tree4182e9c401e571adb53f1d6cbe2b072c171c87b2 /recipe.go
parentd0f58c4812c8b5821e9ed15806fae44f7b1fb095 (diff)
downloadceres-ea54de7d32e6b576ccfb430e7e57811b7c4587fe.tar
ceres-ea54de7d32e6b576ccfb430e7e57811b7c4587fe.tar.zst
ceres-ea54de7d32e6b576ccfb430e7e57811b7c4587fe.zip
Remove complete implementation
Restarting from scratch seems to be the fastest approach to switch to sqlite and get rid of some other structural mistakes from the past.
Diffstat (limited to 'recipe.go')
-rw-r--r--recipe.go109
1 files changed, 0 insertions, 109 deletions
diff --git a/recipe.go b/recipe.go
deleted file mode 100644
index b80286a..0000000
--- a/recipe.go
+++ /dev/null
@@ -1,109 +0,0 @@
-package main
-
-import (
- "encoding/json"
- "io/ioutil"
- "log"
- "os"
- "path/filepath"
- "strconv"
-)
-
-type recipe struct {
- Title string
- Portions int
- Url string
- Steps []struct {
- Text string
- Ingredients []ingredient
- }
-}
-
-type ingredient struct {
- Amount float32
- Unit string
- Type string
-}
-
-func getRecipeText(id string) ([]byte, error) {
- var b []byte
- textpath := filepath.Join(config.Data, "recipes", id, "text")
- b, err := ioutil.ReadFile(textpath)
- if err != nil {
- return b, err
- }
- return b, nil
-}
-
-func getRecipe(id string) (recipe, error) {
- r := recipe{}
-
- data, err := getRecipeText(id)
- if err != nil {
- return r, err
- }
-
- err = json.Unmarshal(data, &r)
- if err != nil {
- return r, err
- }
-
- if r.Title == "" {
- r.Title = "recipe without title"
- }
-
- return r, nil
-}
-
-type recipeList []struct {
- Id string
- Title string
-}
-
-func (a recipeList) Len() int { return len(a) }
-func (a recipeList) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
-func (a recipeList) Less(i, j int) bool { return a[i].Title < a[j].Title }
-
-func getRecipeList() recipeList {
- recipes := make(recipeList, 0)
-
- path := filepath.Join(config.Data, "recipes")
- entries, err := os.ReadDir(path)
- if err == nil {
- for _, v := range entries {
- if v.IsDir() == false {
- continue
- }
-
- _, err = strconv.Atoi(v.Name())
- if err != nil {
- continue
- }
-
- textpath := filepath.Join(config.Data, "recipes", v.Name(), "text")
- data, err := ioutil.ReadFile(textpath)
- if err != nil {
- continue
- }
-
- r := recipe{}
- err = json.Unmarshal(data, &r)
- if err != nil {
- continue
- }
-
- if r.Title == "" {
- r.Title = "recipe without title"
- }
-
- recipes = append(recipes, struct {
- Id string
- Title string
- }{v.Name(), r.Title})
- }
- } else {
- log.Printf("Could not read directory '%s'\n", path)
- }
-
- return recipes
-}