summaryrefslogtreecommitdiff
path: root/recipe.go
blob: b28aebb54672c83a8094debcf17a77e7cdeb38b7 (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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
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 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
}