summaryrefslogtreecommitdiff
path: root/recipe.go
blob: 76c5204fe370e623351c2606706da751009b1f3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
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 []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
}

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
			}

			recipes = append(recipes, struct {
				Id    string
				Title string
			}{v.Name(), r.Title})
		}
	} else {
		log.Printf("Could not read directory '%s'\n", path)
	}

	return recipes
}