summaryrefslogtreecommitdiff
path: root/backend/recipe.go
blob: a3191c35a3cfe3a6cc08da89041f0b07af558081 (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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
package main

import "database/sql"
import "strings"

type Ingredient struct {
	Name   string  `json:"name"`
	Amount float64 `json:"amount"`
	Unit   string  `json:"units"`
	Type   string  `json:"type"`
}

type Step struct {
	Desc string `json:"instructions"`
	Time int    `json:"timer"`
}

type Recipe struct {
	Id           int          `json:"id"`
	Title        string       `json:"name"`
	Desc         string       `json:"description"`
	Photos       []string     `json:"photos"`
	Serving_size int          `json:"servingSize"`
	Cook_time    int          `json:"cookTime"`
	Rating       int          `json:"rating"`
	Num_cooked   int          `json:"timesCooked"`
	Keywords     []string     `json:"tags"`
	Ingredients  []Ingredient `json:"ingredients"`
	Steps        []Step       `json:"steps"`
}

func MakeRecipe() *Recipe {
	var r Recipe

	r = Recipe{
		Id:           0,
		Title:        "",
		Desc:         "",
		Serving_size: 0,
		Cook_time:    0,
		Rating:       5,
		Num_cooked:   0,
		Keywords:     make([]string, 0),
		Ingredients:  make([]Ingredient, 0),
		Steps:        make([]Step, 0)}

	return &r

}

func RecipeFromId(id int, db *sql.DB) *Recipe {
	var rec Recipe
	var ingr Ingredient
	var step Step

	rows := db.QueryRow(`SELECT title, photo_urls, keywords,
			description, serving_size, cook_time, rating,
			num_cooked FROM recipes WHERE id = $1`, id)

	var rating, num_cooked, servings, cook_time int
	var title, photo_urls, keywords, desc string

	err := rows.Scan(&title, &photo_urls, &keywords, &desc,
		&servings, &cook_time, &rating, &num_cooked)

	if err == sql.ErrNoRows {
		return nil
	}

	rec = Recipe{
		Id:           id,
		Title:        title,
		Desc:         desc,
		Photos:       make([]string, 0),
		Serving_size: servings,
		Cook_time:    cook_time,
		Rating:       rating,
		Num_cooked:   num_cooked,
		Keywords:     make([]string, 0),
		Ingredients:  make([]Ingredient, 0),
		Steps:        make([]Step, 0)}

	if len(photo_urls) > 0 {
		photos := strings.Split(photo_urls, "|")
		for _, p := range photos {
			rec.Photos = append(rec.Photos, p)
		}
	}
	if len(keywords) > 0 {
		keyword_split := strings.Split(keywords, "|")
		for _, k := range keyword_split {
			rec.Keywords = append(rec.Keywords, k)
		}
	}

	var name, unit string
	var amount float64
	rows_ingr, err := db.Query(`SELECT name, amount, unit
			FROM ingredients WHERE recipe_id = $1`,
		id)
	defer rows_ingr.Close()
	if err == nil {
		for rows_ingr.Next() {
			rows_ingr.Scan(&name, &amount, &unit)
			ingr = Ingredient{
				Name:   name,
				Amount: amount,
				Unit:   unit,
			}
			rec.Ingredients = append(rec.Ingredients, ingr)
		}
	}

	var num, timer int
	rows_steps, err := db.Query(`SELECT step, description, timer
			FROM steps WHERE recipe_id = $1 ORDER BY step`, id)
	defer rows_steps.Close()
	if err == nil {
		for rows_steps.Next() {
			rows_steps.Scan(&num, &desc, &timer)
			step = Step{
				Desc: desc,
				Time: timer,
			}
			rec.Steps = append(rec.Steps, step)
		}
	}

	return &rec
}

func AddRecipeDB(r *Recipe, db *sql.DB) error {
	var photo_urls, keywords strings.Builder
	var id int

	for _, u := range r.Photos {
		photo_urls.WriteString(u)
		photo_urls.WriteRune('|')
	}

	for _, k := range r.Keywords {
		keywords.WriteString(k)
		keywords.WriteRune('|')
	}

	tx, err := db.Begin()
	if err != nil {
		return err
	}
	err = tx.QueryRow(`INSERT INTO recipes (title, photo_urls,
			keywords, description, serving_size, cook_time,
			rating, num_cooked)
			VALUES ($1, $2, $3, $4, $5, $6, $7, $8)
			RETURNING id`,
		r.Title,             //1
		photo_urls.String(), //2
		keywords.String(),   //3
		r.Desc,              //4
		r.Serving_size,      //5
		r.Cook_time,         //6
		r.Rating,            //7
		r.Num_cooked,        //8
	).Scan(&id)
	if err != nil {
		tx.Rollback()
		return err
	}

	for i, ingr := range r.Ingredients {
		res, err := tx.Exec(`INSERT INTO ingredients
				(id, name, amount, unit, recipe_id)
				VALUES ($1, $2, $3, $4, $5)`,
			i,
			ingr.Name,
			ingr.Amount,
			ingr.Unit,
			id,
		)

		if ra, _ := res.RowsAffected(); ra == 0 || err != nil {
			r.Ingredients = append(r.Ingredients[:i],
				r.Ingredients[i+1:]...)
		}
	}

	for i, step := range r.Steps {
		res, err := tx.Exec(`INSERT INTO steps
				(step, description, timer, recipe_id)
				VALUES ($1, $2, $3, $4)`,
			i,
			step.Desc,
			step.Time,
			id,
		)

		if ra, _ := res.RowsAffected(); ra == 0 || err != nil {
			r.Ingredients = append(r.Ingredients[:i],
				r.Ingredients[i+1:]...)
		}
	}

	r.Id = id
	tx.Commit()
	return nil
}

func UpdateRecipeDB(r *Recipe, db *sql.DB) error {
	var photo_urls, keywords strings.Builder

	for _, u := range r.Photos {
		photo_urls.WriteString(u)
		photo_urls.WriteRune('|')
	}

	for _, k := range r.Keywords {
		keywords.WriteString(k)
		keywords.WriteRune('|')
	}

	tx, err := db.Begin()
	if err != nil {
		return err
	}
	_, err = tx.Exec(`UPDATE recipes SET (title, photo_urls,
			keywords, description, serving_size, cook_time,
			rating, num_cooked)
			= ($1, $2, $3, $4, $5, $6, $7, $8)
			WHERE id = $9`,
		r.Title,             //1
		photo_urls.String(), //2
		keywords.String(),   //3
		r.Desc,              //4
		r.Serving_size,      //5
		r.Cook_time,         //6
		r.Rating,            //7
		r.Num_cooked,        //8
		r.Id,                //9
	)
	if err != nil {
		tx.Rollback()
		return err
	}

	_, err = tx.Exec("DELETE FROM ingredients WHERE id > $1",
		len(r.Ingredients)-1)
	if err != nil {
		tx.Rollback()
		return err
	}

	for i, ingr := range r.Ingredients {
		_, err := tx.Exec(`INSERT INTO ingredients
				(id, name, amount, unit, recipe_id)
				VALUES ($1, $2, $3, $4, $5)
				ON CONFLICT (id, recipe_id)
				DO UPDATE SET
				(name, amount, unit)
				= ($2, $3, $4)`,

			i,
			ingr.Name,
			ingr.Amount,
			ingr.Unit,
			r.Id,
		)
		if err != nil {
			tx.Rollback()
			return err
		}
	}

	_, err = tx.Exec("DELETE FROM steps WHERE step > $1",
		len(r.Steps)-1)
	if err != nil {
		tx.Rollback()
		return err
	}

	for i, step := range r.Steps {
		_, err := tx.Exec(`INSERT INTO steps
				(step, description, timer, recipe_id)
				VALUES ($1, $2, $3, $4)
				ON CONFLICT (step,recipe_id)
				DO UPDATE SET
				(description, timer)
				= ($2, $3)`,
			i,
			step.Desc,
			step.Time,
			r.Id,
		)
		if err != nil {
			tx.Rollback()
			return err
		}
	}

	tx.Commit()
	return nil
}